Listing categories

Discussion in 'GeoCraft WordPress Theme' started by tasburyjr, Jul 28, 2013.

  1. tasburyjr

    tasburyjr Member

    Joined:
    Jul 20, 2013
    Messages:
    44
    Likes Received:
    4
    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.
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    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

    2013-07-29_1245.png



    3.For your third issue

    Go to single-listing.php present in your theme directory and add the code given below

    Code:
    &nbsp;&nbsp;
    Sending image for reference

    2013-07-29_1623.png


    This will solve your issue.
     

Share This Page