Dynadata
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Turn off persistent cartPosted in the ideas.woothemes.com forum:
https://ideas.woothemes.com/forums/72423-general-ideas/suggestions/6331814-persistent-cartForum: Plugins
In reply to: [WooCommerce] Turn off persistent cartThanks for the quick reply!
I’ve tried the same thing, since there apparently is no filter/action whatsoever so I can change the functionality for the Persistent Cart.
I have tried editing the core files to remove the functionality, but it somehow the cart is still persistent.
Obviously I’m not a fan of editing the core files, so this clearly isn’t a solution for long term, but I thought maybe you’d have found a different solution.
I guess I will post this link to the ideas forum for Woocommerce and hope they will implement it in future updates.
Again thanks for the info.
Rowan
Forum: Plugins
In reply to: [WooCommerce] Turn off persistent cartWe would love to hear an answer to this, we are experiencing the same ‘problem’.
Have you accomplished this @anterys?
Rowan
Any updates on this matter?
Thanks
Rowan
Forum: Plugins
In reply to: [WooCommerce] Change field order on checkout page?@leanderbraunschweig Thanks for showing the bug on the pastebin.
For people who want to use this snippet I have made a new pastebin:
https://pastebin.com/AXhasAVa@oriye You should indeed add this to your functions.php within your chosen theme.
I am glad this helped people
Forum: Plugins
In reply to: [Tweet Blender] New Twitter API taking effect 3/1/13?apparently not, the plugin seems to have broken down since the retirement of the v1.0 API (June 11th)
Forum: Plugins
In reply to: [Tweet Blender] Twitter retires support api v1 & authI have also concluded that all widgets that use Tweetblender have stopped working.
Does anyone know a good replacement plugin that would have *approximately* the same functionality?
I am looking for a replacement since it does not seem that the plugin isn’t being updated/supported anymore.
Thanks
Thanks alot for fix 1.
this fix also fixes a bug that does not allow the counter to increase on different IPs. (for example I went to the site and the counter increases as expected, but my client (different IP) goes to the site and the counter does not increase)Forum: Plugins
In reply to: [WooCommerce] Change field order on checkout page?I have found a way to re-order the fields in a kind of a long way, but it works.
add the filter
add_filter('woocommerce_checkout_fields','reorder_woo_fields'); //changes adres field on the checkout page
for every field write the ‘$fields2’-line in the order you like
function reorder_woo_fields($fields) { $fields2['billing']['billing_first_name'] = $fields['billing']['billing_first_name']; $fields2['billing']['billing_last_name'] = $fields['billing']['billing_last_name']; //rest of the fields.... //just copying these (keeps the standard order) $fields2['shipping'] = $fields['shipping']; $fields2['account'] = $fields['account']; $fields2['order'] = $fields['order']; return $fields2; }
Remember to put EVERY field in the $fields2 or they will not be shown
https://pastebin.com/400PDwhf for complete code
There might be an easier way to copy the array and reorder them, but this worked perfectly for me
Rowan