WebsiteBaker 2.13.8 is now available!
R.I.P Dietmar (luisehahne) and thank you for all your valuable work for WBhttps://forum.websitebaker.org/index.php/topic,32355.0.html
Solution #2 - The backwards compatible solutionInstead of removing the red text as described in the above message, replace it with $sql_showall. For example:WHERE $sql_sectiononlyThen insert the following lines right above the line that says // Get total number of itemsif (isset($_GET['showall'])) { $sql_sectiononly = '';} else { $sql_sectiononly = "section_id = '$section_id' AND ";}As a result, the basic functionality of your pages will not change and the list will only include items in your page (or category if you prefer).To list all items, just create a manual link that has the same address you would normally use but add a "?showall" to the end of the address. For example:http://www.yoursite.com/pages/yourshopname/my-shop.php?showallLimitation: If you view an item and then click the Back link, you will no longer see the full list.Michael