This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Remove "Become a vendor" button from customers account | |
if(class_exists('Dokan_Pro')) { | |
remove_action( 'woocommerce_after_my_account', array( Dokan_Pro::init(), 'dokan_account_migration_button' ) ); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//Remove shipping, tax & attributes from product edit page | |
if(class_exists('Dokan_Pro_Products')) { | |
remove_action( 'dokan_product_edit_after_inventory_variants', array( Dokan_Pro_Products::init(), 'load_shipping_tax_content' ), 10, 2 ); | |
remove_action( 'dokan_product_edit_after_inventory_variants', array( Dokan_Pro_Products::init(), 'load_variations_content' ), 20, 2 ); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//Remove progressbar from vendor dashboard | |
if(class_exists('Dokan_Pro_Dashboard')) { | |
remove_action( 'dokan_dashboard_before_widgets', array( Dokan_Pro_Dashboard::init(), 'show_profile_progressbar' ), 10 ); | |
} | |
if(class_exists('Dokan_Pro_Settings')) { | |
remove_action( 'dokan_settings_load_ajax_response', array( Dokan_Pro_Settings::init(), 'render_pro_settings_load_progressbar' ), 25 ); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//Remove Geolocation map from shop page with the help of a Dokan function | |
dokan_remove_hook_for_anonymous_class( 'woocommerce_before_shop_loop', 'Dokan_Geolocation_Product_View', 'before_shop_loop', 10 ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//Remove resources tab under Vendor Dashboard > Booking menu | |
add_filter('dokan_booking_nav_titles', function ($bookings) { | |
unset($bookings['resources']); | |
return $bookings; | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Remove the default Dokan Vendor name from cart or checkout page | |
remove_filter( 'woocommerce_get_item_data', 'dokan_product_seller_info', 10 ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* The filter you want to use is dokan_get_dashboard_nav() / dokan_get_dashboard_settings_nav() | |
* Place these codes under your themes functions.php | |
*/ | |
/** | |
* Remove a menu link from vendor dashboard | |
* @param array $urls |
NewerOlder