Gossamer Forum
Home : Products : Links 2.0 : Discussions :

Result display

Quote Reply
Result display
Hi!

I am trying to convert the links 2.0 script to be able to distribute my coupons and deals on my website, so far so good, but here is what I would like to be able to do:

Have each end every resulf displayed in its own litle table, having a pic displayed to the left, the title and description to the right, also I want to have a "order now" button, linking to the appropriate link for that product.

Is this possible ? wich file would i need to work on to do this ?

thank !
Quote Reply
Re: Result display In reply to
Uh...yea...You can format this in the link.html like the following:

Code:
<table border="0" width="80%" cellpadding="2" cellspacing="0">
<tr>
<td valign="top" width="33%">
<img src="<%Image%>">
</td>
<td valign="top" width="33%">
<%Title%><br>
<%if Description%>
<%Description%>
<%endif%>
</td>
<input type="button" value="Order Now" onClick="parent.location='URL'">
</td>
</tr></table>

Simple matter of HTML and adding the appropriate tags for fields in the links.def file.

Good luck!

Regards,


------------------
Eliot Lee....
Former Handle: Eliot
* Check Resource Center
* Search Forums
* Thinking out of the box (codes) is not only fun, but effective.
Quote Reply
Re: Result display In reply to
Hi

This is super! got it to display very easily, now i will just have to work on the appearance and graphics.

For the submit button, what are you refering to as " parent URL " ? I want it to go to the same URL as the one used for the title.

i had to remove the image tag, it would not work, I will have to add this in the links.def i guess, how would i do this ?

Thanks !

you can check out for yourself: http://www.couponpalace.com
Quote Reply
Re: Result display In reply to
Hi

This is super! got it to display very easily, now i will just have to work on the appearance and graphics.

For the submit button, what are you refering to as " parent URL " ? I want it to go to the same URL as the one used for the title.

i had to remove the image tag, it would not work, I will have to add this in the links.def i guess, how would i do this ?

Thanks !

you can check out for yourself: http://www.couponpalace.com
Quote Reply
Re: Result display In reply to
Well, you replace the <%Image%> tag with whatever Image field you have in your links.def file or put in a standard image, like the following:

Code:
<img src="/images/image.gif">

Code:
<input type="button" value="Order Now" onClick="parent.location='URL'">

REPLACE URL with the URL where your order form is located.

Best of luck!

Regards,


------------------
Eliot Lee....
Former Handle: Eliot
* Check Resource Center
* Search Forums
* Thinking out of the box (codes) is not only fun, but effective.
Quote Reply
Re: Result display In reply to
Just wanted to thank you for your help, it was really appreciated ! I got everything to work and it was much easier than what I was expecting!

thanks again!

Stephane
Quote Reply
Re: Result display In reply to
You're welcome.

Regards,

------------------
Eliot Lee....
Former Handle: Eliot
* Check Resource Center
* Search Forums
* Thinking out of the box (codes) is not only fun, but effective.