Search
 
SCRIPT & CODE EXAMPLE
 

PHP

get cart page url in woocommerce

<?php echo wc_get_cart_url(); ?>
Comment

woocommerce custom add cart urls

URL: Add One Simple Product to Cart
href=”https://yourdomain.com/?add-to-cart=25″

URL: Add One Simple Product to Cart with Quantity = 3
href=”https://yourdomain.com/?add-to-cart=25&quantity=3″

URL: Add One Simple Product to Cart & Redirect to Cart Afterwards
href=”https://yourdomain.com/cart/?add-to-cart=25″

URL: Add One Simple Product to Cart & Redirect to Checkout Afterwards
href=”https://yourdomain.com/checkout/?add-to-cart=25″

URL: Add One Simple Product to Cart & Redirect to Any Page Afterwards
href=”https://yourdomain.com/your_custom_page/?add-to-cart=25″

URL: Add One Variable Product to Cart
href=”https://yourdomain.com/?add-to-cart=88″

URL: Add One Variable Product to Cart (with Quantity = 3)
href=”https://yourdomain.com/?add-to-cart=88&quantity=3″

URL: Add One Variable Product to Cart & Redirect to Cart
href=”https://yourdomain.com/cart/?add-to-cart=88″

URL: Add One Variable Product to Cart & Redirect to Checkout
href=”https://yourdomain.com/checkout/?add-to-cart=88″

URL: Add One Variable Product to Cart & Redirect to Any Page
href=”https://yourdomain.com/any-page-url/?add-to-cart=88″

URL: Add a Grouped Product to Cart
You will need the Grouped Product ID, which can be found in the usual way, and also the sub-product IDs. Then, use something like:

href=”https://yourdomain.com/?add-to-cart=3111&quantity[1803]=5&quantity[1903]=2″
Comment

PREVIOUS NEXT
Code Example
Php :: php stdclass to array 
Php :: wp mail 
Php :: php foreach first element 
Php :: artisan make model with migration 
Php :: ucwords in php 
Php :: fix to 2 decimal places php 
Php :: get template name wordpress 
Php :: enqueue font awesome wordpress 
Php :: how to redirect with php 
Php :: laravel migration remove column 
Php :: php.ini settings 
Php :: laravel search data relationship 
Php :: php sec into date time 
Php :: 500 server error laravel 
Php :: php ellipsis 
Php :: ip condition in php 
Php :: importing current year in laravel blade 
Php :: init hook wordpress 
Php :: wp config define site url code 
Php :: laravel session has message 
Php :: Download a file from external server using PHP - Move one project to another server 
Php :: using a php array in jquery 
Php :: array merge laravel 
Php :: yii 1 clear cache 
Php :: array push object php 
Php :: laravel env 
Php :: Get the number of days between two dates in PHP 
Php :: create session in wordpress 
Php :: php sort multidimensional array 
Php :: php redirect if not logged in 
ADD CONTENT
Topic
Content
Source link
Name
9+2 =