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
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> Also add same code after line number 297.
Yes. Reply button redirect into 'Contact This Person' lead capture form inside the corresponding Ad.. and it must open in new window..
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.
Yes Its Done. Thanks Nitesh.. How can make this 'Reply' into Bold Font or How can I change Font color?
Hello, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .reply a { color: red; font-weight: bold; }