Skip to content

Instantly share code, notes, and snippets.

@mahbubme
Created March 10, 2016 07:44
Show Gist options
  • Save mahbubme/6e2b20399b1cc9e0207e to your computer and use it in GitHub Desktop.
Save mahbubme/6e2b20399b1cc9e0207e 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