• Resolved duifs

    (@duifs)


    I’m trying to modify the default Deposit Text, but it always appends “30% per item” after the custom text I enter. (The default percentage is set to 30%).

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Sanesh Acowebs

    (@saneshacodez)

    The “per item” text from the deposit selection area can be changed using the filter hook that follows:

    add_filter( 'awcdp_per_item_deposit_suffix', 'change_per_item_deposit_suffix' );
    function change_per_item_deposit_suffix() {
    return 'new per item suffix text';
    }

    Thread Starter duifs

    (@duifs)

    Got it. Thanks for your quick response.

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