• Resolved danielbmxd

    (@danielbmxd)


    Hello, is it possible to disable or put 0 balance of the physical gift cards?
    I wish to be physical gift cards only be exchanged offline

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author YITHEMES

    (@yithemes)

    Hello there,

    Thanks for contacting us and we hope you’re doing well ??

    If you want to do it, please add the following code in the functions.php of your active theme

    if( !function_exists('yith_ywgc_before_gift_card_generation_save_remove_balance') ) {
    	function yith_ywgc_before_gift_card_generation_save_remove_balance( $gift_card ) {
    
    		if ( ! $gift_card->is_digital ) {
    			$gift_card->update_balance( 0 );
    			$gift_card->save();
    		}
    
    	}
    
    	add_filter( 'yith_ywgc_before_gift_card_generation_save', 'yith_ywgc_before_gift_card_generation_save_remove_balance' );
    }

    it should set to 0 the balance of the purchased gift cards.

    We hope it helps you.

    Have a good day.

    Thread Starter danielbmxd

    (@danielbmxd)

    Hi, thanks for the snippet

    Plugin Author YITHEMES

    (@yithemes)

    Hi there,

    You are welcome!

    It seems you have no more doubts so we will proceed to close the topic.
    If you enjoy our plugin, don’t forget to leave us a 5-star review, to support us and help our work.
    Thank you!

    Anyway, if you have any issues don’t hesitate to contact us.

    Have a great day!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘physical gift cards 0 value’ is closed to new replies.