Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)
  • sarpworks

    (@sarpworks)

    I installed the plugin than changed my website language. Discuz changed automatically.

    sarpworks

    sarpworks

    (@sarpworks)

    I am ok with this theme. But, how can I change the “Latest Articles'” with different title? Also, All posts do not look aligned. one of up, other is down. How can i change the character counts of preview?

    Sarp’s guide

    sarpworks

    (@sarpworks)

    @didde90

    Im sorry. I did not check this subject for a long time.

    I copied and pasted then I did not pay attention.It was my bad.

    Add Back link section was a code.when i typed the code, it did not show it. That is why, you could not see it.

    <p>Add Back Link</p> means <p><a.href=”http://www.”>Description</p&gt;

    PS: without . between a and href

    solution: you can add an html code by manually like bold lane in modified code

    original code:
    ‘<div class=”entry-content”>’,
    ‘<h3>’ . esc_html( $thinkup_homepage_section1_title ) . ‘</h3>’ . wpautop( do_shortcode ( esc_html( $thinkup_homepage_section1_desc ) ) ),

    ‘<p>‘ . __( ‘Read More’, ‘lan-thinkupthemes’ ) . ‘</p>’,
    ‘</div>’,

    modified code:

    ‘<div class=”entry-content”>’,
    ‘<h3>’ . esc_html( $thinkup_homepage_section1_title ) . ‘</h3>’ . wpautop( do_shortcode ( esc_html( $thinkup_homepage_section1_desc ) ) ),
    ‘<p>Add Back Link</p>’,
    ‘<p>‘ . __( ‘Read More ‘, ‘lan-thinkupthemes’ ) . ‘</p>’,
    ‘</div>’,

    you should fix the sizes of all 3 pictures as same. than i suggest use .PNG . i used .jpg and i met problem

    your answer is here..

    Hi KuniTau,

    I use same theme on my wordpress website. I was searching same problem on google and I saw your message. Thank I fixed that problem.

    step 1: find 02.homepage.php and run it. “/admin/main/options/02.homepage.php”
    step 2: search “Read More” and find the div tags. And you will find 4 results. 1st one is on “slider”, other results for section button. You should change 3 of them and save it.

    ‘<p>‘ . __( ‘Read More’, ‘lan-thinkupthemes’ ) . ‘</p>’,
    ‘</div>’,
    ‘</div>’,
    ‘</article>’;

    echo ‘<article class=”section2 one_third”>’,
    ‘<div class=”section”>’,
    ‘<div class=”entry-header”>’;
    if ( empty( $thinkup_homepage_section2_image ) ) {
    echo ‘<img src=”‘ . get_template_directory_uri() . ‘/images/slideshow/featured2.png’ . ‘” alt=”” />’;
    } else {
    echo ‘<img src=”‘ . $thinkup_homepage_section2_image[0] . ‘” alt=”” />’;
    }
    echo ‘</div>’,
    ‘<div class=”entry-content”>’,
    ‘<h3>’ . esc_html( $thinkup_homepage_section2_title ) . ‘</h3>’ . wpautop( do_shortcode ( esc_html( $thinkup_homepage_section2_desc ) ) ),
    ‘<p>‘ . __( ‘Read More’, ‘lan-thinkupthemes’ ) . ‘</p>’,
    ‘</div>’,
    ‘</div>’,
    ‘</article>’;

    echo ‘<article class=”section3 one_third last”>’,
    ‘<div class=”section”>’,
    ‘<div class=”entry-header”>’;
    if ( empty( $thinkup_homepage_section3_image ) ) {
    echo ‘<img src=”‘ . get_template_directory_uri() . ‘/images/slideshow/featured3.png’ . ‘” alt=”” />’;
    } else {
    echo ‘<img src=”‘ . $thinkup_homepage_section3_image[0] . ‘” alt=”” />’;
    }
    echo ‘</div>’,
    ‘<div class=”entry-content”>’,
    ‘<h3>’ . esc_html( $thinkup_homepage_section3_title ) . ‘</h3>’ . wpautop( do_shortcode ( esc_html( $thinkup_homepage_section3_desc ) ) ),
    ‘<p>‘ . __( ‘Read More’, ‘lan-thinkupthemes’ ) . ‘</p>’,

    My new codes:

    ‘<p>‘ . __( ‘Walnut Size ‘, ‘lan-thinkupthemes’ ) . ‘</p>’,
    ‘</div>’,
    ‘</div>’,
    ‘</article>’;

    echo ‘<article class=”section2 one_third”>’,
    ‘<div class=”section”>’,
    ‘<div class=”entry-header”>’;
    if ( empty( $thinkup_homepage_section2_image ) ) {
    echo ‘<img src=”‘ . get_template_directory_uri() . ‘/images/slideshow/featured2.png’ . ‘” alt=”” />’;
    } else {
    echo ‘<img src=”‘ . $thinkup_homepage_section2_image[0] . ‘” alt=”” />’;
    }
    echo ‘</div>’,
    ‘<div class=”entry-content”>’,
    ‘<h3>’ . esc_html( $thinkup_homepage_section2_title ) . ‘</h3>’ . wpautop( do_shortcode ( esc_html( $thinkup_homepage_section2_desc ) ) ),
    ‘<p>‘ . __( ‘Almond Size’, ‘lan-thinkupthemes’ ) . ‘</p>’,
    ‘</div>’,
    ‘</div>’,
    ‘</article>’;

    echo ‘<article class=”section3 one_third last”>’,
    ‘<div class=”section”>’,
    ‘<div class=”entry-header”>’;
    if ( empty( $thinkup_homepage_section3_image ) ) {
    echo ‘<img src=”‘ . get_template_directory_uri() . ‘/images/slideshow/featured3.png’ . ‘” alt=”” />’;
    } else {
    echo ‘<img src=”‘ . $thinkup_homepage_section3_image[0] . ‘” alt=”” />’;
    }
    echo ‘</div>’,
    ‘<div class=”entry-content”>’,
    ‘<h3>’ . esc_html( $thinkup_homepage_section3_title ) . ‘</h3>’ . wpautop( do_shortcode ( esc_html( $thinkup_homepage_section3_desc ) ) ),
    ‘<p>‘ . __( ‘Hazel Nut Size’, ‘lan-thinkupthemes’ ) . ‘</p>’,

Viewing 7 replies - 1 through 7 (of 7 total)