techguysa
Forum Replies Created
-
Forum: Plugins
In reply to: [Google for WooCommerce] GTIN – EAN Field in CSV export not foundPost are from 2-3 months ago…. we on 9.4.3 there is no 9.5 at the time of this post.
I take it its releasing when 9.5 is ready for deployment?Forum: Plugins
In reply to: [Google for WooCommerce] GTIN – EAN Field in CSV export not foundokay ill export a catagory with all the metas included
See link
https://www.techguysa.co.za/wp-content/uploads/2024/12/For-woocommerce-test.csvthe GTIn for google was this colloum
Meta: _wc_gla_gtinSo for example if you search for anywhere else please let me know cause i pasted eans into the sku section and cannot find it at all.
Forum: Plugins
In reply to: [Google for WooCommerce] GTIN – EAN Field in CSV export not foundI see on woocommerce the issue also raised there and the staff keeps saying its 3rd party when its not
Id love to know does these new features get thought on? id love for this to be resolved as a custom field that exports cause then we can do our annual purge once we close for the holidays
HI
ok but it does this every time and now it just wont go away i have de-activated and re-activated twice and then proceses in the background but comes back up asking to de-activate and reactivate
What exactly is it doing if i may askForum: Plugins
In reply to: [Google for WooCommerce] We’re having trouble loading this data.well i checked on google everything still eligable the debit oder and what i owed came off yesterday.
Did notice it couldnt display product information when i went to products just red box in error asking to refresh yet all other reports work fine (this is on adsense of course) so thinkiing same
my one sale last night the source was google and i can see in shopping (on google) my listings are there just not on top (that might be a budget issue) the CPC is double this year to last year and getting real annoying with Google on the amount of customising one needs to do vs the cost latley last year was totaly fine now its rediculess although made massive changes which helped but this is just a toping nowHI still no help your support was basically saying what you said.
I donno if only you could make your plug in get the colours inhert from the theme would make so much sense.
Morning saw the update this morning
Confirmed this resolved it.
I see rolling back to 2.11.5 works.
So not sure what you guys did that broke it after that.
im repling to the forun as well
Forum: Plugins
In reply to: [TikTok] Network Error – Cannot ConnectHI there same issue on my end
Forum: Plugins
In reply to: [WooCommerce] Totals miss calculatingmm looks like a weekend testing will be done.
Will let you know not found of chaning decimals to 2 etc
again will let you know
I do see an update will run that later as wellForum: Plugins
In reply to: [WooCommerce] Totals miss calculatingHI there yes
when i spot once again will check i have been checking last few days and cant seem to find it replicating so its very intermittently All i got is this of the one im refering to and as im typing this i spotten one which sent the client R5011 but calculates back to R5010
https://www.techguysa.co.za/wp-content/uploads/2024/04/Totals-issue-woocommerce-April-2024.png
Emailed from the site
and what shows later
https://www.techguysa.co.za/wp-content/uploads/2024/04/Totals-issue-woocommerce-Backend-April-2024.pngFor legal reasons i cant share the customers personal details on the screen shots.
Site is https://www.techguysa.co.za (WP-admin is hidden just btw)
Now the only guess is i dont let cents on the site so the site rounds down the sents or up
Number of decimals set to 0 in woocommerce > settings > General (Tab)
There is a custom script in functions to display the backend the price with VAT as we dont work like in the states our prices is Vat included so without the script it shows without vat and its hard to tell if the price was correct so instead of checking every time i got the script to display the way its showing on that screen shot was never an issue cause all its doing is adding and such in the admin collums but the total on woocommerce is the issue. so not sure if its the cents in the background doing a round up or down and then correcting itself afterwards?
Number of decimals set to 0 in woocommerce > settings > General (Tab)
There is a custom script in functions to display the backend the price with VAT as we dont work like in the states our prices is Vat included so without the script it shows without vat and its hard to tell if the price was correct so instead of checking every time i got the script to display the way its showing on that screen shot was never an issue cause all its doing is adding and such in the admin collums but the total on woocommerce is the issue. so not sure if its the cents in the background doing a round up or down and then correcting itself afterwards?The script that i am using in functions if this helps are
add_filter( 'woocommerce_get_availability', 'wcs_custom_get_availability', 1, 2); function wcs_custom_get_availability( $availability, $_product ) { // Change In Stock Text if ( $_product->is_in_stock() ) { $availability['availability'] = __('In stock with Supplier', 'woocommerce'); } // Change Out of Stock Text if ( ! $_product->is_in_stock() ) { $availability['availability'] = __('Supplier out of stock', 'woocommerce'); } // Change Available on backorder Text if ( $_product->is_on_backorder() ) { $availability['availability'] = __('Available on Backorder / Request', 'woocommerce'); } return $availability; } add_action( 'woocommerce_admin_order_item_values', 'action_woocommerce_admin_order_item_values', 10, 3 ); function action_woocommerce_admin_order_item_values( $null, $item, $item_id ) { $validOrderItemTypes = ['line_item', 'shipping', 'fee']; $val = ( in_array( $item['type'], $validOrderItemTypes )) ? $item['total'] + $item['total_tax'] : '−'; $price = wc_price( $val ); ?> <td class="item_fcost" data-sort-value="<?php echo $val; ?>"> <div class="view" style="font-weight: bold; text-align: right; padding-right: 10px;"> <?php echo $price; ?> </div> </td> <?php }; add_action( 'woocommerce_admin_order_item_headers', 'action_woocommerce_admin_order_item_headers', 10, 3 ); function action_woocommerce_admin_order_item_headers( $order ) { echo '<th class="item_fcost sortable" data-sort="float" style="text-align: right;">Price incl. VAT</th>'; } function es_add_cart_notice() { // Only on cart and check out pages if( ! ( is_cart() || is_checkout() ) ) return; // Set message $message = "You have a Backorder / Requested product in your cart."; // Set variable $found = false; // Loop through all products in the Cart foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) { // Get an instance of the WC_Product object $product = $cart_item['data']; // Product on backorder if( $product->is_on_backorder() ) { $found = true; break; } } // true if ( $found ) { wc_add_notice( __( $message, 'woocommerce' ), 'notice' ); // Removing the proceed button, until the condition is met // optional // remove_action( 'woocommerce_proceed_to_checkout','woocommerce_button_proceed_to_checkout', 20); } } add_action( 'woocommerce_check_cart_items', 'es_add_cart_notice', 10, 0 ); add_filter('woocommerce_short_description','ts_add_text_short_descr'); function ts_add_text_short_descr($description){ $text="<b>Notice:</b> 2% off when paying via EFT at checkout."; return $description.$text; }
The one im using for the backend vat is
add_action( 'woocommerce_admin_order_item_headers', 'action_woocommerce_admin_order_item_headers', 10, 3 ); function action_woocommerce_admin_order_item_headers( $order ) { echo '<th class="item_fcost sortable" data-sort="float" style="text-align: right;">Price incl. VAT</th>'; }
If this information helps
Sorry jump on your Thread.
Similar issue the button text was missing etc and the deactivate and reactivate worked 100%
if you using LSCache run the clear all cache on front end afterwards to let it show (in case your browser is delayed)
Cool will do that ?? Thank you
oh ive tried to no avail kept displaying funny not sure if it was firefox dev mode that couldnt show me the line to modify it properly.
unless you know and can share for me?
Forum: Plugins
In reply to: [Action Scheduler] 16000+ Past DueSo after monitoring it for a few days seems everything is not older than 24hours given i have been giving it work to do as well. but they went fast i even logged some on my end to cehck they did over a thousand in a few short hours.
All (4196004) | Complete (660139) | Pending (12934) | Failed (3522913) | Canceled (18) | Past-due (12934)
Search hook, args and claim ID:
Select bulk action
12,934 items ? ?
Current Page
of 1,294 Next page? Last page? 11:30 am 5th JanAll (4196003) | Complete (660168) | Pending (12785) | Failed (3523032) | Canceled (18) | Past-due (12785)
Search hook, args and claim ID:
Select bulk action
4,196,003 items ? ?
Current Page
of 419,601 Next page? Last page? 12:09 5th JanAll (4192424) | Complete (656933) | Pending (11210) | Failed (3524263) | Canceled (18) | Past-due (11210)
Search hook, args and claim ID:
Select bulk action
4,192,424 items ? ?
Current Page
of 419,243 Next page? Last page? 18:54 5th janAll (4192419) | Complete (657000) | Pending (10908) | Failed (3524493) | Canceled (18) | Past-due (10908)
Search hook, args and claim ID:
Select bulk action
4,192,419 items First page? Previous page?
Current Page
of 419,242 ? ? 20:16 5th janAll (4192414) | Complete (657212) | Pending (9988) | Failed (3525196) | Canceled (18) | Past-due (9988)
Search hook, args and claim ID:
Select bulk action
9,988 items ? ?
Current Page
of 999 Next page? Last page? 00:20 6th JanAll (4189823) | Complete (654665) | Pending (9730) | Failed (3525410) | Canceled (18) | Past-due (9730)
Search hook, args and claim ID:
Select bulk action
9,730 items ? ?
Current Page
of 973 Next page? Last page? 01:27 6th janAll (4182750) | Complete (647948) | Pending (7797) | Failed (3526987) | Canceled (18) | Past-due (7797)
Search hook, args and claim ID:
Select bulk action
4,182,750 items ? ?
Current Page
of 418,275 Next page? Last page? 09:58 6th janAll (4182751) | Complete (648041) | Pending (7404) | Failed (3527288) | Canceled (18) | Past-due (7404)
Search hook, args and claim ID:
Select bulk action
7,404 items ? ?
Current Page
of 741 Next page? Last page? 11:43 6th janAll (4182751) | Complete (648063) | Pending (7355) | Failed (3527315) | Canceled (18) | Past-due (7355)
Search hook, args and claim ID:
Select bulk action
7,355 items ? ?
Current Page
of 736 Next page? Last page?11:57 6th jan
============================================================================================================================================================
All (4182758) | Complete (648283) | Pending (6853) | Failed (3527604) | Canceled (18) | Past-due (6853)Search hook, args and claim ID:
Select bulk action
6,853 items ? ?
Current Page
of 686 Next page? Last page?14:10
==============================================================================================================================================================
uploaded all suppliers stocks and pricing 6th Jan 2024 mid afternoon ish till 22:30 +/-All (4203705) | Canceled (18) | Complete (659471) | Failed (3528454) | Pending (15762) | Past-due (15754)
Search hook, args and claim ID:
Select bulk action
15,755 items ? ?
Current Page
of 1,576 Next page? Last page? 000:06 7th janAll (4200646) | Canceled (18) | Complete (657179) | Failed (3529388) | Pending (14061) | Past-due (14055)
Search hook, args and claim ID:
Select bulk action
14,055 items ? ?
Current Page
of 1,406 Next page? Last page? 07:51All (4199779) | Canceled (18) | Complete (656914) | Failed (3530037) | Pending (12810) | Past-due (12804)
Search hook, args and claim ID:
Select bulk action
12,804 items ? ?
Current Page
of 1,281 Next page? Last page?13:41
==============================================================================================================================================================
They on 700 this morning but after i gave it a few thounsands to do *(stock updates etc)
looks like i can just leave that hook on pause as well since evertyhing is working againill check those links you sent out on the high volume not sure if 12gb of ram and 8 cores cpu wise helps