Thanks it works.
I found that all the strings appear in functions.php
Thanks, it did work for the search icon.
But I tired to replace the Go to top icon but it doesn’t replace it.
// change default icons
add_filter('avf_default_icons','avia_replace_standard_icon', 10, 1);
function avia_replace_standard_icon($icons)
{
$icons['search'] = array( 'font' =>'myicons', 'icon' => 'ue803'); // works
$icons['up-open'] = array( 'font' =>'myicons', 'icon' => 'ue801'); // doesn't work
return $icons;
}
Any idea?
Thank you
Thanks, works flawlessly!
One more question, if I want to add another path, how I add it?
Hey
The code you posted didn’t work – one small thing – I had to set:
$child_path = array(dirname(__FILE__) .”/config-templatebuilder/avia-shortcodes/”);
instead of
$child_path = array(dirname(__FILE__) .”/avia-shortcodes/”);
Now it works
Thanks!