Cannot delete coupon

We're shifting our Forum based support to a more dedicated support system!

We'll be closing our Forum support from 10th June, 2020 and move to Email Support assistance.

  • If you are a WCFM premium add-ons user, contact us- here
  • Want to know more before buying our add-ons? Send Pre sale queries- here
  • If you are a WCFM free user, please open a support ticket at WordPress.org
  • For WCFM App related queries, reach us- here
From now the forum will be read-only!

Viewing 2 reply threads
  • Author
    Posts
    • #84285
      stickr.sg
      Participant

      Hi,

      It seems that there is no delete button for the coupon. Not found in coupon listing and coupon edit view. Please help thank you.

      Attachments:
      You must be logged in to view attached files.
    • #84488
      WCFM Forum
      Keymaster

      Hi,

      Well, this option comes with WCFM Ultimate.

      But you may add this code to your site to have this with WCFM Free –

      add_filter( 'wcfm_coupons_actions', function( $actions, $wcfm_coupons_single ) {
        	global $WCFM, $WCFMu;
        	
        	if( $wcfm_coupons_single->post_status == 'publish' ) {
        	  $actions .= ( current_user_can( 'delete_published_shop_coupons' ) ) ? '<a class="wcfm_coupon_delete wcfm-action-icon" href="#" data-couponid="' . $wcfm_coupons_single->ID . '"><span class="wcfmfa fa-trash-alt text_tip" data-tip="' . esc_attr__( 'Delete', 'wc-frontend-manager-ultimate' ) . '"></span></a>' : '';
        	} else {
        		$actions .= ( current_user_can( 'delete_shop_coupons' ) ) ? '<a class="wcfm_coupon_delete wcfm-action-icon" href="#" data-couponid="' . $wcfm_coupons_single->ID . '"><span class="wcfmfa fa-trash-alt text_tip" data-tip="' . esc_attr__( 'Delete', 'wc-frontend-manager-ultimate' ) . '"></span></a>' : '';
        	}
        	
        	return $actions;
        }, 50, 2 );

      Add this code to your child theme’s functions.php
      In case you do not have child theme then add code using this plugin – https://wordpress.org/plugins/code-snippets/

      Thank You

    • #84665
      stickr.sg
      Participant

      Thank you so much!

Viewing 2 reply threads
  • The topic ‘Cannot delete coupon’ is closed to new replies.