Display a link to your shopping cart with the item count anywhere on your site with a customizable shortcode.
Parameters:
icon
empty_cart_text
items_in_cart_text
show_items
show_total
total_text
custom_css
Examples:
[cart_button]
[cart_button icon="basket"]
[cart_button show_items="true"]
[cart_button show_items="true" show_total="true"]
[cart_button show_items="true" show_total="true" total_text="Total Price:"]
[cart_button show_items="true" items_in_cart_text="Cart"]
[cart_button show_items="true" empty_cart_text="Store"]
[cart_button items_in_cart_text="Cart" custom_css="custom"]
To run, test, and develop the Simple Login-Logout Shortcode plugin with Docker container, please simply follow these steps:
- Build the container:
$ docker build -t wptest .
- Test running the PHPUnit on this plugin:
$ docker run -it -v $(pwd):/app wptest /bin/bash -c "service mysql start && phpunit"
= 1.0.0 =
- First release!
- Tested with WordPress 4.4.2 and WooCommerce 2.5.5.
= 1.0.1 =
- Add parameter
show_total
to make this shortcode can show total price in cart.
= 1.0.2 =
- Add parameter
total_text
to custom text for total price in cart.
= 1.0.3 =
- Prevent fatal error when WooCommerce does not get initialized properly.
= 1.0.4 =
- Use
WC()
instead of the global variable$woocommerce
. - Add 3 filters below to allow users to modify the generated markup.
wccs_cart_icon_html
wccs_cart_count_html
wccs_cart_total_html