Royah Marie
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Storefront] Change color of price tab on preview imagesForum: Themes and Templates
In reply to: [Storefront] Make buttons closer togetherThere is no CSS you can provide to move the shortcode element box, regardless of what shortcode is entered? Seems like other elements can be moved that way. What I’m looking for is for less margin or padding between the Add to Cart and Add to Wishlist.
Forum: Plugins
In reply to: [Caxton - Create Pro page layouts in Gutenberg] Change font of slider textI figured out how to do it but after looking at it, I decided to remove the text altogether.
Forum: Themes and Templates
In reply to: [Storefront] Change font of slider textFor the benefit of anyone else that may have this question, I used the following CSS to make the desired text modification:
.wp-block-caxton-slider {
padding-bottom: 20px;
font-family: ‘Rosella-Deco’
!important;
}Forum: Themes and Templates
In reply to: [Storefront] Add space before heading/between elementsFlawless! Thank you!
Forum: Themes and Templates
In reply to: [Storefront] Edit Product Tabs: Remove or hideActually I found this CSS snippet that worked perfectly!
/* To hide the additional information tab */ li.additional_information_tab { display: none !important; }
Forum: Themes and Templates
In reply to: [Storefront] Edit Product Tabs: Remove or hideThank you for that. I see this code here but I don’t think I’m using it right. I deleted the first two lines (description and reviews) because I still want those to show. That did not work. What am I doin wrong?
/** * Remove product data tabs */ add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 ); function woo_remove_product_tabs( $tabs ) { unset( $tabs['description'] ); // Remove the description tab unset( $tabs['reviews'] ); // Remove the reviews tab unset( $tabs['additional_information'] ); // Remove the additional information tab return $tabs; }
Forum: Themes and Templates
In reply to: [Storefront] Change color of price tab on preview imagesOh and is it possible to make it have a shadow so it has some kind of dimension as the gray/black one does (the one currently there).
Forum: Themes and Templates
In reply to: [Storefront] All product images same sizeI tried and I also checked a different product that is using the prebuilt template and the images still change in size. Although I recognize the images uploaded are different shapes and sizes.
Please see this one for comparison. https://www.delicatefabrics.net/product/embroidered-two-tone-flowers/
Forum: Themes and Templates
In reply to: [Storefront] Move Google Pay OR Amazon Pay below Add to CartI found out how to do it. I disabled the digital wallet. Please close this thread.
Forum: Themes and Templates
In reply to: [Storefront] Remove words: “You may also like…”That worked perfectly! Is there a way to add some space in between the heading and the products? Now that the “you may also like” is hidden, the items are too close.
Forum: Themes and Templates
In reply to: [Storefront] All product images same sizeMy apologies, you are correct.
It is the product images that I want to force uniformity and the same size.
Please see here: https://www.delicatefabrics.net/product/plumglitter/
Forum: Themes and Templates
In reply to: [Storefront] Change font of slider textOk, thank you. Is there any other alternative to this that is supported by Storefront?
Forum: Themes and Templates
In reply to: [Storefront] Add a box around the cart and cart totalThank you so much! That worked perfectly!
Forum: Themes and Templates
In reply to: [Storefront] Add a box around the cart and cart totalThank you @conschneider. Can you please tell me exactly how to write it? There seem to be missing elements such as the brackets. Thanks!