Hello,
I created a Facebook icon using the avia content builder. Is there any way to add this to the widget area or can you recommend a plugin that will give me the same simple functionality. Thanks!
Hey robertwood04!
Thank you for using the theme.
Just copy the shortcode then go to Appearance > Widgets. Place the shortcode on a Text widget.
Regards,
Ismael
I used the icon content element to create it but I don’t see a short code
Hi!
If you don’t want to recreate it on a post or page using the shortcode wand. Please switch your advance layout builder to debug mode. Edit function.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";
}
You will be able to see the actual shortcode below the builder.
Regards,
Ismael
I didn’t realize you could switch and I didn’t realize the smart wand existed. Incredible thanks!