Senff - a11n
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Marketing (coupons) tab not showingHey @hdebruyne
I suspect that one of your plugins is the cause of the menu option being removed (Admin Menu Editor Pro seems like a suspect here). You might want to deactivate that to see if that helps. If deactivating that one also doesn’t bring it back, you’ll need to do a more extensive conflict test. Please see this page for details: https://docs.woocommerce.com/document/how-to-test-for-conflicts/
The direct link to the Coupons page is https://druppelzorg.nl/wp-admin/edit.php?post_type=shop_coupon
Forum: Plugins
In reply to: [WooCommerce] Remove all categories on the homepage.Hey @ilyapokrov
To create your own custom homepage, create a brand new page and publish it. Then go to WP Admin → Settings → Reading and select the new page you created from the Homepage setting.
Hey @wordcatcherpublishingstaff
For this product, that you gave as an example of a variable product, it doesn’t seem to show any variations at all, and it appears to be a single product at first glance.
Can you temporarily switch to the Storefront theme and deactivate Elementor, and send us a screenshot of what it would look like (and see if it’s then possible to add the product to the cart)?
Forum: Plugins
In reply to: [Smooth Page Scroll Up/Down Buttons] Buttons don’t work with WordPress 5.6Hey @edviser
I’ve checked this on various WordPress 5.6 and the buttons still work as expected. It’s possible that your theme, or one of your other plugins is causing this issue.
Can you share a link to your site so I can see? Perhaps that will give me an idea.
Forum: Plugins
In reply to: [WooCommerce] i can’t add product featured image, product galleryHey @sanjitgupta1
If the theme is the cause of the issue, it’s best to reach out to the theme’s own support team.
In general, themes are best supported by their own resp. developers (and more importantly, I’d rather not give you any incorrect information).
Forum: Plugins
In reply to: [WooCommerce] enable guest checkout not workingHey @garytar
Is the course a subscription-based product, or a one-time purchase?
Also, could you please share 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: Plugins
In reply to: [WooCommerce] Price SizeForum: Plugins
In reply to: [WooCommerce] Price Size ChangeHey @cnrvrr
You 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:
.wc-block-grid.has-5-columns .wc-block-grid__product { font-size: 16px; }You should see the changes right away, but this is just a preview for you, so you can experiment a little if you like.
Once you’re happy with it, select “Save Changes” from the top, and your changes will be applied to your site.Forum: Plugins
In reply to: [WooCommerce] Cannot select prices inclusive taxesHey @samed11
Thank you for the screenshot. The reason why you’re not able to select it (or anything else on that page), is because you have automated taxes enabled.
If you disable automated taxes, you will be able to change the settings.
Forum: Plugins
In reply to: [WooCommerce] Cannot select prices inclusive taxesHey @samed11
The option should be shown under WooCommerce → Settings → Tax, like in this screenshot:
Image link: https://d.pr/i/VKBHulIs that not what you’re seeing on your end? If you’re seeing something different, would you be able to send a screenshot of what you see on your end?
For making screenshots, I generally recommend using https://snipboard.io — please follow the instructions on that page, then paste the URL here in your response.
- This reply was modified 5 years, 4 months ago by Senff - a11n.
Forum: Plugins
In reply to: [WooCommerce] How To Change ColourCan you check that again please? When I visit your site, I’m still seeing the “Coming Soon” page.
Forum: Plugins
In reply to: [WooCommerce] i can’t add product featured image, product galleryHey @sanjitgupta1
It looks like this may be caused due to a theme conflict, or possibly a third-party plugin. I’d recommend the conflict-testing steps here to isolate the source of the issue: https://docs.woocommerce.com/document/how-to-test-for-conflicts/
The best way to determine if the issue is being caused by a theme and/or plugin is to do the following:
– Temporarily switch your theme back to a default theme, such as Storefront.
– Disable all plugins except for WooCommerce.
– Test to see if the issue has been resolved.If that resolves the issue, then one-by-one you can switch back your theme and re-enable your plugins, testing in between, until the problem appears again. This will then give you an idea about which plugin is the one causing the conflict.
Forum: Plugins
In reply to: [WooCommerce] Shipping Zones not workingHey @vadl
To get a better idea of your site, could you please share 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.
Also, when do these error messages show exactly? Is that when a customer selects a specific country/area upon checkout?
Forum: Plugins
In reply to: [WooCommerce] Edit product page not workingIf you did the conflict-testing steps on staging, did you also re-enable the plugins again one by one? That will help to determine which plugin is causing the issue here, so you can deactivate it on your live site.
Forum: Themes and Templates
In reply to: [Storefront] Two Products in a ROW MobileHey @roberthedlund
You can use the following CSS to ensure that the products are shown in 2 columns on mobile:
@media screen and (max-width: 767px) { .wc-block-grid__products li { width: 50%; float: left; } .wc-block-grid__products li:nth-of-type(2n+1) { clear: both; } }If that still shows pictures not aligning with eachother, then make sure that the aspect ratio of every picture you upload is the same. If you’re using different sizes/ratios, you’ll always get situations like these (which can not be fixed with CSS):
Image link: https://d.pr/i/MGdPG0- This reply was modified 5 years, 4 months ago by Senff - a11n.