NiceThemesChange the staff and service words of the url to Spanish – NiceThemes http://nicethemeswp.com/forums/topic/change-the-staff-and-service-words-of-the-url-to-spanish/feed/ Wed, 23 Apr 2025 14:40:22 +0000 http://bbpress.org/?v=2.5.12-6148 en-US http://nicethemeswp.com/forums/topic/change-the-staff-and-service-words-of-the-url-to-spanish/#post-2891 <![CDATA[Change the staff and service words of the url to Spanish]]> http://nicethemeswp.com/forums/topic/change-the-staff-and-service-words-of-the-url-to-spanish/#post-2891 Tue, 24 Dec 2013 11:11:15 +0000 angeldavo Change the staff and service words of the url to Spanish (equipo-servicio)

]]>
http://nicethemeswp.com/forums/topic/change-the-staff-and-service-words-of-the-url-to-spanish/#post-2893 <![CDATA[Reply To: Change the staff and service words of the url to Spanish]]> http://nicethemeswp.com/forums/topic/change-the-staff-and-service-words-of-the-url-to-spanish/#post-2893 Tue, 24 Dec 2013 13:54:36 +0000 Juanfra Aldasoro Hello Angel,

Thanks for writing.

You need to go to the Theme Options panel, under the Home Options, you can change that on the “Staff Title” and “Service Title”.

Best,
Juan.

]]>
http://nicethemeswp.com/forums/topic/change-the-staff-and-service-words-of-the-url-to-spanish/#post-2899 <![CDATA[Reply To: Change the staff and service words of the url to Spanish]]> http://nicethemeswp.com/forums/topic/change-the-staff-and-service-words-of-the-url-to-spanish/#post-2899 Tue, 24 Dec 2013 14:36:58 +0000 angeldavo I want to change the URL….

http://implants.angelvicedo.com/SERVICE/odontologia-general-para-toda-la-familia/
or
http://implants.angelvicedo.com/SERVICIO/odontologia-general-para-toda-la-familia/

]]>
http://nicethemeswp.com/forums/topic/change-the-staff-and-service-words-of-the-url-to-spanish/#post-2901 <![CDATA[Reply To: Change the staff and service words of the url to Spanish]]> http://nicethemeswp.com/forums/topic/change-the-staff-and-service-words-of-the-url-to-spanish/#post-2901 Tue, 24 Dec 2013 14:55:04 +0000 Juanfra Aldasoro Hi Angel,

Thanks for your response.

Those are defined when creating the Custom Post Types, if you’re proficient in PHP, you can edit that by editing the code. You’ll need to go to the folder /paeon/includes/custom-post-types/ and open the file that defines the custom post type you want to change the url for. In your case, staff.php and service.php

You’ll find that the definition of the Custom Post Types has different arguments. Following the documentation of WordPress for this function, you’ll see that what you need to edit is the ‘rewrite’ parameter. (Link to docs: http://codex.wordpress.org/Function_Reference/register_post_type)

You’ll need to change this:

'rewrite' => true,

with this:

'rewrite' => array( 'slug' => 'whateveryouneed' ),

Change ‘whateveryouneed’ with the slug you want to use.

After completing this, you’ll need to go to the “Settings > Permalinks” area and re save the permalinks structure.

The second option would be finding a plugin to achieve this.

Best,
Juan.

]]>