How to translate read more button text

Home Forums All Other Themes How to translate read more button text

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #24621
    LorenzoLorenzo
    Member
    • Topics: 8
    • Replies: 18
    • Total: 26
    Member since: February 26, 2016

    Which file i must change for translate Read More text in my own language?
    In free version i change in functions.php but i not found it in pro version.
    Thanks in advance

    (theme is fitness pro)

    #24698
    Sonnal S SinhaSonnal S Sinha
    Moderator
    • Topics: 0
    • Replies: 30682
    • Total: 30682
    Member since: August 16, 2013

    Hi lorenzo,

    Kindly go to index.php to translate read more text.

    Regards,
    Brad

    #24785
    LorenzoLorenzo
    Member
    • Topics: 8
    • Replies: 18
    • Total: 26
    Member since: February 26, 2016

    Thanks, problem solved!!

    #24793
    Sonnal S SinhaSonnal S Sinha
    Moderator
    • Topics: 0
    • Replies: 30682
    • Total: 30682
    Member since: August 16, 2013

    Great.

    Regards,
    Brad

    #25595
    Augustin OfiteruAugustin Ofiteru
    Participant
    • Topics: 0
    • Replies: 3
    • Total: 3
    Member since: June 3, 2015

    Hello,

    Does this apply to template Nature One Pro too?

    Thank you!
    Augustin

    #25785
    Sonnal S SinhaSonnal S Sinha
    Moderator
    • Topics: 0
    • Replies: 30682
    • Total: 30682
    Member since: August 16, 2013

    Hi Augustin,

    Yes, you can change it from index.php

    Regards,
    Brad

    #26073
    Augustin OfiteruAugustin Ofiteru
    Participant
    • Topics: 0
    • Replies: 3
    • Total: 3
    Member since: June 3, 2015

    Are we talking about this file?

    <?php
    /**
    * The template for displaying home page.
    *
    * This is the template that displays all pages by default.
    * Please note that this is the WordPress construct of pages
    * and that other ‘pages’ on your WordPress site will use a
    * different template.
    *
    * @package SKT Nature One
    */

    get_header();
    ?>

    <?php if ( ‘page’ == get_option( ‘show_on_front’ ) && ( ” != get_option( ‘page_for_posts’ ) ) && $wp_query->get_queried_object_id() == get_option( ‘page_for_posts’ ) ) : ?>

    <div class=”content-area”>
    <div class=”middle-align content_sidebar”>
    <div class=”site-main” id=”sitemain”>
    <?php
    if ( have_posts() ) :
    // Start the Loop.
    while ( have_posts() ) : the_post();
    /*
    * Include the post format-specific template for the content. If you want to
    * use this in a child theme, then include a file called called content-___.php
    * (where ___ is the post format) and that will be used instead.
    */
    get_template_part( ‘content’, get_post_format() );

    endwhile;
    // Previous/next post navigation.
    skt_natureone_pagination();

    else :
    // If no content, include the “No posts found” template.
    get_template_part( ‘no-results’, ‘index’ );

    endif;
    ?>
    </div>
    <?php get_sidebar();?>
    <div class=”clear”></div>
    </div>
    </div>

    <?php else: ?>

    <?php
    if( of_get_option(‘numsection’, true) > 0 ) {
    $numSections = esc_attr( of_get_option(‘numsection’, true) );
    for( $s=1; $s<=$numSections; $s++ ){
    $title = ( of_get_option(‘sectiontitle’.$s, true) != ” ) ? esc_html( of_get_option(‘sectiontitle’.$s, true) ) : ”;
    $class = ( of_get_option(‘sectionclass’.$s, true) != ” ) ? esc_html( of_get_option(‘sectionclass’.$s, true) ) : ”;
    $content = ( of_get_option(‘sectioncontent’.$s, true) != ” ) ? of_get_option(‘sectioncontent’.$s, true) : ”;
    $bgcolor = ( of_get_option(‘sectionbgcolor’.$s, true) != ” ) ? of_get_option(‘sectionbgcolor’.$s, true) : ”;
    $bgimage = ( of_get_option(‘sectionbgimage’.$s, true) != ” ) ? of_get_option(‘sectionbgimage’.$s, true) : ”;
    ?>
    <section <?php if( $bgcolor || $bgimage ) { ?>style=”<?php echo ($bgcolor != ”) ? ‘background-color:’.$bgcolor.’; ‘ : ” ; echo ($bgimage != ”) ? ‘background-image:url(‘.$bgimage.’); background-repeat:no-repeat; background-position: center center; ‘ : ” ; ?>”<?php } ?> id=”section<?php echo $s;?>” class=”<?php echo ( of_get_option(‘menutitle’.$s, true) != ” ) ? ‘menu_page’ : ”;?>”>
    <div class=”<?php echo ( ($s>22) && $class==”) ? ‘top-grey-box’ : $class; ?> middle-align”>
    <?php if( $title != ” ) { ?>
    <h2><span><?php echo $title; ?></span></h2>
    <?php } ?>
    <?php the_content_format( $content ); ?>
    </div><!– middle-align –>
    <div class=”clear”></div>
    </section><div class=”clear”></div>
    <?php
    }
    }
    ?>

    <?php endif; ?>
    <?php get_footer(); ?>

    #26084
    Sonnal S SinhaSonnal S Sinha
    Keymaster
    • Topics: 10
    • Replies: 6964
    • Total: 6974
    Member since: June 12, 2013

    No worries. Give us 2-3 days we will update Nature One Pro theme so that you can update the read more from within theme options itself.

    Regards,
    Shri

    #26135
    Augustin OfiteruAugustin Ofiteru
    Participant
    • Topics: 0
    • Replies: 3
    • Total: 3
    Member since: June 3, 2015

    Thank you!
    Augustin

    #26259
    Sonnal S SinhaSonnal S Sinha
    Moderator
    • Topics: 0
    • Replies: 30682
    • Total: 30682
    Member since: August 16, 2013

    🙂

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