Without purchasing an add-on...
Does anyone know how to add native cs-cart search for blog entries?
I've enabled pages, but blog pages are not recognized. Documentation does not cover blog, just keyword and product code searching.
Posted 17 December 2020 - 06:33 AM #1
Without purchasing an add-on...
Does anyone know how to add native cs-cart search for blog entries?
I've enabled pages, but blog pages are not recognized. Documentation does not cover blog, just keyword and product code searching.
Using CS-CART 4.11.x
Posted 17 December 2020 - 01:37 PM #2
app/functions/fn.search.php
after
fn_set_hook('create_pages_condition_pre', $params, $lang_code);
add
$params['full_search'] = true;
Then clear cache
P.S. If you familiar with hooks, it recommended to use the create_pages_condition_pre hook to add extra parameters
Posted 18 December 2020 - 03:38 AM #3
Thanks... it worked
Hooks: Will read-up and start experimenting... Its been some time since I last dabbled with the site code.
Using CS-CART 4.11.x