- Posts: 9
- Thank you received: 0
Unwanted text in email confirmation
For example:
We are pleased to confirm the creation of your order No. B2F8 ( thulutess.com/index.php?option=com_hikas...=order&task=show&cid []=28 ) at thulutess.com/ on the 28 November 2010 at 18:18
Can this be removed?
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
is shown as %s. There are several occurrences ofB2F8 ( thulutess.com/index.php?option=com_hikas...=order&task=show&cid []=32 )
:%s
We are pleased to confirm the creation of your order No. %s at %s on the %s at %s
It's beginning to look like one needs to be an expert at PHP to customize this component? It is a really nice component and it shows a lot of promise, but it is evidently not for those who don't want to hack code.
Please Log in or Create an account to join the conversation.
The order number and the link to the order is indeed displayed by the same %s variable in the translation. If you want to remove just the link, you will have to edit the email file. That can be done in the menu System->Emails. There, by editing the order creation notification email you will be able to change the code
Please Log in or Create an account to join the conversation.
Does this work for all the links in all the emails? My email confirmations are showing https and I would like them to show http instead.
Is there an easy way to just change the website url?
Thanks!
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Is it after the pink one, or the blue one?
<?php
/**
* @package HikaShop for Joomla!
* @version 1.5.3
* @author hikashop.com
* @copyright (C) 2010-2011 HIKARI SOFTWARE. All rights reserved.
* @license www.hikashop.com/commercial_license.php
*/
defined('_JEXEC') or die('Restricted access');
?>
<div style="background-color: #ffffff; font-family: Verdana, Arial, Helvetica, sans-serif;font-size:12px; color: #000000; width: 100%;">
<table style="margin: auto;font-family: Verdana, Arial, Helvetica, sans-serif;font-size:12px;" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td height="10">
</td>
</tr>
<tr>
<td>
<?php echo JText::sprintf('HI_CUSTOMER',@$data->customer->name);?>
<br/>
<br/>
<?php
$url = $data->order_number;
$config =& hikashop_config();
if($config->get('simplified_registration',0)!=2){
$url .= ' ( '.$data->order_url.' )';
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
I have tried placing the code in a few different spots, and it doesn't seem to be making any changes...
Thanks
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
SSL redirect to the rescue
Please Log in or Create an account to join the conversation.