Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #807596

    I installed my Enfold theme and built my home with Advanced Layout Editor, but if I want to switch to the Default Editor to do everything I did, I would like to be able to insert a Shortcode into my home, how can I do it?

    #807728

    Hey fabiomagliozzi,
    If you built your page with the Advanced Layout Editor, you should keep using it to make changes.
    But you can enable debug mode to reveal the shortcodes that make up the advanced layout editor. You just need to be careful editing the field and its contents because its directly saved in the database and if the data gets corrupted from a mistype or something like that it may not be recoverable.
    Add the following to your functions.php to enable it:

    //set advanced layout editor to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    	return "debug";
    }

    Best regards,
    Mike

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.