Smarty Forum Index Smarty
WARNING: All discussion is moving to https://reddit.com/r/smarty, please go there! This forum will be closing soon.

Help with smarty template error

 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Smarty Forum Index -> Language: Spanish
View previous topic :: View next topic  
Author Message
danieldne0202
Smarty n00b


Joined: 20 Dec 2014
Posts: 1

PostPosted: Sat Dec 20, 2014 8:36 am    Post subject: Help with smarty template error Reply with quote

Hi, I'm no English very well.

I have a syntax error in a smarty template configureproduct.tpl on line 168, I wonder what's wrong ... Thanks in advance....

<script type="text/javascript" src="includes/jscript/jqueryui.js"></script>
<script type="text/javascript" src="templates/orderforms/{$carttpl}/js/main.js"></script>
<link rel="stylesheet" type="text/css" href="templates/orderforms/{$carttpl}/style.css" />
<link rel="stylesheet" type="text/css" href="includes/jscript/css/ui.all.css" />
{literal}
<script type="text/javascript">
$(document).ready(function(){
$("#purchase_country_iso").change(function(){

var url = $(location).attr('href');
var url1 = url.split("?");
var url2 = url1[0].split("/");
var url3 = url2[0]+"//"+ url2[2]
var country_iso = $(this).val();
$('#didwwcountry input[type=text]').val(country_iso) ;
$.ajax({
type: "POST",
cache: false,
url: url3+"/modules/servers/DIDww/DIDww_db.php?task=get_cities_by_country_iso&country_iso=" + country_iso,
success: function(data){
$('#cities_select').html(data);
}
});

});

$("#cities_select").change(function(){

var country_iso = $('#purchase_country_iso').val();
var city_prefix = $(this).val();
var resource1 = city_prefix.split("*");
var city = resource1[0];
var setup = resource1[1];
$('#didwwcity input[type=text]').val(city);
var city_text = $('#cities_select option:selected').text();
var resource = city_text.split("$");
var s1 =resource[0].trim()+"-"+country_iso+" $"+resource[1]+" + $"+setup+" USD Setup Fee";
$("#configid option:contains(" +s1+ ")").attr('selected', 'selected');
recalctotals();
});

});
</script>
{/literal}
<div id="order-modern">

<form id="orderfrm">

<input type="hidden" name="configure" value="true" />
<input type="hidden" name="i" value="{$i}" />

{if !$firstconfig || $firstconfig && !$domain}<h1>{$LANG.orderconfigure}</h1>{/if}

<div id="configproducterror" class="errorbox"></div>

<div class="prodconfigcol1">

{if $pricing.type eq "recurring"}
<h3>{$LANG.cartchoosecycle}</h3>
<div class="billingcycle">
<table width="100%" cellspacing="0" cellpadding="0" class="configtable">
{if $pricing.monthly}<tr><td class="radiofield"><input type="radio" name="billingcycle" id="cycle1" value="monthly"{if $billingcycle eq "monthly"} checked{/if} onclick="recalctotals()" /></td><td class="fieldarea"><label for="cycle1">{$pricing.monthly}</label></td></tr>{/if}
{if $pricing.quarterly}<tr><td class="radiofield"><input type="radio" name="billingcycle" id="cycle2" value="quarterly"{if $billingcycle eq "quarterly"} checked{/if} onclick="recalctotals()" /></td><td class="fieldarea"><label for="cycle2">{$pricing.quarterly}</label></td></tr>{/if}
{if $pricing.semiannually}<tr><td class="radiofield"><input type="radio" name="billingcycle" id="cycle3" value="semiannually"{if $billingcycle eq "semiannually"} checked{/if} onclick="recalctotals()" /></td><td class="fieldarea"><label for="cycle3">{$pricing.semiannually}</label></td></tr>{/if}
{if $pricing.annually}<tr><td class="radiofield"><input type="radio" name="billingcycle" id="cycle4" value="annually"{if $billingcycle eq "annually"} checked{/if} onclick="recalctotals()" /></td><td class="fieldarea"><label for="cycle4">{$pricing.annually}</label></td></tr>{/if}
{if $pricing.biennially}<tr><td class="radiofield"><input type="radio" name="billingcycle" id="cycle5" value="biennially"{if $billingcycle eq "biennially"} checked{/if} onclick="recalctotals()" /></td><td class="fieldarea"><label for="cycle5">{$pricing.biennially}</label></td></tr>{/if}
{if $pricing.triennially}<tr><td class="radiofield"><input type="radio" name="billingcycle" id="cycle6" value="triennially"{if $billingcycle eq "triennially"} checked{/if} onclick="recalctotals()" /></td><td class="fieldarea"><label for="cycle6">{$pricing.triennially}</label></td></tr>{/if}
</table>
</div>
{/if}

