Advertisement
Aurangajeb

Hide seller setup wizard button using custom css with the function

Apr 30th, 2021
1,292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.48 KB | None | 0 0
  1. function seller_setup_wizard_custom(){
  2.     ?>
  3.     <style>
  4.  
  5.     a.button.button-large.not-right-now-btn.dokan-btn-theme {
  6.     display: none !important;
  7. }
  8. a.button.button-large.button-next.store-step-skip-btn.dokan-btn-theme {
  9.     display: none !important;
  10. }
  11. a.button.button-large.button-next.payment-step-skip-btn.dokan-btn-theme {
  12.     display: none !important;
  13. }  
  14.        
  15.     </style>  
  16.     <?php
  17. }
  18.  
  19. add_action( 'dokan_setup_wizard_styles', 'seller_setup_wizard_custom' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement