How to Add 'Reply' button on Homepage Ads list?

Discussion in 'ClassiCraft WordPress Theme' started by dailypaymentjobs, Aug 15, 2013.

  1. dailypaymentjobs

    dailypaymentjobs New Member

    Joined:
    May 15, 2013
    Messages:
    19
    Likes Received:
    0
    Hello Team,
    How are you? I have one suggestion about that I have to Add 'Reply' button link on Homepage Ads list to contact Ads Poster directly. If anyone click that button then it should be open in new window. This will be very helpful for visitors.

    My desired option screenshot enclose here
    [​IMG]
     
  2. Nitesh

    Nitesh Support Staff

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

    It is possible to add reply button there but i am not getting where you want to redirect it.
    For adding reply button open index.php file and add code given below as shown in the image.

    Code:
    <li style="float:right; "class="reply"><a href="<?php the_permalink() ?>"<b>Reply</b></a></li>
    indexphp_001.png


    Also add same code after line number 297.
     
  3. dailypaymentjobs

    dailypaymentjobs New Member

    Joined:
    May 15, 2013
    Messages:
    19
    Likes Received:
    0
    Yes. Reply button redirect into 'Contact This Person' lead capture form inside the corresponding Ad.. and it must open in new window..
     
  4. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Ok, To open reply in a new tab and to redirect it to related ad page. Paste code given below at the area shown in the image above.

    Code:
    <li style="float:right; "class="reply"><a target="_blank" href="<?php the_permalink() ?>"<b>Reply</b></a></li>
    It will work.
     
  5. dailypaymentjobs

    dailypaymentjobs New Member

    Joined:
    May 15, 2013
    Messages:
    19
    Likes Received:
    0
    Yes Its Done. Thanks Nitesh.. How can make this 'Reply' into Bold Font or How can I change Font color?
     
  6. Gourav

    Gourav Support Staff

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

    Do let us know your website link.
     
  7. dailypaymentjobs

    dailypaymentjobs New Member

    Joined:
    May 15, 2013
    Messages:
    19
    Likes Received:
    0
    Yes Gourav.. I am going to building one professional Classified website namely www.Greela.com
     
  8. Gourav

    Gourav Support Staff

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

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS


    Code:
    .reply a {
    color: red;
    font-weight: bold;
    }
     

Share This Page