To whom it may concern,
How can I set the posted date exactly after the title in the blogs archive page for each article ?
Regards
Hi,
Could you please a link to your page and a screenshot showing the changes you would like to make so we can make sure we understand clearly? :)
Regards,
Yigit
Hi,
I would like to have the blog posted date visible underneat the the category title in the blogs archive page as attached.
Can you guide me through please?
Hi,
Please create a new file on your child theme inside /shortcodes/ folder using this code – https://pastebin.com/P9EHiaMD and name it postslider.php. Then add following code to 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;
}
Best regards,
Yigit
Wheer can I find the shortcodes folder in the child theme please? I dont seem to have it
Hi,
Sorry for the confusion, I realized I made a typo. Please create a folder and name it “shortcodes” :)
Regards,
Yigit
no worries :)
It worked :)
Now how can I style it? I want to move the date further down. What is the class name of the date?
Hey,
Great :) Please add following code to Quick CSS field in Enfold theme options > General Styling tab
.html_elegant-blog #top .avia-content-slider .blog-categories {
margin-bottom: 30px;
}
You can use following selector to target it
#top .slide-meta-time.updated {
}
Cheers!
Yigit
perfect thank you so very much.
This can be closed :D