Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save brunoalvarenga/7146535c3df8ff56ce752157163fa19f to your computer and use it in GitHub Desktop.
Save brunoalvarenga/7146535c3df8ff56ce752157163fa19f to your computer and use it in GitHub Desktop.
It will help you to solve the Dokan plugin dashboard related tables responsive issue.
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" ) );
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment