Gerhard Potgieter
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Admin email notifications not firingHave you tried installing wp-smtp and using a GMail account, that is sure to deliver your emails.
Regarding WP_DEBUG see https://codex.wordpress.org/WP_DEBUG
Forum: Plugins
In reply to: [WooCommerce] I feel like I am going crazyHi, just did a test checkout on your site and I was able to place an order via COD. I do notice you also have PayPal enabled, you can disable PayPal via WP-Admin by going to WooCommerce -> Settings -> Payment and disabling the PayPal option there.
Forum: Plugins
In reply to: [WooCommerce] woocommerce_email_attachments “Content-Id”Hi, this seems to be a shortfalling with wp_mail which WooCommerce uses. You can try this solution https://stackoverflow.com/questions/15646187/display-inline-image-attachments-with-wp-mail But that will only work if you use the built in WordPress mailer, as soon as you move to a dedicated mailing functionality that will not work anymore.
Forum: Plugins
In reply to: [WooCommerce] Selling installed flooring products – Looking for guidanceHi, you could use a variable products with an installed variation. Otherwise you can use the product addons extension to add a dropdown to the product with the option to install or not, you can also charge extra based on the selection made. https://docs.woocommerce.com/document/variable-product/ or https://woocommerce.com/products/product-add-ons/
Forum: Plugins
In reply to: [WooCommerce] Advice on configuring multiple variationsHi Paul, great to hear you have your store up and running fine. Your idea of setting up a product and cloning it is perfect, the easiest way to then update the pricing would be to do a CSV export of the products, this can be done via WP-Admin and going to Products and then clicking the export button at the top.
This will generate a CSV file with all your products, you can then open that in a editor and then modify the prices and then save the file again and import it on the same Products page by clicking the import button.
When importing be sure to select the option to update products with matching ids and skus.
Forum: Plugins
In reply to: [WooCommerce] billing field required errorHi, can you check if you have any JavaScript errors on your site? The validtion is done via JavaScript and general JS error can break this functionality as well as a bunch of other functionality requiring JavaScript.
This kind of problem is usually caused by either a conflict with your theme or with another plugin.
The best way to determine this is to:
- Temporarily switch your theme to Storefront
- Disable all plugins except for WooCommerce
- Repeat the action that is causing the problem
If you’re not seeing the same problem after completing the conflict test, then you know the problem was with the plugins and/or theme you deactivated. To figure out which plugin is causing the problem, reactivate your other plugins one by one, testing after each, until you find the one causing conflict. You can find a more detailed explanation on how to do a conflict test here.
Forum: Plugins
In reply to: [WooCommerce] Remove tab additional product page informationThe code Tim provided as well as the code in the doucmentation works fine. You will need to place that code in your theme’s functions.php file or install the Theme Customisations plugin and use the functions.php file in that plugin to add your code https://github.com/woocommerce/theme-customisations
When you use the plugin be sure to first enable it otherwise the code won’t run.
Forum: Plugins
In reply to: [WooCommerce] No bulk options and action buttonsThat is, unfortunatley, not something WooCommerce has control over, the WC Order Status Manager needs to add the actions to the dropdown. You will have to contact support of that plugin for assistance.
Forum: Plugins
In reply to: [WooCommerce] Change image in product gallery will change product attributesThis is definitely not default WooCommerce behaviour. This kind of problem is usually caused by either a conflict with your theme or with another plugin.
The best way to determine this is to:
- Temporarily switch your theme to Storefront
- Disable all plugins except for WooCommerce
- Repeat the action that is causing the problem
If you’re not seeing the same problem after completing the conflict test, then you know the problem was with the plugins and/or theme you deactivated. To figure out which plugin is causing the problem, reactivate your other plugins one by one, testing after each, until you find the one causing conflict. You can find a more detailed explanation on how to do a conflict test here.
Forum: Plugins
In reply to: [WooCommerce] Lost Password Page issue?Have a look at the WooCommerce -> Settings -> Advanced tab, you can sepcify the endpoints for the lost password page there. Then assuming WC Vendors is not changing default WooCommerce behaviour you should be able to access the WooCommerce password reset page by going to yoururl.com/my-account/ there should be a link to the lost password page.
A simple test you can do is to see if this is a conflict with your theme or with another plugin.
The best way to determine this is to:
- Temporarily switch your theme to Storefront
- Disable all plugins except for WooCommerce
- Repeat the action that is causing the problem
If you’re not seeing the same problem after completing the conflict test, then you know the problem was with the plugins and/or theme you deactivated. To figure out which plugin is causing the problem, reactivate your other plugins one by one, testing after each, until you find the one causing conflict. You can find a more detailed explanation on how to do a conflict test here.
Forum: Plugins
In reply to: [WooCommerce] Create refundsI am unable to open your Gist link as it seems to be invalid. But to add in order to refund shipping and taxes you will have to make it part of the line_items array you pass to the wc_create_refund function.
Have a look at the the wc_create_refund function in includes/wc-order-functions.php to get an idea of what the function does.
Forum: Plugins
In reply to: [WooCommerce] Price DisappearHi, I just tested and the price is showing fine for me when I select a size. Can you please confirm it is working now?
Forum: Plugins
In reply to: [WooCommerce] Orders disappearedThe only way to recover it would be to get access to the old site again, you will then need to use a plugin like WooCommerce Order Import suite to export and the orders from the old site and then import it again on the new site https://woocommerce.com/products/customerorder-csv-import-suite/
Please read the Email FAQ, specially the sections about emails not sending https://docs.woocommerce.com/document/email-faq/
There are solutions in the document as well you can try.
Forum: Plugins
In reply to: [WooCommerce] how to change woocommerce currency symbolI am not familiar with the plugin, try adding the code to your theme’s function.php file, or use the theme customisation plugin and add it to that functions.php file https://github.com/woocommerce/theme-customisations