Jamie Gill
Forum Replies Created
-
Forum: Plugins
In reply to: [Facebook for WooCommerce] Products showing without taxHi John,
I hope you are well.
Yes what you say and the documentation makes sense. As mentioned most my products do react and work correctly. It only seems to be around 20 products out of 700 that pull through with out tax. However all the global settings are to show including tax.
So I am unsure why just these select few would pull through minus tax and how we resolve this?
Thanks
JamieForum: Plugins
In reply to: [Facebook for WooCommerce] Products showing without taxHi there,
Any chance of an update on this please?
I am happy to amend things here Facebook are just saying it is the plugin?
Many Thanks
JamieForum: Plugins
In reply to: [Woo Custom Taxonomies Coupons] Percent DiscountsFor anyone trying to get this to work I did manage it using the hook woocommerce_coupon_get_discount_amount. As the taxonomy is still stored I used this hook to check if the coupon had a custom taxonomy term was saved against the coupon. If so I can then run checks with the hook to look at each product, compare if this cart item is assigned to the taxonomy with has_term then apply the respective discount.
Cheers
Forum: Plugins
In reply to: [WC Duplicate Order] “Warning: Cannot modify header information”Hi Eric,
I am unsure why this would be as the duplication has no problems this end, perhaps a conflict of another plugin?
Can you change theme to a default wordpress one and make sure you are updated to the latest woocommerce, disable all other plugins and give this a test please?
Many Thanks
JamieForum: Plugins
In reply to: [WC Duplicate Order] Order Status “waiting for payment”Hi There,
As their is no CMS functionality built in to manage this yet the general feedback was to keep on hold so you can simply change this once duplicated.
This can be changed within the plugin but not recommended should you be looking at future updates.
Many Thanks
JamieForum: Plugins
In reply to: [WC Duplicate Order] do not send emails when duplicatingHi there,
I have had this question a few times but my plugin does not fire off emails. Please see :-
https://www.ads-software.com/support/topic/duplicating-order-sending-email/
Many Thanks
JForum: Plugins
In reply to: [WC Duplicate Order] Duplicates twice when using in cron jobHi there,
I am unsure why this would be, however I have not added in a hook for users to use the duplicate functionality outside of my plugin so you may experience issues here.
You may need to use my plugin functionality to build your own here, as it seems you probably need bespoke funtionality.
Many Thanks
JamieForum: Plugins
In reply to: [WC Duplicate Order] Future supportHi there,
I have an update due in the pipeline to add some additional functionality. Unfortunately due to a busy workload I am slightly delayed.
I can confirm the plugin does work with the newest version of woocommerce and all previous versions.
Many Thanks
JamieForum: Reviews
In reply to: [WC Duplicate Order] Not workingHi Inzerat,
This plugin was never designed to automatically fire off any emails. The functionality works exactly as intended. Any automated emails can then be controlled after duplication via the backend.
If you need this to be automated you would need bespoke works to fire them off using woocommerce functions.
Thanks
JForum: Plugins
In reply to: [WC Duplicate Order] The plugin doubles the productHi Cristian,
I have checked with a dummy site and it seems to work fine. I tested bulk and preview duplication and the order is the same.
I also checked the code and nothing suggests there should be duplicated items and this part of the plugin has not changed since version 1.5.
The main functionality was preview duplication and fee/coupon fixes on the names nothing major.
Cheers
JForum: Plugins
In reply to: [WC Duplicate Order] Stock not updated when duplicatedHi Giovan,
Seem to work like a charm nice fix. I will implement this and try get this released for you.
Thanks
JForum: Plugins
In reply to: [WC Duplicate Order] Auto calculate taxes and totalsThanks Technigrafix, I will take a look and try get a release out for you.
Forum: Plugins
In reply to: [WC Duplicate Order] Fee name not copiedThanks Technigrafix, I will take a look and try get a release out for you.
Forum: Plugins
In reply to: [WC Duplicate Order] Duplicate Custom order fieldsHi There,
I have added a hook in here so you can hook in and add in your custom fields an this will be duplicated with each order. A simple example for your functions.php would be :-
add_action(‘clone_custom_order_fields’, ‘clone_extra_fields’, 10, 2);
function clone_extra_fields($order_id, $original_order_id) {
update_post_meta( $order_id, ‘My_Field’, get_post_meta($original_order_id, ‘My_Field’, true));
}
Just change ‘my_field’ to your field name and it should be duplicated fine.
Cheers
JForum: Plugins
In reply to: [WC Duplicate Order] Permission for role “shop_manager”Hi Marc,
You will be able to amend this in wc-duplicate-order.php currently it is using an admin function as follows :-
woocommerce_admin_order_actions
At the moment my current plugin is compatible for admins only.
Many Thanks
Jamie