Retrieve Woocommerce Cart Url with javascript/jquery [closed]
You can pass it to the script via the functions.php file or a plugin using the wp_localize_script function. <?php function my_load_scripts() { wp_enqueue_script(‘my-script’, plugin_dir_url( __FILE__ ) . ‘js/my-script.js’); wp_localize_script(‘my-script’, ‘my_script_vars’, array( ‘woo_cart_url’ => get_permalink( wc_get_page_id( ‘cart’ ) ) ) ); } add_action(‘wp_enqueue_scripts’, ‘my_load_scripts’); Then it will be available in your script ( in the example: … Read more