Skip to content

Instantly share code, notes, and snippets.

@J-H-Mojumder
Created May 13, 2022 06:39
Show Gist options
  • Save J-H-Mojumder/5fe918a03f0335008ccd2895445c97a5 to your computer and use it in GitHub Desktop.
Save J-H-Mojumder/5fe918a03f0335008ccd2895445c97a5 to your computer and use it in GitHub Desktop.
Apply CSS on seller setup wizard.
<?php
CSS in seller setup wizard
function hide_email_from_seller_setup_wizard() {
?>
<style>
/* Add your own CSS here within the <style> tag*/
.dokan-seller-setup-form table tr:last-child{
display: none !important;
}
</style>
<?php
}
add_action( 'dokan_setup_wizard_styles', 'hide_email_from_seller_setup_wizard');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment