paiconsultants
Forum Replies Created
-
Do you have a Git Repo for the plugin?
Forum: Plugins
In reply to: Directory Plus – How to’s or manuals for beginners – DashboardHi Esmereldaloot,
Indeed there is a manual available, please check your email shortly for it in PDF form
Yours Kindly
WilliamForum: Plugins
In reply to: [WooCommerce] Admin Order Page – Order Column Meta Data?You sir, are a Legend! It’s working perfectly!
Thank you for all your trouble, this has been a headache for so long.
Forum: Plugins
In reply to: [WooCommerce] Admin Order Page – Order Column Meta Data?Hi mj_diamond.
Have to report till date we still haven’t come right due to a lack of response on this thread and due to the fact that it’s a non critical task on the website we stopped looking.
However, if someone still knows how to do it we will welcome any assistance.
Forum: Plugins
In reply to: [WooCommerce] Stock Quantity now with decimals issues…That did not resolve the issue, however…
I tried replacing it with get_total_stock() and it fixed the issue for some reason? Very peculiar issue.
Thanks for all the help Mike, you are #awesome as always!
Forum: Plugins
In reply to: [WooCommerce] Stock Quantity now with decimals issues…Corrected it, but to no avail unfortunately. This particular issue is giving my grey hair right now ??
// Stock on Products Page add_action( 'woocommerce_after_shop_loop_item_title', 'shop_inventory' ); function shop_inventory(){ global $product; echo '<div itemprop="productID" id="multi-sku"><span>' . $product->sku . '</span><div class="stock"><span>' . $product->get_stock() . '</span> In Stock</div></div>';
PS: I managed to get hold of the developers of the theme and they are looking into it as well. A great thank you for all the support to thus far!
Forum: Plugins
In reply to: [WooCommerce] Stock Quantity now with decimals issues…We double checked and it you are correct. The woocommerce side files are precisely as you linked them.
The clients theme is heavily outdated and no further updates are available. We managed to update the two files that was flagged as old template files.
This seems to be the function called within the theme functions.php
// Stock on Products Page add_action( 'woocommerce_after_shop_loop_item_title', 'shop_inventory' ); function shop_inventory(){ global $product; echo '<div itemprop="productID" id="multi-sku"><span>' . $product->sku . '</span><div class="stock"><span>' . $product->stock . '</span> In Stock</div></div>'; }
Forum: Plugins
In reply to: [WooCommerce] stock quantities now have 7 decimal places!!!Hi pienavs, tried your fix and did not work unfortunately.
We updated Woocommerce to the latest version this morning in the hope that it was purely a bug. Seems like it was not.
Unlike brunofesta problem our products are not variable but simple products. Tried on different browsers each with the same result unfortunately. This only started happening a few weeks ago when we decided that we are long overdue for a woocommerce update.
The problem varies though, most products display the stock qty correctly on the thumbnail preview. If you do go the product the stock quantity do not show the trailing decimal zeros. (see screen shot)
Please assist?
Forum: Plugins
In reply to: [WooCommerce] My site is downTry disabling the plugin manually via FTP. Just add a extra character to the plugin directory name. I.e /payfast to be renamed to /payfast1
Forum: Plugins
In reply to: [WooCommerce] Admin Order Page – Order Column Meta Data?After tedious research I still can find the specific PHP file responsible for this, if someone could point me in the right direction I will be eternally grateful.
Forum: Plugins
In reply to: [WooCommerce] My site is downHi Jamy,
Try and disable Payfast plugin temporarily to see if it works. It seems like that is the source of your problems. Also check if there is an update available for the plugin as well. We recently had a similar issue which had us bounce between the ISP and Payfast itself.
It will also be advisable to switch WP_DEBUG to true which will give you more detailed on potential errors on the screen.