Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1105949
    renzofernandez
    Participant

    Hi,
    I have some questions about woocommerce.

    1. How do I remove the shopping cart from the “read more” button that is on the product image?

    2 How do I remove the product title from under the product image?

    3 Is there a way for me to match all the product image heights?

    Thank you,

    Renzo.

    #1106362
    Friech
    Moderator

    Hi Renzo,

    Thanks for writing in! To assist you with this issue, we’ll first need you to provide us with your URL. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.

    Cheers!

    #1107434
    renzofernandez
    Participant

    Hi Friech,
    The site I’m currently working on is http://www.feheleyfinearts.com/development. I have some products at the bottom of the homepage under “Featured”.

    Thanks!

    #1107723
    Nico
    Moderator

    Hi There,

    1. Add this in your customizer > Custom CSS:

    .woocommerce .button.product_type_simple:before, .woocommerce .button.single_add_to_cart_button:before{
    content:" ";
    }

    2. Add this in your customizer > Custom CSS:

    .woocommerce li.product .entry-header{
    display:none;
    }
    

    3. It is quite a customization, We would love to help you however it is beyond the scope of our support.

    Thank you so much for understanding.

    #1107882
    renzofernandez
    Participant

    Hi,
    Thanks for the help. However, when I put

    .woocommerce li.product .entry-header{
    display:none;
    }

    It removes the product title but it also removes the “read more” button. Is there something else I can do to keep the read more button but remove the product title?

    Thanks again.

    #1108006
    renzofernandez
    Participant

    Hi,
    I have a couple of more questions:

    1. How do I remove the “sort by” pulldown menu on the top left… or better yet, how do I change it to only offer “default sort” or “sort by newness”.

    2. How do I change the text in the search box from “Search products…” to “Search artworks…”

    You are being very helpful, like always.

    Thank you,

    Renzo.

    #1108009
    renzofernandez
    Participant

    Lastly, how do I change the text from “Related products” to “Related artworks”.

    Thanks.

    #1108359
    Rad
    Moderator

    Hi there,

    1. Please change it to this,

    .woocommerce li.product .entry-header h3{
    display:none;
    }

    2. Please add this as well,

    .woocommerce-ordering select {
    display: none;
    }

    Or please check this https://www.sellwithwp.com/create-woocommerce-custom-product-sorting/

    3. It’s Woocommerce’s widget and we can’t provide customization for 3rd party features. But you can try the #4 but not guaranteed.

    4. Please add this code to your child theme’s functions.php

    add_filter( 'gettext', 'change_these_text', 20, 3 );
    
    function change_these_text( $translated_text, $text, $domain ) {
    
    $texts = array (
    'search products…' => 'Search Artworks…',
    'related products' => 'Related artworks'
    );
    
    $new_text = $texts[ strtolower( $text ) ];
    
    return empty( $new_text ) ? $translated_text : $new_text;
    
    }

    Hope this helps.

    #1109201
    renzofernandez
    Participant

    Hi Rad,
    Thank you very much, everything worked even the “related artworks”, the only thing that didn’t work was the “search product” to “search artwork”. If I find a solution for that, I’ll share it here.

    One more thing, how do I remove the number next to each category heading… ei. “Drawings (6)”
    http://feheleyfinearts.com/development/database/

    Thanks again,

    Renzo.

    #1109571
    Rad
    Moderator

    Hi there,

    Glad to hear that 🙂

    Please add this as well,

    ul.products li .count {
    display: none !important;
    }

    Cheers!

  • <script> jQuery(function($){ $("#no-reply-1105949 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>