amstellodamois
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Botiga] Home page doesn’t load properly when I’m logged inThe result is the same with Chrome and Firefox
Forum: Plugins
In reply to: [WooCommerce] Header bug: it’s HUGEI do have a caching plugin (which is pretty useful, the site is incredibly sluggish without it) but I cleared its cache to no avail many times during my trials.
I also cleared Autoptimize’s cache.The theme is Astra, isn’t it pretty common?
(I fear I’ll break everything if I switch theme :D)- This reply was modified 4 years, 11 months ago by amstellodamois.
Forum: Plugins
In reply to: [WooCommerce] Hide quantity on the product page, not the cart@linux4me2
Yes, that worked as well.Thanks to both of you, guys!
Forum: Plugins
In reply to: [WooCommerce] Hide quantity on the product page, not the cart@luminus
It just needed the space between postid and input-text, thank you!Forum: Plugins
In reply to: [WooCommerce] Hide quantity on the product page, not the cartTried .postid-1071.input-text.qty.text and .elementor-page-1071.input-text.qty.text to no avail
Forum: Plugins
In reply to: [WooCommerce] Hide quantity on the product page, not the cartActually, it seems to be a rolling tag. I’ve hidden quantity_5dfbb28eaf3a4 and it was working. After a refresh, it’s quantity_5dfbb3e2e5104
I like the page-id-XXXX solution, too bad it won’t work :/
Forum: Plugins
In reply to: [WooCommerce] Hide quantity on the product page, not the cartMake sure you clear your cache or you’ll be looking at the old CSS. If you give us a link to your site, we can check the CSS, too.
I won’t say no because it doesn’t work: https://supefactory.com/product/me-as-a-superhero/
I used 1071 as my page idea because https://supefactory.com/?p=1071 does redirect to the right product:
.page-id-1071.input-text.qty.text { display: none; }
But the quantity box is still showing (I’ve cleared the cache with [Ctrl]+[F5])
Forum: Plugins
In reply to: [WooCommerce] Hide quantity on the product page, not the cart@luminus
Quantity boxes disappear in the cart too: https://i.imgur.com/z3yGvcf.pngForum: Plugins
In reply to: [WooCommerce] Hide quantity on the product page, not the cart@linux4me2
Ohhhh, that’s a smart idea!
Similarly, could I remove the quantity box only on one specific product page? With an and operator, maybe?- This reply was modified 4 years, 11 months ago by amstellodamois.
- This reply was modified 4 years, 11 months ago by amstellodamois.
Forum: Plugins
In reply to: [WooCommerce] Layout but: product page is full of emptinessI made a typo in the title, it’s a “bug”, not a “but”
Thanks for your proposition Hannah!
Here’s the product: https://supefactory.com/product/samsung-case/
Weirdly, it works most of the time today when yesterday the bug happened every time I reloaded the page…
As for a plugin causing the problem, wouldn’t it cause it on all products? The bug happens only with the phone cases.
Forum: Plugins
In reply to: [WooCommerce] Link to the Size chartThanks for the advice @fernashes , the plugin looks promising
Forum: Plugins
In reply to: [WooCommerce] Always show price before the Add to cart buttonWell, I thought it was out of my reach but I did it:
//Move price below short description on simple products add_action( 'woocommerce_before_single_product', 'my_move_simple_price' ); function my_move_simple_price() { global $product; if ( $product->is_type( 'simple' ) ){ remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 ); remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 ); add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 10 ); add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 20 ); } }
I don’t have the horizontal bar but I don’t really need it. In fact, I’ll probably try to remove it (with the “CLEAR” link) on variable products.
Forum: Plugins
In reply to: [Drag and Drop Multiple File Upload - Contact Form 7] Upload outside a form?Alright, thanks
Forum: Plugins
In reply to: [WooCommerce] Allow file upload on product pageI probably tried all the free options. The best, by far, is WCFF:
https://pluginviews.com/wc-fields-factory/Forum: Themes and Templates
In reply to: [Astra] Font size of the menuThank you Sweta!