Gerhard Potgieter
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] how to change woocommerce currency symbolHi, you will need to hook into the
woocommerce_currency_symbolfilter and then set the symbol to Rs. Something along these linesadd_filter( 'woocommerce_currency_symbol', 'my_custom_currency_symbol' ); function my_custom_currency_symbol( $symbol, $currency ) { return 'Rs'; }Forum: Plugins
In reply to: [WooCommerce] Uber Eats addon to Woo-CommerceHi Paul, I am not aware of any solution out there that integrates Uber Eats with WooCommerce. I also did a search and did not find anything, perhaps it would be worth contacting Uber and asking if they have an integration available? Sometimes companies have integrations but keep it private for certain reasons.
Forum: Plugins
In reply to: [WooCommerce] Admin email notifications not firingHi, sometimes emails can get caught in spam filters especially if you rely on WordPress sending your emails. To get around this we recommend using a dedicated email provider.
For more details on emails, why they are not sending and how to fix it please read the Email FAQ document https://docs.woocommerce.com/document/email-faq/
Forum: Plugins
In reply to: [WooCommerce] Can you get a race condition with Paypal?Hi, if you have the Hold stock option enabled, it should not as the stock is reserved as soon as you place the order just before you get redirected to PayPal. If the 5th user comes along and clicks the pay button the order will be created in the backend and then see no stock is available due to it being on-hold, and then display a message to the user saying there is no stock.
Stock that is reserved but not paid for will be release back depending on your hold stock setting in WooCommerce -> Settings -> Products -> Inventory
Forum: Plugins
In reply to: [WooCommerce] Price filter dissapears when out of rangeHi, I am able to recreate this issue. Can you please log this as a bug on GitHub https://github.com/woocommerce/woocommerce/issues/new?template=Bug_report.md and then post the link to the issue here so other can follow along on Github?
Hi, the only reason to use global attributes would be if they are shared amongst products so that it would eliminate the need to re-enter the same attributes and values over and over again for each product.
Global attributes also have better performance for things like the filter nav widget which allows you to filter products based on attributes on the shop page, but again this is only used if you have multiple products sharing the same attributes.
Why you are experiencing the issues can only be attributed to your hosting setup, even if you follow the documentation and steps nothing stops your host from prohibiting those overrides which means it will do nothing for you. If you want to solve the root cause of the problem then you will have to contact your host and ask them to increase these values for you to ensure it is done right.
Forum: Plugins
In reply to: [WooCommerce] Geolocation causing 503 error?Hi, it seems like your server software is sending through an error code and message in the IP Address header which is causing the IP check to fail. It won’t cause an issue as it is just a warning to let you know that something was sent in a header that was suppose to contain a valid IP address.
All I can suggest is asking your host why they are sending error codes and messages as part of the IP Address header, and then also ask them why you would get a 503 error as that is something on their side and not WooCommerce.
Forum: Plugins
In reply to: [WooCommerce] Duplicate key error when activatingHi, this issue has been solved and will go out with the 5.3.2 release later this week. You can follow along the original report here https://github.com/woocommerce/woocommerce/issues/21775
Marking as resolved since there is a logged issue and a fix ready as well.
Forum: Plugins
In reply to: [WooCommerce] How to use ‘full’ image and prevent additional image generationHi, simply using that one filter will not suffice. You will also need to change woocommerce_gallery_full_size, woocommerce_gallery_thumbnail_size and woocommerce_thumbnail_size
Then there is also the fact that your theme and other plugins can define their own image sizes and WordPress will generate images for those. Have a read at this article on how to prevent WordPress from generating image sizes https://www.wpbeginner.com/wp-tutorials/how-to-prevent-wordpress-from-generating-image-sizes/
I’m not familiar with Adwords and best practices so cannot comment, but I believe what that plugin does is create a Feed you can provide to Google which contains all your products and then you can create ads based on the data the feed provides, resulting in not having to enter each product data in Google Adwords.
Forum: Plugins
In reply to: [WooCommerce] Product variations and additional informationHi, the additional information tab is used to give an overview of all the variation options available as well as listing all attributes and sizes defined for the product.
To hide it you can either do it via CSS, or you can use the WordPress filter
woocommerce_product_tabsand unset it via PHPadd_filter( 'woocommerce_product_tabs', 'custom_remove_additional_info_tab', 99 ); function custom_remove_additional_info_tab( $tabs ) { unset( $tabs['additional_information'] ); return $tabs; }Forum: Plugins
In reply to: [WooCommerce] Problem with like named products in different categoriesThat is, unfortunately, a WordPress thing and nothing WooCommerce can do about it. Products or any post/page/custom post type slug needs to be unique no matter if they have different URL structures, that is just the way WordPress mandates it.
I agree with the last commenter in that you should rather add a prefix or suffix of sort to these smaller dishes, might just cause less confusion as well when visitors view the URL or see the link posted somewhere.
Marking this as resolved as there is no way around this.
Hi, there is definitely no way out of the box to do this, and we have no official extension to enable this but I believe if you search the internet for “Google Feed Manager” that might offer the functionality what you are after, I have not verified this so please double check.
Forum: Plugins
In reply to: [WooCommerce] Issues with Cart and CheckoutHi, do you have any payment gateways enabled? And if you do, do they support all the countries you are selling to?
You can view the available payment gateways on your store via WP-Admin under
WooCommerce -> Settings -> PaymentsThen you must enabled gateways you have signed up for to enable payments on your store http://cld.wthms.co/ypfaDVForum: Plugins
In reply to: [WooCommerce] add link my accountHi, you can use the filter woocommerce_account_menu_items to add additional menu items to the My Account menu.