To whom it may concern,
my blog layout is set to elegant. how can I place the date of the blog post on the archive page before the main title rather than below the excerpt ?
Regards
Hi,
Sorry for my late reply!
– Please add following code to bottom of Functions.php file of your 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/');
return $paths;
}
– Then go to /enfold/config-templatebuilder/avia-shortcodes/postslider/ and copy postslider.php file to your child theme inside /shortcodes/ folder and replace the content of the file with following – https://pastebin.com/NubTYvVq
Best regards,
Yigit
This can be closed :)