View Full Version : Thumbnails and custom field for phone and address
Paul69
02-05-2007, 01:34 PM
Hello Everyone,
I have 3 questions if some one can guide me in the right direction
1)I like to know how i can add thums in new 2.1 version of the script.
2)for seo do i really have to enter all the meta tag and keywords in all the catagories
3) can I add custom field where i can add following information
business name
url with thumbs
addresss linked to the mapquest
phone
fax
email
I like to use this script as phone book can any one can help me
Thanks
Paul
admin@buysellauctiononline.com
Dave Baker
02-05-2007, 04:14 PM
Hello Paul69,
1) Admin Panel » Configuration » Link Details page » Preview display by Thumbshots.org » enabled » "Save changes" button
2) Yes, you do.
3) Admin Panel » Manage Listing Fields » Add Field
For example:
Name: business name
English Title: businessname
Show On Pages: Suggest Listing/Listing Details
Required Field: No
Visible for admin only: No
Field Type: text
Field Length: 100
» "Add field" button
Paul69
02-05-2007, 05:44 PM
Thanks for the quick reply
i am trying to modify this script to use as phone book]
so far so good but i need little more info
here is some more questions
how to show listing URL as hyper link in link detail page
how many pictures can be loaded can i change no 1 to 4 or 4
Online Contact some time you see they show skype phone,aol and msn
so if user like to contact they can use that
in address section can i link to mapquest so it can show the map of the address
how can i enable to search by phone no
so if i enter the phone no in the search it will show me the link
Thanks
again for the help it is awsome script
Kudo to you guys
Thanks dave and simon and all rest of team
Dave Baker
02-05-2007, 08:35 PM
how to show listing URL as hyper link in link detail page
http://www.esyndicat.com/forum/showthread.php?t=8759&highlight=listing+Url
Post #2. For this made changes only in templates/yourTemplate/view-link.tpl
how many pictures can be loaded can i change no 1 to 4 or 4
Yes, of course. Just create 4 new fields with type image.
Online Contact some time you see they show skype phone,aol and msn
so if user like to contact they can use that
Go to Admin Panel » Manage Listing Fields » Add Field
Name: skype
Title: Skype
Show On Pages: Suggest Listing/Listing Details
Required Field: No
Visible for admin only: No
Field Type: text
Field Length: 100
» "Add Field" button
Create with method above field aol, msn
***Open templates/yourTemplate/view-link.tpl and find code(if you made above changes)***
{foreach from=$fields item=field}
{assign var="key" value=$field.name}
<tr>
{assign var="field_name" value='field_'|cat:$field.name}
<td><strong>{$lang.$field_name}:</strong></td>
<td>
{if $field.name eq 'url'}
***Replace with code***
{foreach from=$fields item=field}
{assign var="key" value=$field.name}
<tr>
{assign var="field_name" value='field_'|cat:$field.name}
<td><strong>{$lang.$field_name}:</strong></td>
<td>
{if $field.name eq 'skype'}
<a href="callto://{$link.$key}">{$link.$key}</a>
{elseif $field.name eq 'aol'}
<a href="aim:goIM?screenname={$link.$key}">$link.$key</a>
{elseif $field.name eq 'msn'}
<a href="msnim:add?contact={$link.$key}">Add me to your MSN Messenger contact list</a>
<a href="msnim:chat?contact={$link.$key}">Click here to chat</a>
<a href="msnim:voice?contact={$link.$key}">Start a Voice chat with me</a>
<a href="msnim:video?contact={$link.$key}">Start a Video chat with me</a>
{elseif $field.name eq 'url'}
***Save file***
how can i enable to search by phone no
Go to Admin Panel » Manage Listing Fields » Add Field
Name: phone
Title: Phone Number
Show On Pages: Suggest Listing/Listing Details
Required Field: No
Visible for admin only: No
Field Type: text
Field Length: 50
» "Add Field" button
***Open file Dir.php and find the function***
function getCause($aWhat, $aType)
***In the body of function find 2 similar line of code***
$sql .= "(CONCAT(`t1`.`url`,' ',`t1`.`title`,' ',`t1`.`description`) LIKE '%{$word}%') ";
***Replace each line with the following code***
$sql .= "(CONCAT(`t1`.`url`,' ',`t1`.`title`,' ',`t1`.`description`,' ',`t1`.`phone`) LIKE '%{$word}%') ";
***and find code***
$sql .= "WHERE (CONCAT(`t1`.`url`,' ',`t1`.`title`,' ',`t1`.`description`) LIKE '%{$aWhat}%') ";
***Replace with the following***
$sql .= "WHERE (CONCAT(`t1`.`url`,' ',`t1`.`title`,' ',`t1`.`description`,' ',`t1`.`phone`) LIKE '%{$aWhat}%') ";
***Save file***
Paul69
02-10-2007, 06:17 AM
http://www.esyndicat.com/forum/showthread.php?t=8759&highlight=listing+Url
Post #2. For this made changes only in templates/yourTemplate/view-link.tpl
Yes, of course. Just create 4 new fields with type image.
Go to Admin Panel » Manage Listing Fields » Add Field
Name: skype
Title: Skype
Show On Pages: Suggest Listing/Listing Details
Required Field: No
Visible for admin only: No
Field Type: text
Field Length: 100
» "Add Field" button
Create with method above field aol, msn
***Open templates/yourTemplate/view-link.tpl and find code(if you made above changes)***
{foreach from=$fields item=field}
{assign var="key" value=$field.name}
<tr>
{assign var="field_name" value='field_'|cat:$field.name}
<td><strong>{$lang.$field_name}:</strong></td>
<td>
{if $field.name eq 'url'}
***Replace with code***
{foreach from=$fields item=field}
{assign var="key" value=$field.name}
<tr>
{assign var="field_name" value='field_'|cat:$field.name}
<td><strong>{$lang.$field_name}:</strong></td>
<td>
{if $field.name eq 'skype'}
<a href="callto://{$link.$key}">{$link.$key}</a>
{elseif $field.name eq 'aol'}
<a href="aim:goIM?screenname={$link.$key}">$link.$key</a>
{elseif $field.name eq 'msn'}
<a href="msnim:add?contact={$link.$key}">Add me to your MSN Messenger contact list</a>
<a href="msnim:chat?contact={$link.$key}">Click here to chat</a>
<a href="msnim:voice?contact={$link.$key}">Start a Voice chat with me</a>
<a href="msnim:video?contact={$link.$key}">Start a Video chat with me</a>
{elseif $field.name eq 'url'}
***Save file***
Go to Admin Panel » Manage Listing Fields » Add Field
Name: phone
Title: Phone Number
Show On Pages: Suggest Listing/Listing Details
Required Field: No
Visible for admin only: No
Field Type: text
Field Length: 50
» "Add Field" button
***Open file Dir.php and find the function***
function getCause($aWhat, $aType)
***In the body of function find 2 similar line of code***
$sql .= "(CONCAT(`t1`.`url`,' ',`t1`.`title`,' ',`t1`.`description`) LIKE '%{$word}%') ";
***Replace each line with the following code***
$sql .= "(CONCAT(`t1`.`url`,' ',`t1`.`title`,' ',`t1`.`description`,' ',`t1`.`phone`) LIKE '%{$word}%') ";
***and find code***
$sql .= "WHERE (CONCAT(`t1`.`url`,' ',`t1`.`title`,' ',`t1`.`description`) LIKE '%{$aWhat}%') ";
***Replace with the following***
$sql .= "WHERE (CONCAT(`t1`.`url`,' ',`t1`.`title`,' ',`t1`.`description`,' ',`t1`.`phone`) LIKE '%{$aWhat}%') ";
***Save file***
Cannot find the above field in view link tpl porn star tpl
all i can find is similar one
{foreach from=$fields item=field}
{assign var="key" value=$field.name}
<tr>
{assign var="field_name" value='field_'|cat:$field.name}
<td><strong>{$lang.$field_name}:</strong></td>
<td>
{if $link.$key || ($link.$key eq '0')}
{if ($field.type eq 'text') || ($field.type eq 'textarea')}
{if $config.html_tags}
{$link.$key}
{else}
{text_html aText=$link.$key}
please advise
Sergey Ten
02-10-2007, 03:36 PM
Hello Paul,
Try this:
[ Open your view.tpl ]
[ Find code ( line) ]
{foreach from=$fields item=field}
{assign var="key" value=$field.name}
<tr>
{assign var="field_name" value='field_'|cat:$field.name}
<td><strong>{$lang.$field_name}:</strong></td>
<td>
{if $link.$key || ($link.$key eq '0')}
{if ($field.type eq 'text') || ($field.type eq 'textarea')}
{if $config.html_tags}
{$link.$key}
{else}
{text_html aText=$link.$key}
{/if}
{elseif $field.type eq 'checkbox'}
{array_to_lang values=$link.$key name=$field.name}
{elseif $field.type eq 'storage'}
<a href="{$config.base}{$config.dir}uploads/{$link.$key}">{$lang.download}</a>
{elseif $field.type eq 'image'}
<img src="{$config.base}{$config.dir}uploads/{$link.$key}" width="{$field.image_width}" height="{$field.image_height}" />
{elseif $field.type eq 'combo'}
{assign var="field_combo" value="field_"|cat:$field.name|cat:'_'|cat:$link.$key}
{$lang.$field_combo}
{elseif $field.type eq 'radio'}
{assign var="field_radio" value="field_"|cat:$field.name|cat:'_'|cat:$link.$key}
{$lang.$field_radio}
{/if}
{else}
{$lang.not_available}
{/if}
</td>
</tr>
{/foreach}
[ Replace with ]
{foreach from=$fields item=field}
{assign var="key" value=$field.name}
<tr>
{assign var="field_name" value='field_'|cat:$field.name}
<td><strong>{$lang.$field_name}:</strong></td>
<td>
{if $link.$key || ($link.$key eq '0')}
{if ($field.type eq 'text') || ($field.type eq 'textarea')}
{if $config.html_tags}
{$link.$key}
{else}
{text_html aText=$link.$key}
{/if}
{elseif $field.type eq 'checkbox'}
{array_to_lang values=$link.$key name=$field.name}
{elseif $field.type eq 'storage'}
<a href="{$config.base}{$config.dir}uploads/{$link.$key}">{$lang.download}</a>
{elseif $field.type eq 'image'}
<img src="{$config.base}{$config.dir}uploads/{$link.$key}" width="{$field.image_width}" height="{$field.image_height}" />
{elseif $field.type eq 'combo'}
{assign var="field_combo" value="field_"|cat:$field.name|cat:'_'|cat:$link.$key}
{$lang.$field_combo}
{elseif $field.type eq 'radio'}
{assign var="field_radio" value="field_"|cat:$field.name|cat:'_'|cat:$link.$key}
{$lang.$field_radio}
{elseif $field.name eq 'skype'}
<a href="callto://{$link.$key}">{$link.$key}</a>
{elseif $field.name eq 'aol'}
<a href="aim:goIM?screenname={$link.$key}">$link.$key</a>
{elseif $field.name eq 'msn'}
<a href="msnim:add?contact={$link.$key}">Add me to your MSN Messenger contact list</a>
<a href="msnim:chat?contact={$link.$key}">Click here to chat</a>
<a href="msnim:voice?contact={$link.$key}">Start a Voice chat with me</a>
<a href="msnim:video?contact={$link.$key}">Start a Video chat with me</a>
{/if}
{else}
{$lang.not_available}
{/if}
</td>
</tr>
{/foreach}
[ Save change ]
Dave Baker
02-11-2007, 11:11 PM
Cannot find the above field in view link tpl porn star tpl
all i can find is similar one
{foreach from=$fields item=field}
{assign var="key" value=$field.name}
<tr>
{assign var="field_name" value='field_'|cat:$field.name}
<td><strong>{$lang.$field_name}:</strong></td>
<td>
{if $link.$key || ($link.$key eq '0')}
{if ($field.type eq 'text') || ($field.type eq 'textarea')}
{if $config.html_tags}
{$link.$key}
{else}
{text_html aText=$link.$key}
because you did not apply modification in order to show listing URL as hyper link in link detail page (please see my post # 4). If you will implement it you will find necessary code.
Paul69
02-12-2007, 06:27 AM
Baker i working on this from morning but so far i canot find the code in dir php
please help
i can give u access to my ftp if you want
please advise
Thanks
Paul
Baker i working on this from morning but so far i canot find the code in dir php
Paul
For 2.1 version look in classes/DirLink.php
The code is below:
function getSearchCriterias($aWhat, $aType)
Paul69
02-12-2007, 06:22 PM
Category: Catagory name
Title: Title of listing
Listing URL: http://Domanin.com this link should be clickable in deatil link page
Description: Description
Business Name: TOPESCORTS
Fax No:: 604-644-6444
Phone No:: 604-644-6444
Address: 0000 street
City: City name can this be connected to mapquest
Country: Country
Image:
Image 2: only want image to show in a row with small description and can these image can be clickingble so someone can see bigger picture
Image 3:
Image 4:
MSN: Email
Yahoo: Yahoo id
ICQ: 1346464
AOL: aol id
SKYPE: skype id
Clicks: 0
Link added: Feb 12, 2007
I have seen some of the sites the yahoo,msn,skype and aol shows button where they can click and give u more options just like in php forum or other scrips
All the above fields should be searchable so any one can search by phone descirption etc
mapquest option willl be sweet
Hello Baker/Greg/michael/Ten/Vincent
I love this script and i hope that i can achieve this with your script
i was following the instructions as give by Dave Baker but may be i am very stupid of you can not follow instruction.
I tried few times
so far i have upload fresh copy of the script and
created the custom fields.
i have not make any changed to the template file yet so guys i am using
version 2.1 and porn star is the temlate
Help me for this
I am kind of shocked with the script functionality it is soo good may be i am pushing the limit but i am proud to be part of your member who use
esyndicat software
Thanks
Paul
admin@buysellauctiononline.com
version 2.1 and porn star is the temlate
I don't believe this template has been upgraded for 2.1 yet.
Paul69
02-13-2007, 08:01 AM
so if this template is not compatible then any other advise
template porn star matched some what i need
can some one give us list of 2.1 version compatible template
See here:
http://www.esyndicat.com/forum/about8960.html
I believe "template porn star" will be upgraded also.
Paul69
02-13-2007, 06:51 PM
Category: Catagory name
Title: Title of listing
Listing URL: http://Domanin.com this link should be clickable in deatil link page
Description: Description
Business Name: TOPESCORTS
Fax No:: 604-644-6444
Phone No:: 604-644-6444
Address: 0000 street
City: City name can this be connected to mapquest
Country: Country
Image:
Image 2: only want image to show in a row with small description and can these image can be clickingble so someone can see bigger picture
Image 3:
Image 4:
MSN: Email
Yahoo: Yahoo id
ICQ: 1346464
AOL: aol id
SKYPE: skype id
Clicks: 0
Link added: Feb 12, 2007
I have seen some of the sites the yahoo,msn,skype and aol shows button where they can click and give u more options just like in php forum or other scrips
All the above fields should be searchable so any one can search by phone descirption etc
mapquest option willl be sweet
Hello Baker/Greg/michael/Ten/Vincent
I love this script and i hope that i can achieve this with your script
i was following the instructions as give by Dave Baker but may be i am very stupid of you can not follow instruction.
I tried few times
so far i have upload fresh copy of the script and
created the custom fields.
i have not make any changed to the template file yet so guys i am using
version 2.1 and porn star is the temlate
Help me for this
I am kind of shocked with the script functionality it is soo good may be i am pushing the limit but i am proud to be part of your member who use
esyndicat software
Thanks
Paul
admin@buysellauctiononline.com
Dave can you help me
I have made all the custom field but i have not made any changes to template
now my question is
I was thinking porn star template will work just fine now i found out why i cannot find the code bcz it was not compatible with 2.1
now can i just upload another template like aqua and then modify the template file
or
i need to setup template to aqua
re create all the custom field
then make all the changes
please advise
In addition to can mapquest can be attached to the address custom field
and can all the images can show in one line
can these images can be link clickable like thumbs
Paul
Dave Baker
02-13-2007, 11:52 PM
Hello Paul69,
These modifications http://www.esyndicat.com/forum/post57663-4.html were intended for version Pro2.0. If you use Pro2.1 version you should make the following changes:
***Open templates/yourTemplate/view-link.tpl and find code***
{foreach from=$fields item=field}
{assign var="key" value=$field.name}
<tr>
{assign var="field_name" value='field_'|cat:$field.name}
<td><strong>{$lang.$field_name}:</strong></td>
<td>
{if $link.$key || ($link.$key eq '0')}
{if ($field.type eq 'text') || ($field.type eq 'textarea')}
{if $config.html_tags}
{$link.$key}
{else}
{$link.$key|escape:"html"}
{/if}
***Replace with***
{foreach from=$fields item=field}
{assign var="key" value=$field.name}
<tr>
{assign var="field_name" value='field_'|cat:$field.name}
<td><strong>{$lang.$field_name}:</strong></td>
<td>
{if $link.$key || ($link.$key eq '0')}
{if ($field.type eq 'text') || ($field.type eq 'textarea')}
{if $field_name eq "field_url"}
<a href="{$link.$key}">{$link.$key}</a>
{elseif $field.name eq 'skype'}
<a href="callto://{$link.$key}">{$link.$key}</a>
{elseif $field.name eq 'aol'}
<a href="aim:goIM?screenname={$link.$key}">{$link.$key}</a>
{elseif $field.name eq 'msn'}
<a href="msnim:add?contact={$link.$key}">Add me to your MSN Messenger contact list</a>
<a href="msnim:chat?contact={$link.$key}">Click here to chat</a>
<a href="msnim:voice?contact={$link.$key}">Start a Voice chat with me</a>
<a href="msnim:video?contact={$link.$key}">Start a Video chat with me</a>
{elseif $field.name eq 'yahoo'}
<a href = 'ymsgr:sendim?{$link.$key}'><img src="http://opi.yahoo.com/online?u={$link.$key}&m=g&t=2" border=0></a>
{elseif $field.name eq 'icq'}
<a href="http://web.icq.com/whitepages/message_me?uin={$link.$key}&action=message" target="_blank">{$link.$key}</a>
{elseif $config.html_tags}a
{$link.$key}
{else}
{$link.$key|escape:"html"}
{/if}
***Save file***
***Open includes/classes/DirLink.php and find a function***
function getSearchCriterias($aWhat, $aType)
***In the body of function find 2 similar line of code***
$sql .= "(CONCAT(`t1`.`url`,' ',`t1`.`title`,' ',`t1`.`description`) LIKE '%{$word}%') ";
***Replace each line with the following code***
$sql .= "(CONCAT(`t1`.`url`,' ',`t1`.`title`,' ',`t1`.`description`,' ',`t1`.`phoneno`) LIKE '%{$word}%') ";
***and find code***
$sql .= "WHERE (CONCAT(`t1`.`url`,' ',`t1`.`title`,' ',`t1`.`description`) LIKE '%{$aWhat}%') ";
***Replace with the following***
$sql .= "WHERE (CONCAT(`t1`.`url`,' ',`t1`.`title`,' ',`t1`.`description`,' ',`t1`.`phoneno`) LIKE '%{$aWhat}%') ";
***Save file***
I've made these changes with GreenLeaves template in your directory, because something wrong with your Aqua template. (It seems from Pro2.0 version). Anyway when you will change your template replace in your new template file templates/yourNewTemplate/view-link.tpl with file from templates/GreenLeaves/view-link.tpl
Paul69
02-14-2007, 08:30 PM
Thanks Baker for your help
This is getting better and better.
now 3 question before I launch this site
1> can we make these image show in one row and can we can make image clickable so if some one click on the image shows bigger picture.
2>Address field >>>> can i connect the image with Mapquest thingh so if some one looking for the address map they can
3 Is there is any way to get directory structure all the countrries and cities added to this
if some one from the directory choose not to fill the custom field can those field will be hidden
for example
some fills
business name
address
email
no msn >.>>. i like to see thse field in the link detail if the user choose fill the information if no information hide from the show ing
no yahoo
please advise
Thanks again for your help
Dave Baker
02-16-2007, 12:45 AM
1. ***Open templates/yourTemplate/view-link.tpl and find code***
{elseif $field.type eq 'image'}
<img src="{$config.base}{$config.dir}uploads/{$link.$key}" {* width="{$field.image_width}" height="{$field.image_height}"*} />
***Replace with the following code***
{elseif $field.type eq 'image'}
{if $field.name eq 'image1'}
{if $link.$image eq ""}<a href="{$config.base}{$config.dir}uploads/{$link.$image1}"><img src="{$config.base}{$config.dir}uploads/{$link.image1}" {* width="{$field.image_width}" height="{$field.image_height}"*} /></a>{/if}
{if $link.$image2 eq ""}<a href="{$config.base}{$config.dir}uploads/{$link.image2}"><img src="{$config.base}{$config.dir}uploads/{$link.image2}" {* width="{$field.image_width}" height="{$field.image_height}"*} /></a>{/if}
{if $link.$image3 eq ""}<a href="{$config.base}{$config.dir}uploads/{$link.image3}"><img src="{$config.base}{$config.dir}uploads/{$link.image3}" {* width="{$field.image_width}" height="{$field.image_height}"*} /></a>{/if}
{if $link.$image4 eq ""}<a href="{$config.base}{$config.dir}uploads/{$link.image4}"><img src="{$config.base}{$config.dir}uploads/{$link.image4}" {* width="{$field.image_width}" height="{$field.image_height}"*} /></a>{/if}
{/if}
First image field should has name image1
***In this file find code***
{assign var="field_name" value='field_'|cat:$field.name}
<td><strong>{$lang.$field_name}:</strong></td>
***Replace with the code***
{assign var="field_name" value='field_'|cat:$field.name}
{if ($field.name neq 'image2') AND ($field.name neq 'image3') AND ($field.name neq 'image4')}
<td><strong>{$lang.$field_name}:</strong></td>
{/if}
In order to not display name of these fields.
***Save file***
3. ***Open templates/yourTemplate/view-link.tpl and find code***
{foreach from=$fields item=field}
{assign var="key" value=$field.name}
***Below add the following***
{if $link.$key neq ""}
***In this code find code***
{elseif $field.type eq 'radio'}
{assign var="field_radio" value="field_"|cat:$field.name|cat:'_'|cat:$link.$key}
{$lang.$field_radio}
{/if}
{else}
{$lang.not_available}
{/if}
</td>
</tr>
***Below add***
{/if}
***Save file***
@ Paul69 I've made these changes in your template.
Paul69
02-16-2007, 06:51 AM
1. ***Open templates/yourTemplate/view-link.tpl and find code***
{elseif $field.type eq 'image'}
<img src="{$config.base}{$config.dir}uploads/{$link.$key}" {* width="{$field.image_width}" height="{$field.image_height}"*} />
***Replace with the following code***
{elseif $field.type eq 'image'}
{if $field.name eq 'image1'}
{if $link.$image eq ""}<a href="{$config.base}{$config.dir}uploads/{$link.$image1}"><img src="{$config.base}{$config.dir}uploads/{$link.image1}" {* width="{$field.image_width}" height="{$field.image_height}"*} /></a>{/if}
{if $link.$image2 eq ""}<a href="{$config.base}{$config.dir}uploads/{$link.image2}"><img src="{$config.base}{$config.dir}uploads/{$link.image2}" {* width="{$field.image_width}" height="{$field.image_height}"*} /></a>{/if}
{if $link.$image3 eq ""}<a href="{$config.base}{$config.dir}uploads/{$link.image3}"><img src="{$config.base}{$config.dir}uploads/{$link.image3}" {* width="{$field.image_width}" height="{$field.image_height}"*} /></a>{/if}
{if $link.$image4 eq ""}<a href="{$config.base}{$config.dir}uploads/{$link.image4}"><img src="{$config.base}{$config.dir}uploads/{$link.image4}" {* width="{$field.image_width}" height="{$field.image_height}"*} /></a>{/if}
{/if}
First image field should has name image1
***In this file find code***
{assign var="field_name" value='field_'|cat:$field.name}
<td><strong>{$lang.$field_name}:</strong></td>
***Replace with the code***
{assign var="field_name" value='field_'|cat:$field.name}
{if ($field.name neq 'image2') AND ($field.name neq 'image3') AND ($field.name neq 'image4')}
<td><strong>{$lang.$field_name}:</strong></td>
{/if}
In order to not display name of these fields.
***Save file***
3. ***Open templates/yourTemplate/view-link.tpl and find code***
{foreach from=$fields item=field}
{assign var="key" value=$field.name}
***Below add the following***
{if $link.$key neq ""}
***In this code find code***
{elseif $field.type eq 'radio'}
{assign var="field_radio" value="field_"|cat:$field.name|cat:'_'|cat:$link.$key}
{$lang.$field_radio}
{/if}
{else}
{$lang.not_available}
{/if}
</td>
</tr>
***Below add***
{/if}
***Save file***
@ Paul69 I've made these changes in your template.
You Know Guys I wannnnnna Screeeeeeem and like to share
:applause: Dave Rocks:applause:
I have achieved with this directory which i cannot never dream
Once again guys Thanks
Dave Baker
02-17-2007, 04:34 PM
I glad to hear it Paul!
Paul69
02-20-2007, 06:33 PM
Thanks for the Help Mr Baker,
version 2.1
I have 3 questions
1> how to display thumbnail left to the url
2>How can edit the out put of link display page like this
does not have to be like this but similar
http://phpyellow.com/demo/search_result.php
3>How can i link the address field with
mapquest
Please advise
Thanks
Paul
vBulletin® v3.7.0, Copyright ©2000-2009, Jelsoft Enterprises Ltd.