{* CUSTOMIZATION FOR DIDWW *}
{foreach from=$configurableoptions item=configoption}
{if $configoption.optionname eq "Regions"}
<h3>DIDWW {$LANG.orderconfigpackage}</h3>
<div class="configoptions">
<table width="100%" cellspacing="0" cellpadding="0" class="configtable">
<tr>
<td class="fieldlabel">Country</td>
<td class="fieldarea">
{php}

$query = "SELECT * FROM `cc_didww_countries`";
$result = mysql_query($query) or die("Mysql error : " . mysql_error());

{/php}
<select id="purchase_country_iso" name="purchase_country_iso" style="width: 255px;">
<option value="">Select country...</option>
{php} while( $data = mysql_fetch_assoc($result) ) {
{/php}

<option value="{php} echo $data['country_iso']; {/php}">{php} echo $data['country_name']; {/php}({php} echo $data['country_prefix']; {/php})</option>

{php} } {/php}
</select>
</td>
</tr>
<tr>
<td class="fieldlabel">City</td>
<td>
<select id="cities_select" name="purchase_city_prefix" style="width: 255px;">
<option value="">Select city...</option>
</select>
</td>
</tr>
</table>
</div>
{break}
{/if}
{/foreach}

{if $productinfo.type eq "server"}
<h3>{$LANG.cartconfigserver}</h3>
<div class="serverconfig">
<table width="100%" cellspacing="0" cellpadding="0" class="configtable">
<tr><td class="fieldlabel">{$LANG.serverhostname}:</td><td class="fieldarea"><input type="text" name="hostname" size="15" value="{$server.hostname}" /> eg. server1(.yourdomain.com)</td></tr>
<tr><td class="fieldlabel">{$LANG.serverns1prefix}:</td><td class="fieldarea"><input type="text" name="ns1prefix" size="10" value="{$server.ns1prefix}" /> eg. ns1(.yourdomain.com)</td></tr>
<tr><td class="fieldlabel">{$LANG.serverns2prefix}:</td><td class="fieldarea"><input type="text" name="ns2prefix" size="10" value="{$server.ns2prefix}" /> eg. ns2(.yourdomain.com)</td></tr>
<tr><td class="fieldlabel">{$LANG.serverrootpw}:</td><td class="fieldarea"><input type="password" name="rootpw" size="20" value="{$server.rootpw}" /></td></tr>
</table>
</div>
{/if}


{if $configurableoptions}
{foreach from=$configurableoptions item=configoption}
{if $configoption.optionname eq "Regions"}

{assign var="regions" value="true" nocache}

{else}
{assign var="regions" value="false" nocache}
{break}
{/if}
{/foreach}

{if $regions eq "true"}
<h3 style="display:none;">{$LANG.orderconfigpackage}</h3>
<div class="configoptions" style="display:none;">

{else}
<h3>{$LANG.orderconfigpackage}</h3>
<div class="configoptions">
{/if}

<table width="100%" cellspacing="0" cellpadding="0" class="configtable">
{foreach from=$configurableoptions item=configoption}
<script language="javascript">recalctotals();</script>
<tr {if $configoption.optionname eq "Regions"}style="display:none;"{/if}><td class="fieldlabel" >{$configoption.optionname}</td><td class="fieldarea">
{if $configoption.optiontype eq 1}

