Advertisement
Synagila

WooCommerce Vendors Pro dashboard tabs fix for Divi theme

Jun 23rd, 2016
355
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. // Add this code in your child theme's functions.php file
  2.  
  3. // Fix tabs in WooCommerce Pro dashboard
  4. // -------------------------------------
  5.  
  6. add_action( 'wcv_pro_before_dashboard', function() {
  7.   echo '<div class="et_smooth_scroll_disabled">';
  8. } );
  9.  
  10. add_action( 'wcv_pro_after_dashboard', function() {
  11.   echo '</div>';
  12. } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement