Drazen
Forum Replies Created
-
Oke, but how I achieve something like that. You mentioned something in first reply?
If you are using the order tracking widget and you have it configured correctly, then it should redirect you to the tracking form page with the results already loaded upon submission.
Thanks
Hello,
thank you for support.
Yes I have been using widget and it is not redirecting me upon submission.
Where do I provide the url for tracking form? There was an option when setting up plugin, but now I don’t see it.
https://prnt.sc/ptkonm
https://prnt.sc/ptkoru
Web: https://tinyurl.com/y3nzrn6h
Forum: Plugins
In reply to: [WC - APG Weight Shipping] Wrong calculationsWorking, sorry for troubles.
Just saw client changed weight value from decimal to comma -.-
Thanks
Forum: Plugins
In reply to: [WC - APG Weight Shipping] Version 2.3.1.1 still broken?When is new update coming out, I cant have webshop working with wrong shipping calculations?
Thanks
EDIT:SOLVED
- This reply was modified 5 years, 1 month ago by Drazen.
I think I solved this in settings by putting create new products, check by SKU. For existing products do no update nothing or update only price.
Or you can alternatively try code provided by support.
Hello,
yes, thank you. It will work like that, but this is not option I was looking, it doesn’t make sense to me to write fixed amount off value, instead smaller price.
Thank you for your help.
Hi Kerry,
yes i think the same, I will try and get it solve, if not will try and get some other plugin, or maybe solving it myself. Because problem is not that big, it is just showing price that is difference from regular price. I think they can solve this easily.
So regular=32€
1-9=32, showing 0
10-99=29, showing 3
…..Ok, I have started it.
ThanksHello,
regular price is 32€. That price is also set from 1-9= 32€, and from 10-999=29€.
Thanks
Hi, yes I can define here only 1 category or? How can I define parent to be category>sub1 ?
Set label for fields, otherwise they do not have value and are not saved in email template.
Set label for fields, otherwise they do not have value and are not saved in email template.
This seems to be working code:
add_action('pmxi_saved_post', 'post_saved', 10, 1); function post_saved($id) { $original_stock = get_post_meta($id, '_stock', true); $new_stock = get_post_meta($id, '_custom_stock_placeholder', true); $combined_stock= $original_stock + $new_stock; update_post_meta($id, '_stock', $combined_stock); }
I am trying something like this: adding stock value to custome field _custom_stock_placeholder and then update original stock with sum of those, but it doesnt seem to be working?
add_action('pmxi_saved_post', 'wdm_post_saved', 10, 1); function wdm_post_saved($id) { $original_stock = get_post_meta($id, '_stock', true); $new_stock = get_post_meta($id, '_custom_stock_placeholder', true); $combined_stock= $original_stock + $new_stock; update_post_meta($id, '_stock', $combined_stock); }
- This reply was modified 6 years, 2 months ago by Drazen.
Thank you very much, I will try.
Should I put this code in theme functions.php or inside WPI php block on Import page?Thank you