Sharon
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Encrypted Lite] Front Page – Featured Page problemBump. I removed the 2nd row of featured pages until you get back to me.
Forum: Themes and Templates
In reply to: [Make] Error after UpdateSame here – not using Make Plus.
Forum: Themes and Templates
In reply to: [Hueman] Front page slider not working; warnings in CustomizerSure thing
Forum: Themes and Templates
In reply to: [Hueman] related-posts.phpI’ll mark resolved.
Forum: Themes and Templates
In reply to: [Hueman] Front page slider not working; warnings in CustomizerIt’s fixed now for me. First I made the # of slide show entries 1 and saved. Went back into Customizer and warming was replaced by option to animate slide. I clicked on and off and on option to show slide entries in blog. Put entries back to 10 and now it works and warnings aren’t there.
Thanks for tip to muck about with options, bdbrown!Forum: Themes and Templates
In reply to: [Hueman] related-posts.phpOK, thanks!
Forum: Themes and Templates
In reply to: [Hueman] related-posts.phpI installed the child theme per instructions, thanks! It doesn’t seem to inherit widget placement but I guess that’s pretty minor :-).
Forum: Themes and Templates
In reply to: [Hueman] related-posts.phpYes – I think I have you to thank again – also I should create a child theme at some point. Thanks!
Forum: Themes and Templates
In reply to: [Encrypted Lite] Team Member section on front page templateIn case anyone else is interested in the fix…
Please go to Theme folder you can find the file name template-home.php from line number 278 to 284 replace
these lines:
<img src="<?php echo $encrypted_image[0]?>" alt="<?php the_title(); ?>" /> <div class="team_detail"> <div class="team_member_name"><?php the_title(); ?></div> <div class="team_conten_hover"> <div class="team_member_content"><?php echo encrypted_lite_excerpt(get_the_content(), $encrypted_team_char, true) ?></div> </div> </div>
with these lines:
<a href="<?php the_permalink(); ?>"><img src="<?php echo $encrypted_image[0]?>" alt="<?php the_title(); ?>" /> <div class="team_detail"> <div class="team_member_name"><?php the_title(); ?></div> <div class="team_conten_hover"> <div class="team_member_content"><?php echo encrypted_lite_excerpt(get_the_content(), $encrypted_team_char, true) ?></div> </div> </div> </a>
Forum: Plugins
In reply to: [Yoast SEO] Can't Disable BreadcrumbsHi peteratomic – Answer in this thread in the Make support forum. Disable in the theme Customizer.
https://www.ads-software.com/support/topic/cant-disable-yoast-seo-breadcrumbsForum: Themes and Templates
In reply to: [Make] Can't Disable Yoast SEO BreadcrumbsOK then – Thank you!
Forum: Themes and Templates
In reply to: [Make] Can't Disable Yoast SEO Breadcrumbsmwilhoite – I use “Simple Custom CSS” plugin to add custom CSS and that works
Forum: Themes and Templates
In reply to: [Make] Can't Disable Yoast SEO BreadcrumbsMelissa – you can’t disable it or enable it any more as the checkbox has disappeared to control this (on the Advanced – Yoast SEO page). This a problem with Make, not Yoast.
Forum: Themes and Templates
In reply to: [Make] Can't Disable Yoast SEO BreadcrumbsHi Nommo – Thank you for that – it is better to add custom CSS than to edit the PHP code but we shouldn’t have to do either probably ??
Forum: Themes and Templates
In reply to: [Make] Can't Disable Yoast SEO BreadcrumbsI commented out the breadcrumb code in template-tags.php but it would be nice if I didn’t have to do this.
/**
* Add the Yoast SEO breadcrumb, if the plugin is activated.
*
* @since 1.6.4.
*
* @return void
*/
function ttfmake_yoast_seo_breadcrumb() {
if ( function_exists( ‘yoast_breadcrumb’ ) ) {
$key = ‘layout-‘ . ttfmake_get_view() . ‘-yoast-breadcrumb’;
$option = absint( get_theme_mod( $key, ttfmake_get_default( $key ) ) );
/**
if ( 1 === $option || is_404() ) {
yoast_breadcrumb( ‘<p class=”yoast-seo-breadcrumb”>’, ‘</p>’ );
}
*/
}
}