-
AuthorPosts
-
November 22, 2023 at 7:27 am #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.
November 22, 2023 at 8:45 am #1426245Hey 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,
IsmaelNovember 22, 2023 at 6:29 pm #1426298You 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??
November 23, 2023 at 5:57 am #1426316Hi,
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,
IsmaelNovember 28, 2023 at 1:38 am #1426574your the best!
November 28, 2023 at 7:06 am #1426578 -
AuthorPosts
- The topic ‘WooCommerce issues’ is closed to new replies.