- This topic has 1 reply, 2 voices, and was last updated 8 years, 2 months ago by .
These forums are now closed and remain for historical purposes.
None of the content applies to the new version 3. For support, get in touch via our contact form.
Forums › Forums › Search & Filter Pro › Echo value from checked box
So this is kind of similar to a question I’ve already asked. But now I’m struggling with the styling of the echo.
To echo the checked boxes I use the following code:
function locaties_search() {
global $searchandfilter;
$sf_current_query = $searchandfilter->get(3403)->current_query();
return $sf_current_query->get_fields_html(array("_sft_locatie"), array('show_all_if_empty' => false));
}
add_shortcode('locatiesearch', 'locaties_search');
And then I use the following shortcode to echo the results:
<?php echo do_shortcode('[locatiesearch]'); ?>
Right now it’s displaying the results like:
Location:Location-x, Location-y
What I would like is to have it just echo like so:
Location-x
Location-y
What code should I use?
In PHP you need to take the string and modify it. The first thing is to remove the Location:
string. So, you use the PHP Search function to find the :
, like this:
$return_string = $sf_current_query->get_fields_html(array("_sft_locatie");
$colon_pos = strpos($return_string, ":");
Then you fetch the right most part of the return_string after the colon:
$return_string_trim = substr($return_string, $colon_pos+1);
Then you replace the commas with <br />
:
$return_string_html = str_replace(",", "<br />", $return_string_trim);
And then you return the string:
return $return_string_html;
At least, I think ….
This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.
We also use cookies to store items in your cart as well as allowing your to login on the site.
You can adjust all of your cookie settings by navigating the tabs on the left hand side.
By continuing to use this site, you also agree to our Privacy Policy.
Strictly Necessary Cookie should be enabled at all times so that we can save your preferences for cookie settings.
*Other cookies used for logging in and cart functions will only be used when you use those features and cannot be disabled.
If you disable these cookie, we will not be able to save your preferences. This means that every time you visit this website you will need to enable or disable cookies again.
This website uses Google Analytics to collect anonymous information such as the number of visitors to the site, and the most popular pages.
Keeping this cookie enabled helps us to improve our website.
Please enable Strictly Necessary Cookies first so that we can save your preferences!
More information about our Cookie Policy