Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #204435

    can the template be exported from inbuilt avia template builder , or where it is saved ?

    #204462

    Hey 7thflow!

    There’s no export feature but you can activate the debug mode to access the raw shortcode data. Afterwards you can use the debug window to copy/paste the raw shortcode data from one website to another. If you want to activate the debug mode add following php code into your child theme functions.php

    
    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    return "debug";
    }
    

    If you don’t use a child theme open up enfold/functions.php and insert the code below

    
    if(isset($avia_config['use_child_theme_functions_only'])) return;
    

    Cheers!
    Peter

    #223391

    Wonderfull :-)
    thanks

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Exporting avia template’ is closed to new replies.