Hi,
your [adverts_categories] shortcode is wrapped inside a <pre> tag.
I am not sure how you have the home page created (as it varies from theme to theme) but you will need to edit it, ideally switch to some HTML edition mode and make sure the [adverts_categories] is not inside <pre> or <code> tag, if it is then remove the tags and save the page.
Hi, thank you for resolving my first issue, how about my second issue on this:
Also when I go to the individual item listed in WPAdverts, there is a title Blog-> Latest News on the top left instead of the WPAdverts categories/subcategories, can you also help with regards to this?
The page link that you can see this issue is:
http://punggolsengkang.com/advert/ibanez-s570wnf-electric-guitar/
The “Blog / Latest News” text is coming from your theme and you would need to change it in the theme or create a single-advert.php template file and remove it there, how to best do that depends on your theme mainly, so it would be best to ask your theme support: how to remove/replace the “Blog / Latest News” on the “advert” Custom Post Type page.
One suggestion i can offer is to hide this text on the Ad details page, adding the code below in wp-admin / Appearance / Customize / Additional CSS panel should do it
.single-advert #titlebar > .container > .row > .col-md-12 > h2,
.single-advert #titlebar > .container > .row > .col-md-12 > span {
display: none !important;
}