Viewing 1 replies (of 1 total)
  • Plugin Author king-theme

    (@kingthemes)

    Hi Yanick!

    Yes, you can do that by adding this code bellow in your theme file function.php.

    add_action('init', 'your_init');
    
    function your_init(){
    
      global $kc;
    
      if( isset( $kc ) ){ // make sure that the KC plugin is actived
        $kc->remove_map('kc_row_inner');
        $kc->remove_map('kc_box');
        // ...etc
      }
    
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Remove all "Base Elements"’ is closed to new replies.