TechRanker
Forum Replies Created
-
Forum: Plugins
In reply to: [Yoast SEO] Meta description missing with 3.03I love Yoast SEO but this new snippit editor has to go!!!
No problem, Heateor. Glad I could help. Great plugin.
Of note, I just received a pingback and that comment shows up as well. ??
Success! I now see the default comment:
https://oracleodi.com/site-news/unofficial-oracle-data-integrator-odi-blog/The parent theme (StudioPress Genesis Framework) does have comments.php. The child theme (Metro) does not.
This page has one WordPress comment on it. It’s currently hidden because I have Facebook comments active using your plugin.
https://oracleodi.com/site-news/unofficial-oracle-data-integrator-odi-blog/
I disabled the plugin on my main site. I’ll set up a test site later today and post the URL. I’m using the Sahifa theme, BTW…
Forum: Plugins
In reply to: [Comments by Startbit] Also post on facebook – Auto-check?Can this checkbox be checked by default?
Forum: Plugins
In reply to: [Comments by Startbit] display as last thing on page?Hi sjulau,
I edited comments.php in my theme folder and placed this code:
<?php echo do_shortcode('[vivafbcomment]'); ?>
…right before this code:
<?php if ( have_comments() ) : ?>
You can see it in action on this page:
https://techranker.net/funny-things-to-ask-siri-questions-jokes-video/
The default comments are missing for me as well so I disabled the plugin.
This is what I see in wp-includes/comment-template.php:
‘ $include = apply_filters( ‘comments_template’, $theme_template );
if ( file_exists( $include ) )
require( $include );
elseif ( file_exists( TEMPLATEPATH . $file ) )
require( TEMPLATEPATH . $file );
else // Backward compat code will be removed in a future release
require( ABSPATH . WPINC . ‘/theme-compat/comments.php’);
}’