Hi,
1. from the page HTML it looks like the category will be displayed there only if a post has the default WP “category” assigned, the WPAdverts do not have them as WPAdverts uses custom categories (custom taxonomy).
In this case i think it would be best to just hide the rectangle, you can do that by adding the code below in wp-admin / Appearance / Customize / Additional CSS panel
.single-advert .header-title.header-title-single-post {
padding-top: 4%;
}
.single-advert span.single-post-category {
display: none;
}
2. do you have the sharing buttons enabled for Adverts as explained here https://jetpack.com/support/sharing/?
If you do and they still do not show then please try adding the code below in your theme functions.php file and see if it helps
add_action( "init", function() {
remove_filter('the_content', 'adverts_the_content', 9999 );
add_filter('the_content', 'adverts_the_content', 10 );
}, 100 );
Hiding the rectangle worked but the jetpack sharing buttons are still not appearing on the adverts listing. Thank you for taking the time to help with this.
Frank
Hmm i testing the JetPack right now and the sharing buttons on Ad details pages seem to be working fine after adding the code.
Can you paste here a screenshot from /wp-admin/options-general.php?page=sharing so i can see how you have the sharing options configured?