Senff - a11n
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Storefront] Hide WooCommerce BreadcrumbsYou can do this with a little bit of custom CSS code.
Go into your site’s admin Dashboard and select Appearance → Customize → Additional CSS. In the CSS textbox on the left, add the following code:
.storefront-breadcrumb { display: none; }Select “Save Changes” from the top, and your changes will be applied to your site.
Forum: Themes and Templates
In reply to: [Storefront] at checkout, empty the cartHey @uniquiadm
Do you mean that when someone places an order (and pays for it), the products are still in the cart?
If that is the case, then this may be related to caching. To check that, temporarily disable all forms of caching on your site, and see if that makes a difference.
You can also read a bit more about how to properly configure caching plugins on this page.
Hey @regerman926
To remove the related products on a product page, you can use this CSS code:
body.single-product .related.products { display: none; }Forum: Plugins
In reply to: [WooCommerce] WooCommerce Installation FailHey @frajerflex
First, completely delete the entire folder
/woocommercefrom your server (under/wp-content/plugins/).Then try to install WooCommerce again. If that still gives you problems, you may want to check this with your webhost.
- This reply was modified 5 years, 5 months ago by Senff - a11n.
Forum: Plugins
In reply to: [WooCommerce] Free Shipping with Minimum Purchase – exclusions?Hey @albertandbrown
That’s indeed not an option to do with WooCommerce by default. For that, you will need an additional plugin. Perhaps Conditional Shipping and Payments may be helpful for that?
Forum: Plugins
In reply to: [WooCommerce] Product Review area missingHey @takaya499
It’s possible that this may be a setting in your theme. To see if that’s the case, can you temporarily switch to a default theme (such as Storefront or TwentyTwenty) and see if the review section appears then?
If it does appear on another theme, then it looks like your current theme may not have support for it.
If it also doesn’t appear on another theme, let us know and we can look into it some more. In that case, also include a copy of your site’s System Status Report — you can find it by going to your admin Dashboard and select WooCommerce → Status.From there, select “Get system report” and then “Copy for support”. Once you’ve done that, you can paste it here in this chat.
Forum: Themes and Templates
In reply to: [Storefront] Pictures too small on mobile versionHey @martak333
I’m not seeing any images that are particularly small, to be honest. Could you send a screenshot of what you mean perhaps?
Hey @harshajain213
With Storefront, you can have different menus for desktop and mobile. You can check this by going to Appearance → Customize → Menus, and see which menu is assigned as the Primary Menu, and which one is assigned as the Handheld menu (under Menu Locations).
If you have a menu that should be shown on both desktop and mobile, make sure it’s checked for both Primary Menu and Handheld menu.
Forum: Themes and Templates
In reply to: [Storefront] Top bar – decreaseHey @uniquiadm
Which bar are you referring to exactly? There’s a few in the screenshot you added so I’m not entirely sure which one you mean.
Forum: Themes and Templates
In reply to: [Storefront] cart is empty when go to checkoutHey @devusm
This issue is often caused by caching plugins. If you have any form of caching enabled on your site, check out this article for a few helpful tips.
Forum: Themes and Templates
In reply to: [Storefront] Adding Padding to CheckoutHey @kindfamily
You can do this with the following CSS code:
body.woocommerce-checkout { padding: 20px; }Forum: Themes and Templates
In reply to: [Storefront] Changing Checkout FontHey @kindfamily
I’m not seeing this particular CSS code appear anywhere on the page. Where did you add it exactly?
Also, could you please turn off the “no right click” script you have running? It makes troubleshooting your site really difficult. Thanks!
Forum: Themes and Templates
In reply to: [Storefront] Centering button toggle (Menu mobile)Hey @wpjakarta
Try adding this:
@media screen and (max-width: 767px) { #site-navigation { text-align: center; clear: both; } #site-navigation button { float: none; margin-top: 15px; } #site-navigation .handheld-navigation { text-align: left; } }Forum: Themes and Templates
In reply to: [Storefront] Hide featured image on post page onlyHey @wpjakarta
Try adding this CSS code:
.single-post .entry-content > img:first-of-type { display: none; }Hey @techstacy
The reason why it’s doing that is because of this code (either from a plugin or something you’ve added yourself):
.wc-block-grid__products .wc-block-grid__product, .wc-block-grid__products li.product, ul.products .wc-block-grid__product, ul.products li.product { clear: none; width: 100%; float: left; font-size: .875em; }If you know where this code is coming from, then you can either remove the “width: 100%” from there, or you can add some additional code:
@media screen and (min-width: 768px) { ul.products li.product { width: 23%; margin-right: 2%; } }- This reply was modified 5 years, 5 months ago by Senff - a11n.