My client does not want the categories at the top of the blog and single post pages. Instead, they want them down next to the date where author would be if it were enabled. How can I do that?
Speaking of author, it is disabled but it still shows up on the category archive pages. Shouldn’t the archive pages follow the regular blog choices?
Also, the archive pages don’t give any indication that they are an archive page.
Hey draig,
To assist you with this issue, we’ll first need you to provide us with your URL. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.
Best regards,
Mike
There is a test page…
I do not want the categories above the title… otherwise I really like the ‘Elegant’ layout. I would like the categories to be down next to the date. How can I do that?
Hi,
Thank you for the info.
Please add this code in the functions.php file.
// move category
function ava_custom_script_mod(){
?>
<script>
(function($){
$('.blog-categories.minor-meta').insertAfter('.text-sep-date');
})(jQuery);
</script>
<?php
}
add_action('wp_footer', 'ava_custom_script_mod');
And the following code in the Quick CSS field.
.html_elegant-blog #top .post-entry .blog-categories {
text-align: center;
display: inline-block;
font-weight: bold;
position: relative;
}
Best regards,
Ismael