Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1401706
    birnehelene
    Participant

    hi everyone,

    i have some questions about details of my woo commerce-shop http://www.eaudecollage-papeterie.de

    – how can i remove the white space between between menue and responsive slider? especially on smartphones it is huge…
    – how can i change the text colour of the product titles?

    as you can see, i use the plugin “woo commerce germanized”
    – is it possible to place any content below the products on the landing page?
    – is it possible to remove the grey boxes saying woo „Standardsortierung“ etc.?
    – how can i exchange the english words like „your cart is empty“ etc. appearing in the order process?

    thank you so much for the amazing support in this forum!
    i learned so much from you guys already… 😉

    #1401812
    Paul R
    Moderator

    Hi,

    You can add this under Custom > Edit Global CSS in the Customizer.

    
    /* remove space */
    .home .x-container>.offset {
        margin-top:0;
    }
    
    /* product title */
    .woocommerce li.product .entry-header h3 a {
       color:red;
    }
    
    /* remove grey boxes */
    .woocommerce-ordering,
    .woocommerce-result-count {
       display:none;
    }
    

    To add content below products, add this in your child theme’s functions.php file.

    
    add_action( 'woocommerce_after_shop_loop_item_title', 'add_pcontent',0); 
    
    function add_pcontent($excerpt) {
     ?>
       ADD CONTENT HERE
    <?php    
    }
    

    With regards to translation, kindly refer to the link below.

    https://community.theme.co/kb/translation/

    Hope that helps

    #1401827
    birnehelene
    Participant

    Wow, amazing help, as always!
    THANK YOU!
    🙂

    #1401986
    Jade
    Moderator

    You’re most welcome.

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