splashingpixels.com on "[Plugin: WooCommerce - excelling eCommerce] custom...
First you have to find the right hook...And second your code is not correct. Your $order_id is undefined... You have to check the action hook's argument list to see what is being passed on the callback...
View Articlesplashingpixels.com on "[Plugin: WooCommerce - excelling eCommerce] custom...
Here you go...I just found the perfect hook for you -> woocommerce_checkout_update_order_meta The first argument is the order id...you use that in your custom function
View Articlesplashingpixels.com on "[Plugin: WooCommerce - excelling eCommerce] custom...
So do this: add_action( 'woocommerce_checkout_update_order_meta', 'nfp_add_meta_webcode', 10, 2 ); function nfp_add_meta_webcode( $order_id, $order_posted ) { $unique_code = $_SESSION['clientwebcode'];...
View Articlesplashingpixels.com on "[Plugin: WooCommerce - excelling eCommerce] custom...
Or this hook will work as well 'woocommerce_checkout_order_processed'
View Articlejimlongo on "[Plugin: WooCommerce - excelling eCommerce] custom order data...
Cool. I see those actions listed in the docs but no description of them. Where do you find the hook's argument list?
View Articlesplashingpixels.com on "[Plugin: WooCommerce - excelling eCommerce] custom...
I usually don't look at docs...I look straight in the code...
View Articleidealneal on "[Plugin: WooCommerce - excelling eCommerce] When not logged in...
I am developing a woocommerce site and have all of my product category images loaded. When on the shop page and on several other subcategory pages they all show up as long as I am logged in. But then...
View Articleidealneal on "[Plugin: WooCommerce - excelling eCommerce] When not logged in...
Here is the url http://www.voldz.com thanks
View Articlesplashingpixels.com on "[Plugin: WooCommerce - excelling eCommerce] When not...
That is strange because either it is all not showing or all showing but you seem to have one that shows and the rest not...This makes it harder to troubleshoot.. Do you have some kind of caching or...
View ArticleMike_Cowobo on "[Plugin: WooCommerce - excelling eCommerce] Woocommerce cart...
Instead of changing around the whole header php for such a minor change, try this simple and clean (but still hacky) fix. Simply add the following lines to your custom.css: ul.wc-nav li.cart a >...
View Articleidealneal on "[Plugin: WooCommerce - excelling eCommerce] When not logged in...
I am using WP Super Cache. When I originally assigned category images I noticed that unless a product wasn't assigned to that parent category the image wouldn't show, so I made sure that at least one...
View Articleidealneal on "[Plugin: WooCommerce - excelling eCommerce] When not logged in...
I fixed it. I cleared the cache and it solved the problem. thanks plashingpixels for all of your help. Now I can get back to more important issues.
View Articleidealneal on "[Plugin: WooCommerce - excelling eCommerce] A button to empty...
I am having the same issue. I have added the code to the functions file and I have added this code to the cart page but nothing seems to be happening. Anybody know what is wrong? <input...
View Articleozieladrian on "[Plugin: WooCommerce - excelling eCommerce] download...
I'm trying to buy the authorize.net plugin but it is rejecting all my creditcards (and i know for a fact that all of them work). Do you have other payment method like paypal? or how can I buy this...
View Articlesplashingpixels.com on "[Plugin: WooCommerce - excelling eCommerce] download...
I think this is something you should contact them directly... http://www.woothemes.com/contact-us/
View Articleozieladrian on "[Plugin: WooCommerce - excelling eCommerce] download...
thanks, I tried to contact them before posing in this blog, but I have not received an answer.
View Articlesplashingpixels.com on "[Plugin: WooCommerce - excelling eCommerce] download...
How long ago was that? And it is currently the weekend so...
View Articlejimlongo on "[Plugin: WooCommerce - excelling eCommerce] custom order data...
That's fantastic. Both those hooks seem to work, I don't detect any difference yet. But that it's working is a great relief. A Big Thank You.
View Articlesplashingpixels.com on "[Plugin: WooCommerce - excelling eCommerce] custom...
No problem..hope it works out for you...
View Article