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
1) Dokan Plugin | |
dokan-fr_FR.po | |
dokan-fr_FR.mo | |
2) Dokan Live Search | |
dokan_ls-fr_FR.mo | |
dokan_ls-fr_FR.po | |
3) Dokan Paypal Adaptive | |
dokan-wc-pap-fr_FR.po |
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
$(document).ready(function() { | |
$('#selectAllBoxes').click( function(event) { | |
if( this.checked ) { | |
$('.checkBoxes').each(function() { | |
this.checked = true; | |
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
jQuery(function($) { | |
$(".dokan-dashboard-content .dokan-table").addClass("table"); | |
$( ".dokan-dashboard-content .dokan-table" ).before( "<div class='table-responsive'></div>" ); | |
$( ".dokan-dashboard-content .table-responsive" ).append( $( ".dokan-table" ) ); | |
}); |
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 | |
function remove_wc_password_meter() { | |
wp_dequeue_script( 'wc-password-strength-meter' ); | |
} | |
add_action( 'wp_print_scripts', 'remove_wc_password_meter', 100 ); |
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
// remove the filter | |
remove_filter( 'woocommerce_process_registration_errors', 'dokan_seller_registration_errors' ); | |
remove_filter( 'registration_errors', 'dokan_seller_registration_errors' ); | |
// New registration form erros handling | |
function dokan_update_seller_registration_errors( $error ) { | |
$allowed_roles = apply_filters( 'dokan_register_user_role', array( 'customer', 'seller' ) ); | |
// is the role name allowed or user is trying to manipulate? | |
if ( isset( $_POST['role'] ) && !in_array( $_POST['role'], $allowed_roles ) ) { |
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 | |
/** | |
* Dokan Seller registration form | |
* | |
* @since 2.4 | |
* | |
* @package dokan | |
*/ | |
?> |
NewerOlder