Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1426240

    1. CART PAGE – The font size is tiny for the word “Product” and the “product name”. Any way to adjust text sizes and colors? (See private link)
    2. CHECKOUT PAGE: when you type your info into the fields, the “info wording” still shows behind the text you type.
    3. INDIVIDUAL PRODUCT PAGE: Do you know how to remove “Additional Information” tab?

    • This topic was modified 1 year ago by bemodesign.
    • This topic was modified 1 year ago by bemodesign.
    #1426245

    Hey bemodesign,

    Thank you for the inquiry.

    1.) Please use add this code to adjust the size of the table and product title.

    .is-large.wc-block-cart .wc-block-cart-items th span {
        font-size: 2em;
    }
    
    table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
        font-size: 2em;
    }
    

    2.) And include this code to hide the label while typing on the fields.

    .wc-block-components-form .wc-block-components-text-input.is-active label, .wc-block-components-text-input.is-active label {
        display: none;
    }

    3.) Add this code in the functions.php file to remove the additional informations tab.

    /** Remove product data tabs */
    
    add_filter( 'woocommerce_product_tabs', 'my_remove_product_tabs', 98 );
    
    function my_remove_product_tabs( $tabs ) {
      unset( $tabs['additional_information'] ); // To remove the additional information tab
      return $tabs;
    }

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings in order to ensure that the changes take effect. Once you have made the required modifications, you can re-enable the file compression settings to optimize the performance of your website.

    Best regards,
    Ismael

    #1426298

    You are awesome! Thanks for the help. One more thing if you could, when you have something in the Cart and it shows up on the Navigation Menu, the type is really small and some text is Gray. Do you know how to adjust this part??

    #1426316

    Hi,

    Thank you for the update.

    To adjust the style of the elements in the cart dropdown widget, please add this css code.

    #top div ul.product_list_widget li a {
        display: block;
        font-weight: bold;
        font-size: 1.5em;
        line-height: 1.6em !important;
    }
    
    #top .dropdown_widget ul.product_list_widget li .quantity {
        color: #ffffff;
        font-size: 1em;
    }
    
    #top .dropdown_widget .total span.woocommerce-Price-currencySymbol, #top .dropdown_widget .total {
        color: #ffffff;
        font-size: 1em;
    }

    Best regards,
    Ismael

    #1426574

    your the best!

    #1426578

    Hi,

    No problem! Glad we could be of help. Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘WooCommerce issues’ is closed to new replies.