How to Remove "Listing Categories" and "Listing Tags" from title?
I have been searching on this for hours but I'm unsuccessful
. When viewing category the title of the page adds "Listing Category" before the category name and for tags it shows "Listing Tags" before tag name. I am trying to remove both of these from title, the closest I have come is editing includes/core.php file and removing "Listing Category" and "Listing Tag" from the following code.
Code:
$labels = array(
'name' => __( 'Listing Categories', APP_TD ),
'singular_name' => __( 'Listing Category', APP_TD ),
'search_items' => __( 'Search Listing Categories', APP_TD ),
Code:
$labels = array(
'name' => __( 'Listing Tags', APP_TD ),
'singular_name' => __( 'Listing Tag', APP_TD ),
Removing these labels did remove them from title, but it caused a big problem, the categories and tag widgets in admin dashboard disappeared from Create New Listing and Edit Listing.
Is there any way to remove these titles?