I get the following:
Error
Class "BeesBlogModule\BeesBlogPost" not found
in file (beeeep)/public_html/modules/beesblogrecentposts/beesblogrecentposts.php at line 123
Source file: (beeeep)/public_html/modules/beesblogrecentposts/beesblogrecentposts.php :
104: return $this->hookDisplayLeftColumn();
105: }
106:
107: /**
108: * Display in home page
109: *
110: * @return string
111: *
112: * @throws PrestaShopException
113: * @throws SmartyException
114: * @since 1.0.3
115: */
116: public function hookDisplayHome()
117: {
118: if (!Module::isEnabled('beesblog')) {
119: return '';
120: }
121:
122: $this->context->smarty->assign([
123: 'beesblogRecentPostsPosts' => BeesBlogPost::getPosts($this->context->language->id, 0, 4),
124: 'beesblogRecentPostsBlogUrl' => BeesBlog::getBeesBlogLink(),
125: ]);
126:
127: return $this->display(__FILE__, 'views/templates/hooks/home.tpl');
128: }
129:
130: /**
131: * Display in product page
132: *
133: * @return string
Stack trace:
1. classes/Hook.php:744 source BeesBlogRecentPosts->hookDisplayHome(arguments)
2. classes/Hook.php:458 source HookCore::coreCallHook(arguments)
3. classes/Hook.php:282 source HookCore::execWithoutCache(arguments)
4. controllers/front/IndexController.php:54 source HookCore::exec(arguments)
5. classes/controller/Controller.php:202 source IndexControllerCore->initContent()
6. classes/controller/FrontController.php:243 source ControllerCore->run()
7. classes/Dispatcher.php:851 source FrontControllerCore->run()
8. ./index.php:33 source DispatcherCore->dispatch()
And there is a message about:
PHP version: unknown. Code revision: unknown build for PHP unknown
The PHP ver. is 8.1
I also forgot to mention that when a client succeded to create a new account and tried to place an order, he got a message that the items he ordered are out of stock, while there was over 15 items in stock left.