Senff - a11n
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Storefront] Static Home Page IssueHey @pshea08
I’m seeing some errors related to Autooptimize. Have you tried deactivating that plugin altogether to see if that makes any difference?
Forum: Themes and Templates
In reply to: [Storefront] Removing storefront homepage hookHey @wpjakarta
What is your goal exactly? In other words, what are you trying to accomplish by using those hooks?
Forum: Themes and Templates
In reply to: [Storefront] How to Remove Search BarHey @kindfamily !
You can indeed 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:
.site-search { display: none; }Select “Save Changes” from the top, and your changes will be applied to your site.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce install errorIt will override your WooCommerce files, but not your settings (which are stored in the database).
Forum: Themes and Templates
In reply to: [Storefront] Gutenburg Blocks displaying all as text on mobileHey @cheesecake4488
If you can share a link to your site, we can take a look and see what might be wrong.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce One Page CheckoutHey @stefan730
If you are trying to override the file /woocommerce-one-page-checkout/templates/checkout/product-single.php, you will need to copy it, make your edits and place it in /child-theme/woocommerce-one-page-checkout/checkout/product-single.php.
That way, your version of the file will be used instead of the original plugin’s version.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce install errorHappy to see you found the cause if the issue!
I’ll mark this thread as resolved, but if you run into any other issues, please don’t hesitate to create a new one. 🙂
Forum: Plugins
In reply to: [WooCommerce] Create a ‘No Ship’ ZoneHey @patboran
If you have a number of countries that you don’t want to ship to, you can indeed create a Shipping Zone (that includes those countries), and make sure it does not have any shipping methods.
Also, ensure that it’s the first shipping zone in the list. When a customer will then enter a shipping address for any of those countries, they will see that there are no shipping methods available.
Forum: Plugins
In reply to: [WooCommerce] Cannot add Iceland to tax settings?Hi @pleazo
Can you try typing “IC” to see if that works? Since your site’s language is in English, it shouldn’t show up when you type “IS”, but “IC” should work. Here is a screenshot for your reference:
Image link: https://d.pr/i/2IkFvK- This reply was modified 5 years, 6 months ago by Senff - a11n.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce install errorHey @sungur
You may want to install WooCommerce manually.
First, download the latest .zip from here.
Unzip/decompress the .zip file to your hard drive, which will then give you a directory called /woocommerce, which contains all plugin files.Next, connect to your website’s file system using FTP. This process differs from host to host, so if you’re not sure how to do this, it’s best to contact your webhost — they will be able to give you the details you need.
Once you’re connected, upload all contents from the /woocommerce directory on your computer to the /wp-plugins/woocommerce directory on your webserver, overwriting the files that are already in there.Once you’ve done that, you can activate WooCommerce in your site’s plugin menu.
Forum: Plugins
In reply to: [WooCommerce] Bulk update order statusIf you need to edit a lot of orders that are not in sequence, you may want to take a look at these plugins:
– WooCommerce Customer / Order / Coupon Export
– Customer/Order/Coupon CSV Import SuiteThe first one will allow you to make an export of all your orders to a CSV file. You can then make changes in this file for your orders, and import it to your site with the second plugin.
Forum: Plugins
In reply to: [WooCommerce] Stripe Plugins Differences for WoocommerceHey @pazvaldebenito
There’s indeed differences between various Stripe plugins — some of them are more subtle than others. They are coded differently, and they have some differences in looks.
It’s a bit like cars. They have the same functionality, but they’re built differently and there are differences in how they look. Though, in the end, they do the same: take you from one point to another.
It’s hard to give you a more detailed description of all the differences, but if you need any help with any of the plugins, it’s best to reach out to the plugin’s own support team.
Forum: Themes and Templates
In reply to: [Storefront] jQueryHey @cornishscoots,
Does this error also shows when you deactivate Enable jQuery Migrate Helper? (You may not necessarily need that plugin.)
Forum: Themes and Templates
In reply to: [Storefront] Wrong reviews count on product pagesHi @lmvn
To check if this is an issue with Storefront only; can you switch to another theme, and tell me if the number of reviews is then correct?
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Product list showing one per lineYou can fix that by adding the following code as well:
.woocommerce ul.product_list_widget li a img { display: block; width: 100%; }