Augustin Ofiteru

Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • in reply to: How to translate read more button text #26135
    Augustin OfiteruAugustin Ofiteru
    Participant
    • Topics: 0
    • Replies: 3
    • Total: 3
    Member since: June 3, 2015

    Thank you!
    Augustin

    in reply to: How to translate read more button text #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(); ?>

    in reply to: How to translate read more button text #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

Viewing 3 posts - 1 through 3 (of 3 total)