Multi Vendor Marketplace Plugin | WCFM Marketplace › Forums › WC Vendors › Questions
- This topic has 3 replies, 2 voices, and was last updated 6 years, 12 months ago by
WCFM Forum.
- AuthorPosts
- February 26, 2018 at 10:39 am #19449
admin15
ParticipantHi,
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
- February 26, 2018 at 11:27 am #19455
WCFM Forum
MemberHi,
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
- February 26, 2018 at 12:06 pm #19459
admin15
ParticipantI 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
- February 26, 2018 at 10:25 pm #19488
WCFM Forum
MemberHi,
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
- AuthorPosts
- The topic ‘Questions’ is closed to new replies.