Tagged: enfold, Shortcodes, text editor
Is there any list available of all of the shortcodes with full syntax including the full width easy slider?
I’ve searched and searched and am unable to find a comprehensive list. They are also not available on the demo page from what I’ve been able to see. There are certain things I would like to do and switching between the advanced layout editor and the visual editor does NOT work. I’ve only accidentally been able to get it to work once, the rest of the time it just displays a blank page and when I switch back to the layout editor everything loads.
Some instances I am required to use a custom javascript snippet which is displayed as text only within a textbox inside the advanced layout editor. It will only work in the wordpress built in visual editor on text mode.
It would be nice to see the shortcodes on the demo page next to their appropriate items. I would like to be able to unleash the full potential of this template and the documentation is very limited in explanation along with video tutorials.
Hello eyeconictv!
No, we don’t have a full list but you can view all of the shortcodes with their possibilities in the theme files inside the config-templatebuilder>avia-shortcodes folder.
The main issue is that the shortcodes are not meant to be edited by themselves like traditional shortcodes. Each has its own pop up with the shortcode options which is mean to be the main interface for editing and outputting the items.
What may help you is enabling debug mode for the advanced layout editor which gives an output of the shortcodes being used. Add this to your functions.php to do so:
//set builder mode to debug
add_action('avia_builder_mode', "builder_set_debug");
function builder_set_debug()
{
return "debug";
}
Regards,
Devin