Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1088929

    Hi there-

    We’re trying to remove the “Read More” from WooCommerce product overview pages. I found the following about the blog pages here but of course it doesn’t seem to apply to the WooCommerce product catalog views with product thumbnail pages. (https://kriesi.at/support/topic/enfold-how-to-remove-the-read-more-button/).

    Any suggestions on how to remove from the product pages we’re building as well would be much appreciated.

    thanks!

    #1089426

    Hey browning_jeff,

    Could you post a link to an example page so that we can have a closer look please?

    Best regards,
    Rikard

    #1090174

    I’ve sent a link via private content.

    #1090234

    Hi,
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
      $('a.button.product_type_simple').remove();
      });
      })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    Best regards,
    Mike

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.