contact form in joomla 3 - Joomla! Forum - community, help and support
hi there. have problem contact form in joomla 3. fixed problem...kinda... it's plain weird. edited file en-gb.com_contact in language folder in joomla. removed value "contact" on line com_contact_details="" , "headline" or title gone if choose slider method of showing form, still see headline space empty , if click on still see empty space expanding.
how remove whole "section"?
thanks
how remove whole "section"?
thanks
just remove lines 43/48 of components/com_contact/views/contact/tmpl/default.php.
document change core when upgrade/migrate.
code: select all
<?php if ($this->params->get('presentation_style')!='plain'){?>
<?php echo jhtml::_($this->params->get('presentation_style').'.start', 'contact-slider'); ?>
<?php echo jhtml::_($this->params->get('presentation_style').'.panel', jtext::_('com_contact_details'), 'basic-details'); } ?>
<?php if ($this->params->get('presentation_style')=='plain'):?>
<?php echo '<h3>'. jtext::_('com_contact_details').'</h3>'; ?>
<?php endif; ?>
Comments
Post a Comment