sarpworks
Forum Replies Created
-
Forum: Plugins
In reply to: [Comments - wpDiscuz] languagesI installed the plugin than changed my website language. Discuz changed automatically.
Forum: Themes and Templates
In reply to: [Franz Josef] How to remove the "Latest Articles" section?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?
Forum: Themes and Templates
In reply to: [Minamaze] Featured Areas don't accept HTMLIm 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>
PS: without . between a and href
Forum: Themes and Templates
In reply to: [Minamaze] Featured Areas don't accept HTMLsolution: 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>’,Forum: Themes and Templates
In reply to: [Minamaze] Featured Area / Content Area 1, 2, 3you should fix the sizes of all 3 pictures as same. than i suggest use .PNG . i used .jpg and i met problem
Forum: Themes and Templates
In reply to: [Minamaze] how edit Read More textForum: Themes and Templates
In reply to: [Minamaze] change text from 'read more'-ButtonHi 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>’,