Vitazzz Posted April 26, 2015 Share Posted April 26, 2015 (edited) I would like to know how could be possible to disable any changes in page title when filters are enabled. By default the category page title displayed is the one that I entered in back office, but when filter is selected it suddenly changes to %meta-title% > %selected filter% format Edited April 26, 2015 by Vitazzz (see edit history) Link to comment Share on other sites More sharing options...
selectshop.at Posted April 26, 2015 Share Posted April 26, 2015 If you use filters, the pages are behind a secure pseudo URL, which SERPS will not index. You don't need to diasable nothing here in this case, cause filtered sites will not index as for to avoid double content. This is correct behaviour and you should do not take any action on this. Link to comment Share on other sites More sharing options...
Vitazzz Posted April 26, 2015 Author Share Posted April 26, 2015 (edited) If you use filters, the pages are behind a secure pseudo URL, which SERPS will not index. You don't need to diasable nothing here in this case, cause filtered sites will not index as for to avoid double content. This is correct behaviour and you should do not take any action on this. I guess you understood the idea wrong. This is an example of what I want: https://www.thelaptopdude.com/12-ultrabooks When you for instance change the "price" slider, the category title "ULTRABOOKS" (the one that is below the banner) has no changes. In my shop, this title instead of displaying just category name starts to display "meta_title" value and filter values (can be seen on a screenshot)nshot Edited April 26, 2015 by Vitazzz (see edit history) Link to comment Share on other sites More sharing options...
selectshop.at Posted April 27, 2015 Share Posted April 27, 2015 Sorry, I didn't catch your problem. You are using filter options `The screen attached is showing a category and not a filtered option. Link to comment Share on other sites More sharing options...
Vitazzz Posted April 27, 2015 Author Share Posted April 27, 2015 (edited) Sorry, I didn't catch your problem. You are using filter options `The screen attached is showing a category and not a filtered option. First screenshot is a normal behaviour that happens when user enters directory page. The <H1> title changes as can be seen on a second screenshot. I need it to stay same like on first. Edited April 27, 2015 by Vitazzz (see edit history) Link to comment Share on other sites More sharing options...
selectshop.at Posted April 27, 2015 Share Posted April 27, 2015 Strange thing you are having. I will say that it is something you've changed on core. Cannot reproduce what you are mentioning in no one of the shops I'm administrating, also not on dev shops which are native scripts. Link to comment Share on other sites More sharing options...
Xurxo DZ Posted July 20, 2015 Share Posted July 20, 2015 Hi Vitazzz, You can disable the changes by editing /modules/blocklayered/blocklayered.php in line 3107. Where you find this code: if (is_array($filter_block['title_values'])) foreach ($filter_block['title_values'] as $key => $val) { $title .= ' > '.$key.' '.implode('/', $val); $keywords .= $key.' '.implode('/', $val).', '; } You must delete the second part, so the result is like this: if (is_array($filter_block['title_values'])) foreach ($filter_block['title_values'] as $key => $val) {} Link to comment Share on other sites More sharing options...
Recommended Posts