Nothing Found
Sorry, no posts matched your criteria
//Write custom code here. Best practice to try and make it custom plugin first. // Hook into Avia Layout Builder shortcodes so future theme upgrades don't overwrite. 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; } // Allow upload of text files so the enfold theme imports can work properly! function my_myme_types($mime_types){ $mime_types['txt'] = 'txt'; //Adding txt extension return $mime_types; } add_filter('upload_mimes', 'my_myme_types', 1, 1); ?>