Search results Sections in SearchKeyword.php

Hi,

How can I make the Section's items in Search Results page SearchKeyword.php horizontal instead of vertical (please see attached image)?

Regards

Capture.JPG · 29.9K · 279 views
Quote · 18 Aug 2014

Hello 

You may edit searchKeyword.php file and find the following code in it

           'section' => array(
               'type' => 'checkbox_set',
               'name' => 'section',
               'caption' => _t('_Section'),
               'values' => $aValues,
               'value' => $aValue
           ),

then replace it with the following one

           'section' => array(
               'type' => 'checkbox_set',
               'name' => 'section',
               'caption' => _t('_Section'),
               'values' => $aValues,
               'value' => $aValue,
               'dv' => ' '
           ),

In this case space (&nbsp;) will be used as divider instead of new line (<br />)

Best Regards AntonLV - http://www.boonex.com/market/posts/AntonLV
Quote · 18 Aug 2014

Thank you, 

Quote · 21 Jan 2016

quick question, this is not case for dolphin7.3.3.

right? 

 

Hello 

You may edit searchKeyword.php file and find the following code in it

           'section' => array(
               'type' => 'checkbox_set',
               'name' => 'section',
               'caption' => _t('_Section'),
               'values' => $aValues,
               'value' => $aValue
           ),

then replace it with the following one

           'section' => array(
               'type' => 'checkbox_set',
               'name' => 'section',
               'caption' => _t('_Section'),
               'values' => $aValues,
               'value' => $aValue,
               'dv' => '&nbsp;'
           ),

In this case space (&nbsp;) will be used as divider instead of new line (<br />)

 

Quote · 5 Feb 2017
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.