No “Remove All” button

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #103093
    Mark Amat
    Participant

    Under the “Texts” tab there are setting for a “Remove All” button but I don’t have that button and I don’t see options anywhere to add it or enable it. Am I missing something?
    Thank you

    #103276
    Pablo
    Moderator
    Plugin Support

    Hi Mark,

    Yes, We have the [alg_wc_wl_remove_all_btn] shortcode that can remove all items from the wish list.

    Here are the parameters you can use on the shortcode:

    array(
    	'show_loading' => false,
    	'tag'          => 'button',
    	'btn_class'    => 'alg-wc-wl-btn2 alg-wc-wl-remove-all',
    	'remove_label' => 'Remove all',
    	'auto_hide'    => false
    );
    

    Examples:

    1. Change text from “Remove all” to “Remove items”:

    [alg_wc_wl_remove_all_btn remove_label="Remove items"]

    2. Use the shortcode programmatically making it disappear after clicked:

    echo do_shortcode('[alg_wc_wl_remove_all_btn auto_hide="true"]');
    #103500
    Mark Amat
    Participant

    ok, thank you for this information!

    #103507
    Pablo
    Moderator
    Plugin Support

    😉

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.