vellasella
Forum Replies Created
-
This is not tracking for me as well. I enabled the auto return as described on the doc. I also accept COD orders for local pickup. Everything goes to the correct /checkout/order-received/ page but never gets tracked in GA Ecommerce. My GA account for the site is tracking properly and is enabled as an ecommerce site.
Forum: Plugins
In reply to: [WooCommerce] [Plugin: WooCommerce – excelling eCommerce] Add to Cart bugThat has always worked for me on that page. I want them to be directed to the cart as soon as they add something from the home page or catalouge page.
This is how many popular online line stores work, you want to drive them to make a purchase as quick as possible. On the cart page I have upsells and additional items, along with a continue shopping button.
By just placing a check mark or changing the button to say “Added” there is no real action for the customer. And if they want to check out at that point, how can they??? If you click the checkmark it does nothing, same thing for the button. They need to search for the cart link which can be frustrating for a first time customer.
So the most intuitive thing to drive sales is to either have it go directly to the cart or have something that post back next to the checkmark, like “View Cart”.
Make Sense??
Forum: Plugins
In reply to: [WooCommerce] [Plugin: WooCommerce – excelling eCommerce] Add to Cart bugI have it like this:
add_filter('add_to_cart_redirect', 'custom_add_to_cart_redirect'); function custom_add_to_cart_redirect() { return 'https://www.vellasella.com/cart/'; }
But still it doesn’t redirect to the cart page. It stays on the page and just give me a button that says added and a check mark.
Forum: Plugins
In reply to: [WooCommerce] [Plugin: WooCommerce – excelling eCommerce] Add to Cart bugI tried replacing get_permalink(get_option(‘woocommerce_checkout_page_id’)) to https://www.vellasella.com/shop/
but I get this error:
Parse error: syntax error, unexpected ‘:’ in /home/vsadmin/public_html/wp-content/themes/bellissima/functions.php on line 730
I tried using https://www.vellasella.com/shop/ but no redirect happened.
Forum: Plugins
In reply to: [WooCommerce] [Plugin: WooCommerce – excelling eCommerce] Add to Cart bugThat kind of worked, when I clicked add to cart, it seemed to add it because I got the checkmart. Then it redirected to the cart page and the cart was empty.
Forum: Plugins
In reply to: [WooCommerce] [Plugin: WooCommerce – excelling eCommerce] Add to Cart bugI added it there but it doesnt do anything
add_filter('add_to_cart_redirect', 'custom_add_to_cart_redirect'); function custom_add_to_cart_redirect() { return get_permalink(get_option('woocommerce_checkout_page_id')); // Replace with the url of your choosing }
I guess I dont know where to replace with my url. I tried this:
return https://www.vellasella.com/cart;Forum: Plugins
In reply to: [WooCommerce] [Plugin: WooCommerce – excelling eCommerce] Add to Cart bugSounds like what I am looking for. But where do I add that code/snippet?
Forum: Plugins
In reply to: [WooCommerce] [Plugin: WooCommerce – excelling eCommerce] Add to Cart bugI want it to go directly to the cart page after you click “Add to Cart”.
Click the add to cart button. Then a checkmark appears. Then what? I don’t think my users will be smart enough to know what to do next. There is no action to get to the cart without searching somewhere on the page.
Try it out on my page, in the section with products below: https://www.vellasella.com/
Forum: Fixing WordPress
In reply to: How do I add a missing setting to my admin menuThank you ~ That enabled alot of the things I was looking for.