Questions

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 3 reply threads
  • Author
    Posts
    • #19449
      admin15
      Participant

      Hi,

      A few questions:

      1. Can we add a new section on the vendor’s menu in the dashboard? I mean add a link with custom redirection. For example it can be placed under Reports.
      2. We are using this plugin: https://wordpress.org/plugins/affiliate-coupons/ which allows the administrator add affiliate coupons that redirect to the added link when clicked. Can we add this plugin’s capabilities on the vendor dashboard? Or is there any other similar coupon mechanism that your plugin is supported with?

      Thank you

    • #19455
      WCFM Forum
      Keymaster

      Hi,

      It’s absolutely possible to add new menu items in WCFM dashboard and other sections as well.

      Please know me exactly where you want to have this, I will guide you according to that.

      WCFM no yet works any such coupon mechanism.

      Thank You

    • #19459
      admin15
      Participant

      I would like to add a link below “Orders” named “Check Voucher Codes”. It should redirect to http://netinfoweb.net/direct_deals/elegchos-kouponion/.

      You can guide me on how to do it.

      Thanks a lot

    • #19488
      WCFM Forum
      Keymaster

      Hi,

      Here is your custom code for the purpose –

      function voucher_wcfm_menus( $wcfm_menus ) {
        $voucher_menus = array( 
      						 'wcfm-elegchos-kouponion' => array('label'  => __( 'Voucher Codes', 'wc-frontend-manager'),
      																								'url'       => 'http://netinfoweb.net/direct_deals/elegchos-kouponion/',
      																								'icon'      => 'arrow-circle-up',
      																								'priority'  => 37
      																								)
      						);
        
        $wcfm_menus = array_merge( $wcfm_menus, $voucher_menus );
        return $wcfm_menus;
      }
      add_filter( 'wcfm_menus', 'voucher_wcfm_menus' );

      Please know me is this works for you or not!

      Thank You

Viewing 3 reply threads
  • The topic ‘Questions’ is closed to new replies.