|
|
#1 |
|
Senior Member
Join Date: Mar 2006
Location: Best city in the World � Calgary, Canada
Posts: 466
Rep Power: 23 ![]() |
I have a Featured Ad Package that includes Featured and Bold options. After choosing the package customers going to the page where they fill up the listing info. On the same page located �Extra Options� table. Each extra option in that table have drop down field with 2 options: �No Thanks� on the first place and �Yes(+$0.00)� on the second place.
Here is my problem. Customers already choose Featured Ad Package that includes Featured and Bold options so they expect that these options already included. Is it possible to remove �No Thanks� from drop down field? or at least to put �Yes(+$0.00)�on the first place?
__________________
Thanks, Sergey Bargain Finder in Calgary, Alberta, Canada. Calgary Business Directory V3.1.10 Dev - Calgary Classifieds V3.1.10 Dev - Calgary Real Estate V3.1.10 Dev - Calgary Used Cars V3.1.10 Dev - Calgary Rent V3.1.10 Dev - Calgary Dating V3.1.5 Dev A website without well-done Internet Marketing and Search Engine Optimization is as good as non-existent.
|
|
|
|
|
#2 |
|
Moderator
|
Yes, open templates/default/checkout/step3.tpl.php
find: HTML Code:
{if $featured=="Y"}
<tr>
<td class="formleft">{$smarty.const.LANG_ADD_FEATURED}{$smarty.const.LANG_COLON}</td>
<td class="formright">
<select name="featured">
<option value="N">{$smarty.const.LANG_NO_THANKS}</option>
<option value="Y">{$smarty.const.LANG_YES} (+{$cFeaturedPrice})</option>
</select>
</td>
</tr>
{/if}
{if $cBold=="Y"}
<tr>
<td class="formleft">{$smarty.const.LANG_ADD_BOLD}{$smarty.const.LANG_COLON}</td>
<td class="formright">
<select name="bold">
<option value="N">{$smarty.const.LANG_NO_THANKS}</option>
<option value="Y">{$smarty.const.LANG_YES} (+{$boldPrice})</option>
</select>
</td>
</tr>
{/if}
from: HTML Code:
<select name="featured"> <option value="N">{$smarty.const.LANG_NO_THANKS}</option> <option value="Y">{$smarty.const.LANG_YES} (+{$cFeaturedPrice})</option> </select> HTML Code:
<select name="featured"> <option value="Y">{$smarty.const.LANG_YES}(+{$cFeaturedPrice})</option> <option value="N">{$smarty.const.LANG_NO_THANKS}</option> </select> |
|
|
|
|
#3 |
|
Senior Member
|
John,
looks like you just invert the statements...? if so would you just invert for bold and highlighted as well? On another thought John...or anyone for that matter.. higher up on that same page the options start with 1) title (which is associated with the Title to the AD) 2) price (which shows the user's asking price-also shown in the ad) with reference to the price...I am of the understanding that commas or decimals should not be used in this field? Is that right? and if that's correct ... How can I edit the text to the left of the field so that users are made aware of this fact? I tried english.php and that just changes the word "price" throughout the site. thanks in advance! gsmith Last edited by garysmith; 04-09-2006 at 02:52 PM. |
|
|
|
|
#4 |
|
Moderator
|
That is correct Gary, you'd do the same for each of the extra select boxes.
Gary, the file you want to edit would be templates/fsbo/checkout/step3.tpl.php, you can add in next to: Code:
td class="formleft">{if $checkoutRequirePrice==Y}{$smarty.const.LANG_STAR} {/if}{$smarty.const.LANG_PRICE}(10000){$smarty.const.LANG_COLON}</td>
|
|
|
|
|
#5 | |
|
Senior Member
|
Quote:
Now...I am sorry I am not following the above...please be more specific? I can add something like: Price: (Ex:34567=34,567.00) Now where would I post this text change again? gsmith |
|
|
|
|
|
#6 |
|
Moderator
|
Same file (step3.tpl.php), find:
HTML Code:
td class="formleft">{if $checkoutRequirePrice==Y}{$smarty.const.LANG_STAR} {/if}{$smarty.const.LANG_PRICE}(10000){$smarty.const.LANG_COLON}</td>
HTML Code:
td class="formleft">{if $checkoutRequirePrice==Y}{$smarty.const.LANG_STAR} {/if}{$smarty.const.LANG_PRICE}(Ex:34567=34,567.00){$smarty.const.LANG_COLON}</td>
|
|
|
|
|
#7 | |
|
Senior Member
|
Quote:
? Did i edit the wrong line? I swear I only replaced the exact line you called out! EErrrhhh! gsmith p.s. See above code...I changed it back to the (10000) you had in for test purposes... |
|
|
|
|
|
#8 |
|
Moderator
|
No, you edited the wrong line:
HTML Code:
{if $checkoutDisPrice=="Y"}
<tr>
<td class="formleft">{if $checkoutRequirePrice==Y}{$smarty.const.LANG_STAR} {/if}{$smarty.const.LANG_PRICE}PUT YOUR EDIT HERE(EX 10000=10,000.00){$smarty.const.LANG_COLON}</td>
<td class="formright">{$currency_symbol}<input name="price" type="text" size="{$smarty.const.FIELD_SIZE}" /></td>
</tr>
{/if}
Code:
<tr>
<td class="formstrip" colspan="2">{$smarty.const.PLEASE_ENTER_AD_DETAILS}</td>
</tr>
<tr>
<td class="formleft">{$smarty.const.LANG_STAR} {$smarty.const.LANG_TITLE}{$smarty.const.LANG_COLON}</td>
<td class="formright"><input name="title" type="text" size="{$smarty.const.FIELD_SIZE}" onKeyDown="textTitleCounter(this.form.title,this.form.remLentext,{$cTitleCharacters});" onKeyUp="textTitleCounter(this.form.title,this.form.remLentext,{$cTitleCharacters});" /><br /><span class="characters">{$smarty.const.LANG_CHARACTERS_REMAINING}: <span id="cCharTitleLeft" class="characters"></span>/{$cTitleCharacters}</span></td>
</tr>
{if $checkoutDisPrice=="Y"}
<tr>
<td class="formleft">{if $checkoutRequirePrice==Y}{$smarty.const.LANG_STAR} {/if}{$smarty.const.LANG_PRICE} PUT YOUR EDIT HERE(EX 10000=10,000.00) {$smarty.const.LANG_COLON}</td>
<td class="formright">{$currency_symbol}<input name="price" type="text" size="{$smarty.const.FIELD_SIZE}" /></td>
</tr>
{/if}
|
|
|
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Price checking by Listing Package | Bucketman | v3.0 Questions & Support | 25 | 12-03-2007 04:48 AM |
| Membership Extra Options | CB | v3.1 Questions & Support | 2 | 07-22-2006 02:16 PM |
| Seperating ads in Horizontal Featured from Vertical | GSP | v3.1 Questions & Support | 19 | 05-04-2006 03:51 PM |
| Charging for extra photos | Bucketman | v3.0 Questions & Support | 3 | 04-04-2006 01:50 PM |
| Package Problems... | dawyatt | v3.0 Questions & Support | 27 | 03-30-2006 08:09 AM |