Step 1

Add the following code to your functions.php file.

// Add custom layout element via child theme
add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
function avia_include_shortcode_template($paths)
{
	$template_url = get_stylesheet_directory();
    array_unshift($paths, $template_url.'/shortcodes/');
    array_unshift($paths, $template_url.'/shortcodes/spiderfly-woocommerce/');
    array_unshift($paths, $template_url.'/shortcodes/spiderfly-elements/');
	return $paths;
}