-- url of the page with the problem -- : Not allowed to give!
-- HikaShop version -- : 2.2.0
-- Joomla version -- : 3.1.5
-- PHP version -- : 5.4.16
-- Browser(s) name and version -- : ALL BROWSERS
Dear brilliant minds of Hikashop and all of it members,
I cant find a view in Hikashop! When I go to the following view:
Joomla Backend -> Hikashop Component -> Display -> Views -> User -> registration_bootstrap.php
In this file there is the following code:
<div class=""><legend><h4><?php echo JText::_( 'ADDRESS_INFORMATION' ); ?></h4></legend></div>
<?php
$this->type = 'address';
echo $this->loadTemplate();
?>
<div class="control-group hikashop_registration_required_info_line">
<div class="controls"><?php echo JText::_( 'HIKA_REGISTER_REQUIRED' ); ?></div>
</div>
<input type="hidden" name="data[register][id]" value="<?php echo (int)$this->mainUser->get( 'id' );?>" />
<input type="hidden" name="data[register][gid]" value="<?php echo (int)$this->mainUser->get( 'gid' );?>" />
<?php
$additional_check='';
if(empty($this->form_name)){
$this->form_name = 'hikashop_checkout_form';
if(JRequest::getVar('hikashop_check_order')) $additional_check='&& hikashopCheckChangeForm(\'order\',\''.$this->form_name.'\')';
}
?>
<div class="control-group">
<div class="controls">
<?php echo $this->cartClass->displayButton(JText::_('HIKA_REGISTER'),'register',$this->params,'','if(hikashopCheckChangeForm(\'register\',\''.$this->form_name.'\') && hikashopCheckChangeForm(\'user\',\''.$this->form_name.'\') && hikashopCheckChangeForm(\'address\',\''.$this->form_name.'\')'.$additional_check.'){ var button = document.getElementById(\'login_view_action\'); if(button) button.value=\'register\'; document.'.$this->form_name.'.submit();} return false;', '', 0, 1, 'btn btn-primary'); ?>
</div>
</div>
I believe that in the code above it says which view it loads but i cant find it. What i want to achieve is to split the address details in 2 columns. Right now it is one very long column. I cannot make these changes in this file 'registration_bootstrap.php' therefore I need to change another view but I cant find that view.
Thanks for any push in the right direction.
PS: (Forum Operator)I have put this in the category Checkout I wasn't quite sure where to put it.