I have three questions with listing categories. 1) on the front end when a user selects their categories, how do I change the word "Category"? It isn't in the text domain file. 2) also on the front end, where users select categories, How can I remove the "select all" option? 3) on front end where the categories are displayed on the "listing pages" how can I add a space between each category? Right now it looks odd when two or more categories are selected.
Hello, 1.For your first issue Go to library > text_domains > dashboard_path.php present in your theme directory and change text from line no. 42. 2.For your second issue Go to library > front_end > listing_submit_form.php present in your theme directory and remove the code given below Code: <li><label><input type="checkbox" name="selectall" id="selectall" class="checkbox" onclick="displaychk_frm();" /></label><?php echo SLT_ALL; ?></li> Sending image for reference 3.For your third issue Go to single-listing.php present in your theme directory and add the code given below Code: Sending image for reference This will solve your issue.