Hi,
Can I change h3 in IconBox to h2
Hey allen,
Please try these following steps to replace the Iconboxes H3 tag.
1. Create folder within your enfold-child folder: /shortcodes/
2. Copy iconbox.php to the above directory
3. Edit the H3 tag in iconbox.php with:
<h2 class='iconbox_content_title' $markup>".$title."</h2>";
4. Add this code to the end of your child theme functions.php file.
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/');
return $paths;
}
Best regards,
Mike