If you are using the StudioPress Genesis Theme Framework for your WordPress site, you may want to change the default comment text that says “Speak Your Mind” when you first install your Genesis Framework theme. Just add this WordPress Code Snippet to the functions.php file in your current WordPress theme in order to change the default “Speak Your Mind” text in your comments section.
[Read more…] about How to change default Speak Your Mind comment text in StudioPress Genesis
Comments
How to confirm your blog configuration with Livefyre after install
I just added the Livefyre WordPress Comments Plugin to WPSnacks.com to handle the comment discussion. After installing and activating the Livefyre plugin in the WordPress dashboard, it gives a link at the top of the screen that says Confirm your blog configuration with Livefyre.com to complete Livefyre’s setup and import your comments. The problem is that for most people, the link just takes you back to Livefyre’s site and never finishes the setup and comment import. Today’s snack shows you how to successfully confirm your blog configuration with Livefyre.com so that you can start using it to handle your site’s comments.
[Read more…] about How to confirm your blog configuration with Livefyre after install
How to hide remove reviews tab on WooCommerce Product Page
If you are using WooCommerce for an online store plugin for your WordPress site, you may want to hide or remove the reviews tab on the WooCommerce Product Page. Just add this WordPress Code Snippet to your CSS stylesheet in your current WordPress theme in order to hide the reviews tab on product pages in WooCommerce.
/** * Remove/Hide WooCommerce Product Page reviews tab * * @author WPSnacks.com * @link https://www.wpsnacks.com */ .single .woocommerce-tabs ul.tabs li.reviews_tab { display: none; }
Hope this helps with your WordPress problem, enjoy.
How to hide remove WooCommerce Product Page tabs in WordPress
If you are using WooCommerce for an online store plugin for your WordPress site, you may want to hide or remove the description and reviews tabs on the WooCommerce Product Page. Just add this WordPress Code Snippet to your CSS stylesheet in your current WordPress theme in order to hide the description and reviews tabs on product pages in WooCommerce.
/** * Remove/Hide WooCommerce Product Page tabs * * @author WPSnacks.com * @link https://www.wpsnacks.com */ .single .woocommerce-tabs ul.tabs { display: none; }
Hope this helps with your WordPress problem, enjoy.