Reputation: 15702
I need to display my client's email address on the Contact Us page. How can I do this? Is there any vqmod
plugin or any other solution?
Thanks!
Upvotes: 1
Views: 6596
Reputation: 31
Having just come here looking for the same answer and finding it elsewhere i thought i;d update this thread as it comes high up Google when searching for this topic.
In the file mentioned above ../catalog/view/theme/YOUR_THEME/template/information/contact.tpl
do the following.
Add <?php echo $this->config->get('config_email'); ?>
where you'd like the email to appear. This grabs the email from the admin settings page.
Upvotes: 2
Reputation: 15702
I have found solution for my question.
I need to edit this file:
...../catalog/view/theme/YOUR_THEME/template/information/contact.tpl
Find
<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 } ?>
Change To
<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 } ?>
<br />
<b>Email:</b><br />
[email protected]<br />
</div>
</div>
</div>
work just fine.
Upvotes: 0