View Single Post
  #136  
Old 02-13-2012, 06:13 AM
 
PhilJ PhilJ is offline
 

X-Guru
  
Join Date: Nov 2002
Posts: 4,094
 

Default Re: X-Cart Ability Template v4.4.x

1) Re. map, for a more precise marker location, in skin/ability/custom/addons/maps/maps.tpl

Replace...

Code:
Address : "{/literal}{$config.Company.location_zipcode}, {$config.Company.location_country}{literal}",

With...

Code:
Address : "your more exact location here",

You may be able to insert longitude/latitude values in their also. Might take a little experimenting with to get exactly right.

2) Re dropdown for static pages, in skin/ability/customer/main/pages.tpl

Replace...

Code:
<form style="float:right;"> <select onchange="select_go('parent',this,0)" class="chzn-select" style="width:180px;"> {foreach from=$pages_menu item=p name=page} {if $p.show_in_menu eq 'Y'} <option value="pages.php?pageid={$p.pageid}"{if $smarty.get.pageid eq $p.pageid} selected{/if}>{$p.title|amp}</option> {/if} {/foreach} </select> </form>

With...
Code:
&nbsp;
__________________
xcartmods.co.uk
Reply With Quote