Home Forums Pro Themes Magazine Plus Pro Rename "Home"

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #37590
    shotokan.test
    Participant

    Hi
    How can I rename main page “Home”?

    #37677
    wensolutions
    Keymaster

    Hello @shotokan.test,

    The title “Home” of the main page is the title which you have used while creating the page.
    So, you can change the title as whatever you like by editing the page title from your Admin Dashboard > pages.

    If this didn’t solve your problem, then please send us the screenshot describing your issue.

    Hope this helps,
    Best Regards!!

    #42670
    shotokan.test
    Participant

    I want to translate into Russian ‘Home’
    https://yadi.sk/i/dCI-01QL3JDnSB

    #42696
    wensolutions
    Keymaster

    Hello @shotokan-test,

    The title home is already translation ready and can be translated to to any language you want .

    For the translation process you can use any gettext editor software like :

    https://poedit.net/

    You can download the software where you can see many option for the translation.
    Now you can choose Create new translation and it will create the file in the theme making your theme translation ready.

    After creation of the required .mo file from the pot file, you can use it to use the theme in the translated language by switching your language from WordPress Dashboard.

    Similarly you can directly translate the string. for this you have to activate the child theme .

    You can create the child theme using plugin . Below is the link to one of them.
    https://wordpress.org/plugins/wp-child-theme-generator/

    Now in your child themes functions.php file paste below given code .

    add_image_size( 'magazine-plus-carousel', 200, 200, true );
    
    function breadcrunm_trali_mod($default) {
    
    	$default['home'] = __( 'Home ', 'magezine_plus_pro' );
    
    	return $default;
    }
    
    add_filter( 'breadcrumb_trail_labels', 'breadcrunm_trali_mod' );

    You can replace the string Home with the Russian word .

    Hope this helps.

    Best Regards!!

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.