Awesome theme!
I need to add a target blank on the images I inserted on a page. I built up the page using the advanced layout feature, but when I switch back to the default text editor nothing shows up in the window.
Bump!
Hi,
You can upgrade to Enfold 1.7. You will be able to switch from Advance Layout Editor to the default editor without losing the shortcodes.
You can use the Text Block element to manually add the code for your images.
<a href="SITE URL" target="_blank"><img src="IMG URL"></a>
Regards,
Ismael
Thank you for the reply!!
I am on version 1.7. When I switch to the normal text editor mode from the advanced layout editor I get a blank block.
Anyone? Please help!!
Hi,
Please switch your Avia Builder to debug mode. Open functions.php, find this code
if(isset($avia_config['use_child_theme_functions_only'])) return;
Below, add this code
//set builder mode to debug
add_action('avia_builder_mode', "builder_set_debug");
function builder_set_debug()
{
return "debug";
}
This will render the actual shortcode below the Advance Layout Editor.
Regards,
Ismael
Awesome!! Thank you!! this worked!!