Senff - a11n
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Need to add left margin to product catalogHey @tuminosg
You can add some margin to the left side by adding the following CSS code:
#primary { float: none; margin-left: auto; margin-right: auto; }Forum: Plugins
In reply to: [WooCommerce] Changing the Email FromHey @theblueli
Under WooCommerce → Settings → Email, the settings you change apply to the “From:” email.
If that doesn’t work for you, and the changes you make in there are still overriden by something else, I’d suggest you check this with your email service (the one you use to send out emails from your site) since it’s controlled by them.
- This reply was modified 5 years, 4 months ago by Senff - a11n.
Forum: Plugins
In reply to: [WooCommerce] Critical error on product overview pageHey @tomhndrx
If the Gutentor plugin is the cause of the errors, it’s best to reach out to the plugin’s own support team.
While we’re experts on our own products, third party plugins are best supported by their own resp. developers (and more importantly, I’d rather not give you any incorrect information).
It looks like that plugin’s info and support page can be found here:
https://wordpress.org/support/plugin/gutentor/Forum: Plugins
In reply to: [WooCommerce] Custom Tax calculations – import dutyHey @kbulfin
Any product can only have 1 tax class. If you want to have 2 additional fees to each product, then that will require some additional custom code.
Forum: Themes and Templates
In reply to: [Storefront] Two line product titleIt’s not directly possible to keep all titles on a maximum of 2 lines (and then have them cut off and followed by “….”), so if you want to align the “In winkelmand” buttons regardless of the length of the products, you can use this CSS (after you remove the code you quoted above).
@media screen and (min-width: 768px) { ul.products { display: flex; flex-wrap: wrap; } ul.products li.product { display: flex; flex-direction: column; justify-content: space-between; } ul.products li.product .button { align-self: center; } }The results will be something like this:
Image link: https://d.pr/i/yRO7P2- This reply was modified 5 years, 4 months ago by Senff - a11n.
- This reply was modified 5 years, 4 months ago by Senff - a11n.
- This reply was modified 5 years, 4 months ago by Senff - a11n.
Forum: Themes and Templates
In reply to: [Storefront] Two h1 tags on Product pageHey @dolffie
For SEO, it doesn’t necessarily make things better or worse if you have only one H1 tag on a page. This used to be the case before, but nowadays it’s perfectly fine to have two (or more) H1 tags.
However, if you want to fully remove the site title’s H1 tag, you can remove it from the file /wp-content/themes/storefront-child-theme-master/inc/storefront-template-functions.php.
If you don’t have that file, copy it from the parent theme into your child theme, and remove the H1 from there.
Forum: Plugins
In reply to: [WooCommerce] Critical error on product overview pageHey @tomhndrx
The first thing I would check is your most recent fatal error log files (under WooCommerce → Status → Logs) for error messages that may point you in the right direction.
If that doesn’t help, 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.
Hope this points you in the right direction!
Forum: Plugins
In reply to: [WooCommerce] Product Price not updating in CheckoutHey @malikxr
Thanks for opening up the website.
By default, WooCommerce does not have a list of products on the Checkout page at all (only on the Cart page), and it appears that in your case, it’s added by your theme. If that’s not working the way you expect it to, it’s best to reach out to your theme’s support team.
While we’re experts on our own products, third party themes are best supported by their own resp. developers (and more importantly, I’d rather not give you any incorrect information).
It looks like that theme’s info and support page can be found here:
https://themeforest.net/item/flatsome-multipurpose-responsive-woocommerce-theme/5484319/supportHope that points you in the right direction!
Forum: Plugins
In reply to: [WooCommerce] Shop Page EditingHey @victoriam7591
It’s not possible to do this with CSS, so you’ll need to edit the PHP templates of your theme. For any help with that, you may want to check this with your theme developer.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce causing 520 error with edit pageHey @72ascott
It works fine when I disable woocommerce, and it works when woocommerce is enabled alone.
Do you mean that things work without any problems when WooCommerce is the only plugin activated? If that’s the case, which of the other plugins (Kadence blocks, Stackable, Woocommerce blocks) do you need to enable for the problem to return?
- This reply was modified 5 years, 4 months ago by Senff - a11n.
Forum: Plugins
In reply to: [WooCommerce] Custom Tax calculations – import dutyHey @kbulfin
For this, you can use different tax classes. Every product can have a certain tax class, and then you can charge the proper amount of tax based on that class.
For example, any product that costs less than $1000 can have a tax class called “Low Tax”, and above that, it can have tax class “High Tax”. You can then set the tax for both these classes under WooCommerce → Settings → Tax → Low Tax Rates and WooCommerce → Settings → Tax → High Tax Rates.
It’s not possible to add a fixed rate though — only a percentage of the product’s price.
You can read a bit more about that here:
https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/Forum: Plugins
In reply to: [WooCommerce] Product Price not updating in CheckoutHey @malikxr
It appears your site is hidden behind a “Coming soon” page, so we can’t check it to see what might be wrong. Any chance you can open the site up for us to take a look?
Forum: Plugins
In reply to: [WooCommerce] Fuzzy Thumbnails, Thumbnails Wrong SizeGlad to hear they fixed it. I’ll close this thread for now, but if you run into any other issues, please don’t hesitate to reach out again! 🙂
Forum: Plugins
In reply to: [WooCommerce] Default variation out of stock – show another one?Hey @awesonja
Indeed, by default it’s not possible to select a second variation to show in case the first one you selected is out of stock — that would require some custom coding.
Forum: Plugins
In reply to: [WooCommerce] Auto-updates disabledHey @dsilvadarius
If you don’t see the column “Automatic Updates” in the list of plugins, check if you can enable it by selecting Screen options:
Image link: https://d.pr/i/NQvKos