PDA

View Full Version : suggest link page


johnnyrcwp
04-25-2007, 12:29 AM
When you click suggest link, the suggest link page has this in the page:

You are going to suggest your link to the following category:
ROOT
Please make sure your link fits this category.
.....

Can the first line of text be changed to something like: "Before making your selection, please make sure that the suggested link is appropriate to the category." and can the line "Please make sure your link fits this category." be removed completely.


I'm using version 2.1.03

subseo
04-25-2007, 01:17 AM
I believe this can be, at least partially, changed through the Language Manager.
Just do a search for this phrase (eg. fits word), and change to anything you desire.

Sergey Ten
04-25-2007, 04:18 AM
Hello johnnyrcwp,

[ Open your template/your_template/suggest-link.tpl ]
[ Find code ]


<div class="box">
<div class="box-content">
<form method="post" name="suggest_link" enctype="multipart/form-data" id="suggest_link">

{if $config.sponsored_links AND $plans}
<div class="payment">
{foreach from=$plans item=plan name=plans_dsp}
<p class="field"><input type="radio" name="plan" value="{$plan.id}" id="p{$plan.id}"{if $smarty.post.plan eq $plan.id} checked{/if}/>
<label for="p{$plan.id}"><strong>{$plan.title} - {$config.currency_symbol}{$plan.cost}</strong></label>
<div style="font-size: 9px; color: #666; padding: 0 10px 5px 30px;">{$plan.description}</div>
</p>
{/foreach}
</div>
{/if}


[ After add code ]


<p>Before making your selection, please make sure that the suggested link is appropriate to the category.</p><br />


[ Save changes ]

johnnyrcwp
04-25-2007, 01:53 PM
Thanks Sergey Ten,
that works.

Sergey Ten
04-25-2007, 02:18 PM
You are welcome John :)