Style of Contact in MyStore

Change your online store into modern look with myStore eCommerce VirtueMart Joomla template - discussion forum.
GK User
Thu Aug 26, 2010 10:07 am
Hi
I want to rearrange order of elements address of Contacts in file:
/templates/gk_mystore/html/com_contact/contact/default.php
Code: Select all
<?php echo $this->loadTemplate('address'); ?>

Where do I find loadTemplate('address') ?
In Denmark we write addresses like this:
Zip: 6000 City: Kolding
Not linke this:
City: Kolding
Zip: 6000
I want to edit the <tr> and <td> tags, maybe to colspan="2"
Hope forum can help :-)

Best regards,
Henrik
User avatar
Expert Boarder

GK User
Thu Aug 26, 2010 10:58 pm
i can't help you much with this, but what i did was write the adress in the Street Adress like
{code]
streetname number
postcode city
[/code]

take a look here
http://wessels-dental.dk/index.php?opti ... Itemid=244
User avatar
Platinum Boarder

GK User
Fri Feb 25, 2011 1:11 pm
Hi,

Just wanted to follow up on this, since I found the solution - and then it's time to share (with othter Danes or people who have same needs as above).

Edit in core Joomla file:
/components/com_contact/views/contact/tmpl/default_address.php

1.png


This will check if zipcode or town is not null. If so, show it like: 6000 Kolding


2.png


Hope you can use it :)

Henrik

Code:
Code: Select all
<?php if ( $this->contact->postcode && $this->contact->params->get( 'show_postcode' ) || $this->contact->suburb && $this->contact->params->get( 'show_suburb' ) ) : ?>
<tr>
   <td valign="top">
   <?php if ( $this->contact->postcode && $this->contact->params->get( 'show_postcode' ) ) : ?>
      <?php echo $this->escape($this->contact->postcode); ?>
   <?php endif; ?>
   <?php if ( $this->contact->suburb && $this->contact->params->get( 'show_suburb' ) ) : ?>
      <?php echo $this->escape($this->contact->suburb); ?>
   <?php endif; ?>
   </td>
</tr>
<?php endif; ?>
User avatar
Expert Boarder

GK User
Tue Mar 01, 2011 7:25 pm
great flexus. i move this to mystore for others to easily find it
User avatar
Platinum Boarder


cron