- Posts: 26
- Thank you received: 0
Add Note in Checkout
13 years 5 months ago #99784
by giuseppe
Add Note in Checkout was created by giuseppe
Hi,
It is possible add a Text Area "Note" in Checkout process?
Wich file or View I need to change to do this?
Thanks!!
Guy
It is possible add a Text Area "Note" in Checkout process?
Wich file or View I need to change to do this?
Thanks!!
Guy
Please Log in or Create an account to join the conversation.
13 years 5 months ago #99813
by nicolas
Replied by nicolas on topic Add Note in Checkout
Hi,
You can do that with the Business edition by creating a custom field of the table "order" and of the type "textarea" via the menu Display->Custom fields.
You can do that with the Business edition by creating a custom field of the table "order" and of the type "textarea" via the menu Display->Custom fields.
The following user(s) said Thank You: giuseppe
Please Log in or Create an account to join the conversation.
13 years 5 months ago #99965
by giuseppe
Replied by giuseppe on topic Add Note in Checkout
Hi Nicolas,
Thanks! OK I will upgrade my version!
Another question, if is possible....
If I want to delete some link into "Personal Customer Page" for example "my wishlist" Wich file or View I need to change to do this?
Thanks!
Bye
Guy
Thanks! OK I will upgrade my version!
Another question, if is possible....
If I want to delete some link into "Personal Customer Page" for example "my wishlist" Wich file or View I need to change to do this?
Thanks!
Bye
Guy
Please Log in or Create an account to join the conversation.
13 years 5 months ago #99980
by Jerome
Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.
Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
Replied by Jerome on topic Add Note in Checkout
Hi,
The wishlist feature could be deactivated in the backend. At this moment, the link would disappear too.
If you want to keep the "wishlist" and just remove the link, you would have to modify the "user | cpanel" view to do not display the "wishlist" item.
Regards,
The wishlist feature could be deactivated in the backend. At this moment, the link would disappear too.
If you want to keep the "wishlist" and just remove the link, you would have to modify the "user | cpanel" view to do not display the "wishlist" item.
Regards,
Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.
Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
Please Log in or Create an account to join the conversation.
13 years 5 months ago #100025
by giuseppe
Replied by giuseppe on topic Add Note in Checkout
Thanks!
but I don't understand where I have to change into the code for delete some items :
<?php
/**
* @package HikaShop for Joomla!
* @version 2.0.0
* @author hikashop.com
* @copyright (C) 2010-2012 HIKARI SOFTWARE. All rights reserved.
* @license GNU/GPLv3 www.gnu.org/licenses/gpl-3.0.html
*/
defined('_JEXEC') or die('Restricted access');
?><div class="hikashop_cpanel_main" id="hikashop_cpanel_main">
<div class="hikashop_cpanel_title" id="hikashop_cpanel_title">
<fieldset>
<div class="header hikashop_header_title"><h1><?php echo JText::_('CUSTOMER_ACCOUNT');?></h1></div>
</fieldset>
</div>
<div class="hikashopcpanel" id="hikashopcpanel">
<?php
foreach($this->buttons as $oneButton){
$url = hikashop_level($oneButton) ? 'onclick="document.location.href=\''.$oneButton.'\';"' : ''; ?>
<div <?php echo $url; ?> class="icon hikashop_cpanel_icon_div">
<a href="<?php echo hikashop_level($oneButton) ? $oneButton : '#'; ?>">
<table class="hikashop_cpanel_icon_table">
<tr>
<td class="hikashop_cpanel_icon_image">
<span class="hikashop_cpanel_icon_image_span icon-48-<?php echo $oneButton; ?>" title="<?php echo $oneButton; ?>"> </span>
<span class="hikashop_cpanel_button_text"><?php echo $oneButton; ?></span>
</td>
<td>
<div class="hikashop_cpanel_button_description">
<?php echo $oneButton; ?>
</div>
</td>
</tr>
</table>
</a>
</div>
<?php } ?>
</div>
</div>
<div class="clear_both"></div>
Many Thanks!
Guy
but I don't understand where I have to change into the code for delete some items :
<?php
/**
* @package HikaShop for Joomla!
* @version 2.0.0
* @author hikashop.com
* @copyright (C) 2010-2012 HIKARI SOFTWARE. All rights reserved.
* @license GNU/GPLv3 www.gnu.org/licenses/gpl-3.0.html
*/
defined('_JEXEC') or die('Restricted access');
?><div class="hikashop_cpanel_main" id="hikashop_cpanel_main">
<div class="hikashop_cpanel_title" id="hikashop_cpanel_title">
<fieldset>
<div class="header hikashop_header_title"><h1><?php echo JText::_('CUSTOMER_ACCOUNT');?></h1></div>
</fieldset>
</div>
<div class="hikashopcpanel" id="hikashopcpanel">
<?php
foreach($this->buttons as $oneButton){
$url = hikashop_level($oneButton) ? 'onclick="document.location.href=\''.$oneButton.'\';"' : ''; ?>
<div <?php echo $url; ?> class="icon hikashop_cpanel_icon_div">
<a href="<?php echo hikashop_level($oneButton) ? $oneButton : '#'; ?>">
<table class="hikashop_cpanel_icon_table">
<tr>
<td class="hikashop_cpanel_icon_image">
<span class="hikashop_cpanel_icon_image_span icon-48-<?php echo $oneButton; ?>" title="<?php echo $oneButton; ?>"> </span>
<span class="hikashop_cpanel_button_text"><?php echo $oneButton; ?></span>
</td>
<td>
<div class="hikashop_cpanel_button_description">
<?php echo $oneButton; ?>
</div>
</td>
</tr>
</table>
</a>
</div>
<?php } ?>
</div>
</div>
<div class="clear_both"></div>
Many Thanks!
Guy
Please Log in or Create an account to join the conversation.
13 years 5 months ago #100039
by nicolas
Replied by nicolas on topic Add Note in Checkout
You can do like that:
www.hikashop.com/en/forum/4-how-to/61071...om-cpanel.html#61098
www.hikashop.com/en/forum/4-how-to/61071...om-cpanel.html#61098
The following user(s) said Thank You: giuseppe
Please Log in or Create an account to join the conversation.
13 years 5 months ago #100143
by giuseppe
Replied by giuseppe on topic Add Note in Checkout
Perfect!
Is OK.
Many Thanks.
Guy
Is OK.
Many Thanks.
Guy
Please Log in or Create an account to join the conversation.
Time to create page: 0.194 seconds