<select name="configoption[{$configoption.id}]" onchange="recalctotals()" id="configid">
{foreach key=num2 item=options from=$configoption.options}
<option value="{$options.id}"{if $configoption.selectedvalue eq $options.id} selected="selected"{/if}>{$options.name}</option>
{/foreach}
</select>
{elseif $configoption.optiontype eq 2}
{foreach key=num2 item=options from=$configoption.options}
<label><input type="radio" name="configoption[{$configoption.id}]" value="{$options.id}"{if $configoption.selectedvalue eq $options.id} checked="checked"{/if} onclick="recalctotals()" /> {$options.name}</label><br />
{/foreach}
{elseif $configoption.optiontype eq 3}
<label><input type="checkbox" name="configoption[{$configoption.id}]" value="1"{if $configoption.selectedqty} checked{/if} onclick="recalctotals()" /> {$configoption.options.0.name}</label>
{elseif $configoption.optiontype eq 4}
{if $configoption.qtymaximum}
{literal}
<script>
jQuery(function() {
{/literal}
var configid = '{$configoption.id}';
var configmin = {$configoption.qtyminimum};
var configmax = {$configoption.qtymaximum};
var configval = {if $configoption.selectedqty}{$configoption.selectedqty}{else}{$configoption.qtyminimum}{/if};
{literal}
jQuery("#slider"+configid).slider({
min: configmin,
max: configmax,
value: configval,
range: "min",
slide: function( event, ui ) {
jQuery("#confop"+configid).val( ui.value );
jQuery("#confoplabel"+configid).html( ui.value );
},
stop: function( event, ui ) {
recalctotals();
}
});
});
</script>
{/literal}
<table width="90%"><tr><td width="30" id="confoplabel{$configoption.id}" class="configoplabel">{if $configoption.selectedqty}{$configoption.selectedqty}{else}{$configoption.qtyminimum}{/if}</td><td><div id="slider{$configoption.id}"></div></td></tr></table>
<input type="hidden" name="configoption[{$configoption.id}]" id="confop{$configoption.id}" value="{if $configoption.selectedqty}{$configoption.selectedqty}{else}{$configoption.qtyminimum}{/if}" />
{else}
<input type="text" name="configoption[{$configoption.id}]" value="{$configoption.selectedqty}" size="5" onkeyup="recalctotals()" /> x {$configoption.options.0.name}
{/if}
{/if}
</td></tr>
{/foreach}
</table>
</div>
{/if}

{if $addons}
<h3>{$LANG.cartavailableaddons}</h3>
<div class="addons">
<table width="100%" cellspacing="0" cellpadding="0" class="configtable">
{foreach from=$addons item=addon}
<tr><td class="radiofield"><input type="checkbox" name="addons[{$addon.id}]" id="a{$addon.id}"{if $addon.status} checked{/if} onclick="recalctotals()" /></td><td class="fieldarea"><label for="a{$addon.id}"><strong>{$addon.name}</strong> - {$addon.pricing}<br />{$addon.description}</label></td></tr>
{/foreach}
</table>
</div>
{/if}

{if $customfields}
<h3>{$LANG.orderadditionalrequiredinfo}</h3>
<div class="customfields">
<table width="100%" cellspacing="0" cellpadding="0" class="configtable">
{foreach key=num item=customfield from=$customfields}
{if $customfield.name eq 'Country'}
<tr id="didwwcountry" style="display: none"><td class="fieldlabel">{$customfield.name}</td><td class="fieldarea">{$customfield.input} {$customfield.description}</td></tr>
{/if}
{if $customfield.name eq 'City'}
<tr id="didwwcity" style="display: none"><td class="fieldlabel">{$customfield.name}</td><td class="fieldarea">{$customfield.input} {$customfield.description}</td></tr>
{/if}

{if $customfield.name neq 'City' and $customfield.name neq 'Country'}
<tr><td class="fieldlabel">{$customfield.name}</td><td class="fieldarea">{$customfield.input} {$customfield.description}</td></tr>
{/if}
{/foreach}
</table>
</div>
{/if}

</div>
<div class="prodconfigcol2">

<h3>{$LANG.ordersummary}</h3>
<div class="ordersummary" id="producttotal"></div>

<div class="checkoutbuttons">
<input type="button" value="{$LANG.checkout} &raquo;" class="checkout" onclick="addtocart();" /><br />
<input type="button" value="{$LANG.continueshopping}" onclick="addtocart('{$productinfo.gid}');" /><br />
<input type="button" value="{$LANG.viewcart}" onclick="window.location='cart.php?a=view'" />
</div>

</div>
<div class="clear"></div>

<script language="javascript">recalctotals();</script>

</form>

</div>
Back to top
View user's profile Send private message
AnrDaemon
Administrator


Joined: 03 Dec 2012
Posts: 1785

PostPosted: Sat Dec 20, 2014 3:33 pm    Post subject: Re: Help with smarty template error Reply with quote

Only use {literal} when your template does not work as expected.
Back to top
View user's profile Send private message
Display posts from previous:   
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Smarty Forum Index -> Language: Spanish All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group
Protected by Anti-Spam ACP