Remove Apply now button from specific category?

How can i Remove the Apply Now button from a specific category?

Unfortunately there’s no such UI option yet, but this may be possible with the code changes, let me know if you’re familiar with coding or have a developer for custom work - I can provide some general guidance.

THanks, I am familiar with coding, please provide guidance.

Sorry for the late reply.

Please try using the hivepress/v1/templates/listing_view_page/blocks filter hook to remove the message_send_link block from the template. The first argument of the callback is an array of template blocks, the second is the template object which allows fetching the listing this way:

$listing=$template->get_context('listing');

The you can check $listing->get_categories__id() which returns an array of IDs and remove the block, some examples here Search · user:hivepress templates · GitHub

Hope this helps

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.