techie_matt Merchant Frá United Kingdom Meðlimur síðan sep. 2024 techie_matt 29 nóv. 2024 20:28 Hi, Could we have an update to the add-on please for 2.6.0 ? Thanks Matt
techie_matt Merchant Frá United Kingdom Meðlimur síðan sep. 2024 techie_matt 23 jan. 2025 12:22 Does anyone have this add-on working on 2.6.0 or later? I require help with page errors please.
onlygoodness LiteCart Fan Frá Netherlands Meðlimur síðan nóv. 2020 onlygoodness 24 jan. 2025 17:31 For now... Change @ pages/service.inc.php: $mother_page = array_values($page->path)[0]; if (in_array('customer_service', $page->dock) || in_array('customer_service', $mother_page->dock)) { http_response_code(301); header('Location: '. document::ilink('customer_service', ['page_id' => $page->id])); exit; } to $mother_page = array_values($page->path)[0]; if ( (is_array($page->dock) && in_array('customer_service', $page->dock)) || (isset($mother_page->dock) && is_array($mother_page->dock) && in_array('customer_service', $mother_page->dock)) ) { http_response_code(301); header('Location: '. document::ilink('customer_service', ['page_id' => $page->id])); exit; } It will work...