Page 1 of 1
How i can remove phone and address from contact us
Posted: Wed Mar 24, 2010 1:40 pm
by shahram
Hi all how i can remove phone and address from the contact us page i remove some code from catalog>view>default>theme>templates>information>contact but after that my contact us page don`t work no one could send me message from contact us page can some please help me with Thank You
Re: How i can remove phone and address from contact us
Posted: Wed Mar 24, 2010 2:13 pm
by scot80
The Shopversion would be helpful to show you the code to remove.
In 1.4. it should be:
Code: Select all
<div class="content">
<div style="display: inline-block; width: 100%;">
<div style="float: left; display: inline-block; width: 50%;"><b><?php echo $text_address; ?></b><br />
<?php echo $store; ?><br />
<?php echo $address; ?></div>
<div style="float: right; display: inline-block; width: 50%;">
<?php if ($telephone) { ?>
<b><?php echo $text_telephone; ?></b><br />
<?php echo $telephone; ?><br />
<br />
<?php } ?>
<?php if ($fax) { ?>
<b><?php echo $text_fax; ?></b><br />
<?php echo $fax; ?>
<?php } ?>
</div>
</div>
</div>