Multi Vendor Marketplace Plugin | WCFM Marketplace › Forums › WCFM – Feature Request › Redirect to store page after add to cart
- This topic has 5 replies, 3 voices, and was last updated 4 years, 6 months ago by Sushobhan.
- AuthorPosts
- April 21, 2020 at 7:35 am #121227pebi44Participant
Hi, I’m Esteban and I’m starting to use wcfm.
I am limiting the sale of products to one Vendor.
After adding a product to the cart, I need to redirect it to the corresponding vendor store page.
Thank.
Sorry for my English. - April 21, 2020 at 4:29 pm #121330pebi44Participant
I am limiting the sale of products to one Vendor per Order
- April 22, 2020 at 2:25 am #121537CraigParticipant
pebi44 how do you do that limiting of one vendor per order?
- April 22, 2020 at 12:21 pm #121661SushobhanKeymaster
Hi,
Thanks for getting in touch.First, go to WooCommerce > Settings > Products > General and disable both options: “Redirect to the cart page after successful addition” & “Enable AJAX add to cart buttons on archives“. Refer to this – https://imgur.com/3izmr6d
After that, add the following snippet to your child theme’s functions.php. In case you do not have child theme then add code using this plugin – https://wordpress.org/plugins/code-snippets/
function after_add_to_cart_redirect_to_vendor_store( $url, $adding_to_cart ) { $product = wc_get_product( $adding_to_cart ); if ( $product ) { $vendor_id = wcfm_get_vendor_id_by_post($product->get_id()); if(wcfm_is_vendor($vendor_id)) return wcfmmp_get_store_url($vendor_id); return get_permalink( wc_get_page_id( 'shop' ) ); } return $url; } add_filter( 'woocommerce_add_to_cart_redirect', 'after_add_to_cart_redirect_to_vendor_store', 10, 2 );
Let me know how it goes.
Thanks! - April 22, 2020 at 6:32 pm #121833SushobhanKeymaster
You are always welcome 🙂
Let me know if there’s anything else we can help you with.
Can we ask for a favor? Would you mind taking a few minutes to review our plugin at https://wordpress.org/support/plugin/wc-multivendor-marketplace/reviews/ and let others know about your 5 Star experience with WCFM Marketplace. Also, follow us on Twitter https://twitter.com/wcfmmp for more exciting news, important updates, and irresistible offers.
- AuthorPosts
- You must be logged in to reply to this topic.