Catalina Posted January 7, 2020 Share Hello, When I am in B2B, I have the OUR SERVICES title box blank. Is it normal ? Quote Link to post
Julie Posted January 7, 2020 Share Hello, You must select inside page manager information with B2B or all groups options. You will see the information inside. Quote Link to post
Catalina Posted January 7, 2020 Author Share (edited) Ok, But if there is nothing inside the box appear always. How to remove it ? Edited January 7, 2020 by Catalina Quote Link to post
Patrick Posted January 8, 2020 Share Hi Catalina, I think you find a small bug, but you can change the sql request by this. It must resolve your problem. bm_page_manager $Qpages = $CLICSHOPPING_Db->prepare('select count(*) as count from :table_pages_manager where status = 1 and page_box = 0 and page_type = 4 and (customers_group_id = :customers_group_id or customers_group_id = 99) '); $Qpages->bindInt(':customers_group_id', (int)$CLICSHOPPING_Customer->getCustomersGroupID() ); and bm_page_manager_customize $QpagesSecondary = $CLICSHOPPING_Db->prepare('select count(*) as count from :table_pages_manager where status = 1 and page_box = 1 and page_type = 4 and (customers_group_id = :customers_group_id or customers_group_id = 99) '); $QpagesSecondary->bindInt(':customers_group_id', (int)$CLICSHOPPING_Customer->getCustomersGroupID() ); 1 Quote Link to post
Catalina Posted January 8, 2020 Author Share Ok thank you for your help, I will implement and test your modifications Quote Link to post
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.