Tags

Discussion in 'GeoCraft WordPress Theme' started by spoonboy90, Jun 20, 2013.

Thread Status:
Not open for further replies.
  1. spoonboy90

    spoonboy90 Active Member

    Joined:
    Dec 20, 2012
    Messages:
    289
    Likes Received:
    28
    Location:
    Stoke-on-Trent, Staffordshire. UK
    Should Tags be visible somewhere on the single listings page or are they just a background thing because they don't seem to show up anywhere for me?
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Go to

    Appearance > Widget

    Drag Tag Cloud widget and drop it in the Listing Widget Area.

    This will solve your issue.
     
  3. spoonboy90

    spoonboy90 Active Member

    Joined:
    Dec 20, 2012
    Messages:
    289
    Likes Received:
    28
    Location:
    Stoke-on-Trent, Staffordshire. UK
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Please provide the following information listed below.

    Thread Link:
    Your Website URL:
    WordPress Username:
    WordPress Password:

    Send this information on our email at [email protected]
     
  5. spoonboy90

    spoonboy90 Active Member

    Joined:
    Dec 20, 2012
    Messages:
    289
    Likes Received:
    28
    Location:
    Stoke-on-Trent, Staffordshire. UK
    Email Sent
     
  6. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Issue resolved, Please check your website.
     
  7. spoonboy90

    spoonboy90 Active Member

    Joined:
    Dec 20, 2012
    Messages:
    289
    Likes Received:
    28
    Location:
    Stoke-on-Trent, Staffordshire. UK
    Ok so now I see the tags but I see all tags, I was expecting them to only show the tags the customer has entered for their listing? and also it displays the tags on free listings even when the option is not checked!
     
  8. jumpgroove

    jumpgroove New Member

    Joined:
    Jun 17, 2013
    Messages:
    4
    Likes Received:
    0
    I would love to have this too! One each listing (just like blogs) we should be able to add tags for that listing. Each listing page should show it's tags.

    I tried to add the following to the listing template, but it didn't d anything:
    <p><?php the_tags(); ?></p>
     
  9. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    For this go to the
    Appearance > Editor > single-listing.php
    and add code given below as shown in the image given below.

    Code:
    Listing tags:<?php $p_categories = get_the_term_list($post->ID, CUSTOM_TAG_TYPE, '', ',', ''); echo $p_categories;?>
    listing_tags.png
     
    jsal2 likes this.
  10. spoonboy90

    spoonboy90 Active Member

    Joined:
    Dec 20, 2012
    Messages:
    289
    Likes Received:
    28
    Location:
    Stoke-on-Trent, Staffordshire. UK
    Great work Nitesh,

    Is it possible to place this on the right hand side at the bottom of the section where telephone number, email address, web site etc etc is rather than under the images?
     
  11. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    Open "single-listing.php" and search "</table>" and add code given below as shown in the image.

    Code:
    <img style="width:10px;"src="<?php echo get_template_directory_uri(); ?>/images/website.png">&nbsp;&nbsp;Listing tags: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;  &nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;  &nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;<?php $p_categories = get_the_term_list($post->ID, CUSTOM_TAG_TYPE, '', ',', ''); echo $p_categories;?>
    custom_tags.png
     
    jsal2 likes this.
  12. spoonboy90

    spoonboy90 Active Member

    Joined:
    Dec 20, 2012
    Messages:
    289
    Likes Received:
    28
    Location:
    Stoke-on-Trent, Staffordshire. UK
    Hi Nitesh,

    Thanks for that, looked a bit scrappy so I added this code instead in the same place and its spot on now for anyone who needs it!

    Code:
    <tr>
    <td class="label default">Listing Tags</td>
    <td><?php $p_categories = get_the_term_list($post->ID, CUSTOM_TAG_TYPE, '', ',', ''); echo $p_categories;?></td>
    </tr>
     
    jsal2 likes this.
Thread Status:
Not open for further replies.

Share This Page