- Posts: 156
- Thank you received: 0
Billing address not being added!!??
after i register it takes me to the billing address page, after i enter all the required fields and click ok, it flickers and clears the data and stays the same. no address is added. it's doing the same thing to the shipping address.
apart from that, they are some fields added to it that i wouldn't like to show there. as you can see by the image.
also how come all the payment related information is not loading along with this page. theses are the steps to check out
cart,address,shipping_payment_confirm_status_fields,end
Please Log in or Create an account to join the conversation.
These fields are for the address, so they are of course displayed when you edit the address. If the fields are related to the order, you should rather create custom fields of the table order (business edition only). That way, they will be linked to the order and not to the address.
If the payment options are not displayed it means that you didn't configure something correctly. Please check the FAQ there: www.hikashop.com/support/documentation/i...ins-listing.html#faq
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
1. There is an upgrade package available there: www.hikashop.com/en/component/hikashop/product/show/cid-3.html
2. You can use CSS to hide the lines you don't want in the popup form. The information will still be in the address though so next time the user place an order, he will have the same information in the address which might not be what you want. In that case, you could create a hikashop plugin to be triggered when the order is created and unpublish the address of the user so that it can't be used next time around.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
thanks
Please Log in or Create an account to join the conversation.
You didn't post any screenshot of the component.php file of your template.
Please Log in or Create an account to join the conversation.
<?php
include (dirname(__FILE__).DS.'index.php');
"
in it. and the index.php file only have this in it.
<?php
if (class_exists('T3Template')) {
$tmpl = T3Template::getInstance($this);
$tmpl->render();
return;
} else {
//Need to install or enable JAT3 Plugin
echo JText::_('Missing jat3 framework plugin');
}
i am trying to locate the where the component information is.. but they styling of the form is just important to my client. thank you so much for all your help..
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
You should edit the file form of the view address of the front end via the menu Display>Views and change the code:
<tr>
to:
<tr class="hikashop_address_<?php echo $fieldName;?>_line">
Then, you'll be able to remove the lines in CSS.
Just in case, please add the jdoc include tag at the beginning of the component.php file and try again.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
<input type="hidden" name="data[address][address_user_id]" value="<?php echo @$address->address_user_id;?>" />
and try again?
Please Log in or Create an account to join the conversation.
Edit
Email is sent.. look forward to your help...
Please Log in or Create an account to join the conversation.