322 | SELECT SQL_NO_CACHE p.id_product
FROM ps_product p
WHERE p.active = 1 | 17.367 ms | 74221 | | | /modules/ps_viewedproduct/ps_viewedproduct.php:317 /modules/ps_viewedproduct/ps_viewedproduct.php:251 (getExistingProductsIds) /modules/ps_viewedproduct/ps_viewedproduct.php:177 (getViewedProductIds) /modules/ps_viewedproduct/ps_viewedproduct.php:198 (getCacheId) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:169 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
287 | SELECT SQL_NO_CACHE p.*, product_shop.*, stock.out_of_stock, IFNULL(stock.quantity, 0) AS quantity, pl.`description`, pl.`description_short`, pl.`available_now`,
pl.`available_later`, pl.`link_rewrite`, pl.`meta_description`, pl.`meta_keywords`, pl.`meta_title`, pl.`name`, image_shop.`id_image` id_image,
il.`legend` as legend, m.`name` AS manufacturer_name, cl.`name` AS category_default,
DATEDIFF(product_shop.`date_add`, DATE_SUB("2024-12-29 00:00:00",
INTERVAL 20 DAY)) > 0 AS new, product_shop.price AS orderprice
FROM `ps_category_product` cp
LEFT JOIN `ps_product` p
ON p.`id_product` = cp.`id_product`
INNER JOIN ps_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 2)
LEFT JOIN ps_stock_available stock
ON (stock.id_product = `p`.id_product AND stock.id_product_attribute = 0 AND stock.id_shop_group = 1 AND stock.id_shop = 0 )
LEFT JOIN `ps_category_lang` cl
ON (product_shop.`id_category_default` = cl.`id_category`
AND cl.`id_lang` = 6 AND cl.id_shop = 2 )
LEFT JOIN `ps_product_lang` pl
ON (p.`id_product` = pl.`id_product`
AND pl.`id_lang` = 6 AND pl.id_shop = 2 )
LEFT JOIN `ps_image_shop` image_shop
ON (image_shop.`id_product` = p.`id_product` AND image_shop.cover=1 AND image_shop.id_shop=2)
LEFT JOIN `ps_image_lang` il
ON (image_shop.`id_image` = il.`id_image`
AND il.`id_lang` = 6)
LEFT JOIN `ps_manufacturer` m
ON m.`id_manufacturer` = p.`id_manufacturer`
WHERE product_shop.`id_shop` = 2
AND cp.`id_category` = 1209 AND product_shop.`active` = 1 AND product_shop.`visibility` IN ("both", "catalog") ORDER BY pl.`name` DESC
LIMIT 0,2 | 15.212 ms | 609 | Yes | | /classes/Category.php:1062 /src/Adapter/Category/CategoryProductSearchProvider.php:88 (getProducts) /src/Adapter/Category/CategoryProductSearchProvider.php:105 (getProductsOrCount) /modules/axoncreator/axoncreator.php:1442 (runQuery) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
323 | SELECT SQL_NO_CACHE p.id_product
FROM ps_product p
WHERE p.active = 1 | 10.872 ms | 74221 | | | /modules/ps_viewedproduct/ps_viewedproduct.php:317 /modules/ps_viewedproduct/ps_viewedproduct.php:251 (getExistingProductsIds) /modules/ps_viewedproduct/ps_viewedproduct.php:261 (getViewedProductIds) /modules/ps_viewedproduct/ps_viewedproduct.php:217 (getViewedProducts) /modules/ps_viewedproduct/ps_viewedproduct.php:199 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:169 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
279 | SELECT SQL_NO_CACHE c.id_parent, c.id_category, cl.name, cl.description, cl.link_rewrite
FROM `ps_category` c
INNER JOIN `ps_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.`id_lang` = 6 AND cl.id_shop = 2 )
INNER JOIN `ps_category_shop` cs ON (cs.`id_category` = c.`id_category` AND cs.`id_shop` = 2)
WHERE (c.`active` = 1 OR c.`id_category` = 2)
AND c.`id_category` != 1
AND nleft >= 2 AND nright <= 1871
ORDER BY `level_depth` ASC, cs.`position` ASC | 6.780 ms | 1782 | Yes | | /modules/axoncreator/axoncreator.php:2028 /modules/axoncreator/includes/widgets/axps-products.php:121 (getCategories) /modules/axoncreator/includes/widgets/axps-products.php:101 (_register_content_controls) /modules/axoncreator/includes/base/controls-stack.php:1923 (_register_controls) /modules/axoncreator/includes/base/controls-stack.php:510 (init_controls) /modules/axoncreator/includes/base/widget-base.php:162 (get_stack) /modules/axoncreator/includes/base/controls-stack.php:303 (get_stack) /modules/axoncreator/includes/base/controls-stack.php:1958 (get_controls) /modules/axoncreator/includes/base/controls-stack.php:1045 (sanitize_settings) /modules/axoncreator/includes/base/controls-stack.php:1798 (get_data) /modules/axoncreator/core/base/base-object.php:145 (get_init_settings) /modules/axoncreator/core/base/base-object.php:53 (ensure_settings) /modules/axoncreator/core/files/css/post.php:302 (get_settings) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/files/css/post.php:190 (render_styles) /modules/axoncreator/core/files/css/base.php:634 (render_css) /modules/axoncreator/core/files/base.php:152 (parse_content) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:82 (get_content) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/core/dynamic-tags/manager.php:434 (enqueue) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:537 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:150 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
2 | SELECT SQL_NO_CACHE c.`name`, cl.`id_lang`, IF(cl.`id_lang` IS NULL, c.`value`, cl.`value`) AS value, c.id_shop_group, c.id_shop
FROM `ps_configuration` c
LEFT JOIN `ps_configuration_lang` cl ON (c.`id_configuration` = cl.`id_configuration`) | 5.061 ms | 21658 | | | /classes/Configuration.php:180 /classes/Configuration.php:229 (loadConfiguration) /classes/Configuration.php:302 (get) /classes/shop/Shop.php:398 (getMultiShopValues) /config/config.inc.php:117 (initialize) /index.php:39 (require)
|
312 | SELECT SQL_NO_CACHE COUNT(cp.`id_product`) AS total
FROM `ps_product` p
INNER JOIN ps_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 2)
LEFT JOIN `ps_category_product` cp ON p.`id_product` = cp.`id_product`
WHERE cp.`id_category` = 1209 AND product_shop.`visibility` IN ("both", "catalog") AND product_shop.`active` = 1 LIMIT 1 | 2.087 ms | 609 | | | /classes/Category.php:991 /src/Adapter/Category/CategoryProductSearchProvider.php:88 (getProducts) /src/Adapter/Category/CategoryProductSearchProvider.php:106 (getProductsOrCount) /modules/axoncreator/axoncreator.php:1442 (runQuery) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
26 | SELECT SQL_NO_CACHE m.page, ml.url_rewrite, ml.id_lang
FROM `ps_meta` m
LEFT JOIN `ps_meta_lang` ml ON (m.id_meta = ml.id_meta AND ml.id_shop = 2 )
ORDER BY LENGTH(ml.url_rewrite) DESC | 1.989 ms | 938 | Yes | | /classes/Dispatcher.php:659 /classes/Dispatcher.php:243 (loadRoutes) /classes/Dispatcher.php:201 (__construct) /index.php:40 (getInstance)
|
72 | SELECT SQL_NO_CACHE h.id_hook, h.name as h_name, title, description, h.position, hm.position as hm_position, m.id_module, m.name, m.active
FROM `ps_hook_module` hm
STRAIGHT_JOIN `ps_hook` h ON (h.id_hook = hm.id_hook AND hm.id_shop = 2)
STRAIGHT_JOIN `ps_module` as m ON (m.id_module = hm.id_module)
ORDER BY hm.position | 1.774 ms | 885 | | | /classes/Hook.php:456 /classes/Hook.php:493 (getHookModuleList) /classes/tax/TaxManagerFactory.php:67 (getModulesFromHook) /classes/tax/TaxManagerFactory.php:46 (execHookTaxManagerFactory) /classes/Product.php:6892 (getManager) /classes/Product.php:741 (getTaxesRate) /override/classes/Product.php:9 (__construct) /controllers/front/ProductController.php:146 (__construct) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
20 | SELECT SQL_NO_CACHE h.`name` as hook, m.`id_module`, h.`id_hook`, m.`name` as module
FROM `ps_module` m
INNER JOIN ps_module_shop module_shop
ON (module_shop.id_module = m.id_module AND module_shop.id_shop = 2 AND module_shop.enable_device & 1)
INNER JOIN `ps_hook_module` `hm` ON hm.`id_module` = m.`id_module`
INNER JOIN `ps_hook` `h` ON hm.`id_hook` = h.`id_hook`
LEFT JOIN `ps_module_group` `mg` ON mg.`id_module` = m.`id_module`
WHERE (h.`name` != "paymentOptions") AND (hm.`id_shop` = 2) AND (mg.id_shop = 2 AND mg.`id_group` IN (8))
GROUP BY hm.id_hook, hm.id_module
ORDER BY hm.`position` | 1.644 ms | 1182 | Yes | Yes | /classes/Hook.php:1233 /classes/Hook.php:735 (getAllHookRegistrations) /classes/Hook.php:842 (getHookModuleExecList) /classes/Dispatcher.php:611 (exec) /classes/Dispatcher.php:243 (loadRoutes) /classes/Dispatcher.php:201 (__construct) /index.php:40 (getInstance)
|
71 | SELECT SQL_NO_CACHE `id_hook`, `name`
FROM `ps_hook`
UNION
SELECT `id_hook`, ha.`alias` as name
FROM `ps_hook_alias` ha
INNER JOIN `ps_hook` h ON ha.name = h.name | 0.981 ms | 0 | | | /classes/Hook.php:1292 /classes/Hook.php:225 (getAllHookIds) /classes/tax/TaxManagerFactory.php:67 (getIdByName) /classes/tax/TaxManagerFactory.php:46 (execHookTaxManagerFactory) /classes/Product.php:6892 (getManager) /classes/Product.php:741 (getTaxesRate) /override/classes/Product.php:9 (__construct) /controllers/front/ProductController.php:146 (__construct) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
181 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 2 AND name = 'elementor_viewport_md' LIMIT 1 | 0.948 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/src/Wp_Helper.php:1253 (get_post_meta) /modules/axoncreator/core/responsive/responsive.php:122 (get_option) :undefined (AxonCreator\Core\Responsive\{closure}) /modules/axoncreator/core/responsive/responsive.php:128 (array_reduce) /modules/axoncreator/core/files/css/base.php:731 (get_breakpoints) /modules/axoncreator/core/files/css/base.php:121 (init_stylesheet) /modules/axoncreator/core/files/css/post.php:64 (__construct) :undefined (__construct) /modules/axoncreator/core/files/manager.php:56 (newInstanceArgs) /modules/axoncreator/core/files/base.php:87 (get) /modules/axoncreator/includes/frontend.php:890 (create) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
280 | SELECT SQL_NO_CACHE m.*, ml.`description`, ml.`short_description`
FROM `ps_manufacturer` m INNER JOIN ps_manufacturer_shop manufacturer_shop
ON (manufacturer_shop.id_manufacturer = m.id_manufacturer AND manufacturer_shop.id_shop = 2)INNER JOIN `ps_manufacturer_lang` ml ON (m.`id_manufacturer` = ml.`id_manufacturer` AND ml.`id_lang` = 6)WHERE 1 AND m.`active` = 1 GROUP BY m.`id_manufacturer`ORDER BY m.`name` ASC | 0.869 ms | 123 | Yes | Yes | /classes/Manufacturer.php:211 /modules/axoncreator/includes/widgets/axps-products.php:123 (getManufacturers) /modules/axoncreator/includes/widgets/axps-products.php:101 (_register_content_controls) /modules/axoncreator/includes/base/controls-stack.php:1923 (_register_controls) /modules/axoncreator/includes/base/controls-stack.php:510 (init_controls) /modules/axoncreator/includes/base/widget-base.php:162 (get_stack) /modules/axoncreator/includes/base/controls-stack.php:303 (get_stack) /modules/axoncreator/includes/base/controls-stack.php:1958 (get_controls) /modules/axoncreator/includes/base/controls-stack.php:1045 (sanitize_settings) /modules/axoncreator/includes/base/controls-stack.php:1798 (get_data) /modules/axoncreator/core/base/base-object.php:145 (get_init_settings) /modules/axoncreator/core/base/base-object.php:53 (ensure_settings) /modules/axoncreator/core/files/css/post.php:302 (get_settings) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/files/css/post.php:190 (render_styles) /modules/axoncreator/core/files/css/base.php:634 (render_css) /modules/axoncreator/core/files/base.php:152 (parse_content) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:82 (get_content) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/core/dynamic-tags/manager.php:434 (enqueue) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:537 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:150 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
182 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 2 AND name = 'elementor_viewport_lg' LIMIT 1 | 0.853 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/src/Wp_Helper.php:1253 (get_post_meta) /modules/axoncreator/core/responsive/responsive.php:122 (get_option) :undefined (AxonCreator\Core\Responsive\{closure}) /modules/axoncreator/core/responsive/responsive.php:128 (array_reduce) /modules/axoncreator/core/files/css/base.php:731 (get_breakpoints) /modules/axoncreator/core/files/css/base.php:121 (init_stylesheet) /modules/axoncreator/core/files/css/post.php:64 (__construct) :undefined (__construct) /modules/axoncreator/core/files/manager.php:56 (newInstanceArgs) /modules/axoncreator/core/files/base.php:87 (get) /modules/axoncreator/includes/frontend.php:890 (create) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
183 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 16 AND name = '_elementor_css_id_lang_6' LIMIT 1 | 0.733 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/core/files/css/post.php:122 (get_post_meta) /modules/axoncreator/core/files/base.php:224 (load_meta) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
180 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 16 AND name = '_wp_page_template_id_lang_6' LIMIT 1 | 0.532 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/core/document-types/post.php:225 (get_post_meta) /modules/axoncreator/core/documents-manager.php:201 (__construct) /modules/axoncreator/core/documents-manager.php:240 (get) /modules/axoncreator/includes/frontend.php:871 (get_doc_for_frontend) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
184 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 2 AND name = 'elementor_viewport_md' LIMIT 1 | 0.485 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/src/Wp_Helper.php:1253 (get_post_meta) /modules/axoncreator/core/responsive/responsive.php:122 (get_option) :undefined (AxonCreator\Core\Responsive\{closure}) /modules/axoncreator/core/responsive/responsive.php:128 (array_reduce) /modules/axoncreator/core/files/css/base.php:731 (get_breakpoints) /modules/axoncreator/core/files/css/base.php:121 (init_stylesheet) /modules/axoncreator/core/files/css/post.php:64 (__construct) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:40 (__construct) /modules/axoncreator/core/dynamic-tags/manager.php:432 (__construct) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
218 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 16 AND name = '_wp_page_template_id_lang_6' LIMIT 1 | 0.480 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/core/document-types/post.php:225 (get_post_meta) /modules/axoncreator/core/documents-manager.php:201 (__construct) /modules/axoncreator/core/documents-manager.php:240 (get) /modules/axoncreator/includes/frontend.php:871 (get_doc_for_frontend) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
122 | SELECT SQL_NO_CACHE DISTINCT f.id_feature, f.*, fl.*
FROM `ps_feature` f
INNER JOIN ps_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 2)
LEFT JOIN `ps_feature_lang` fl ON (f.`id_feature` = fl.`id_feature` AND fl.`id_lang` = 6)
ORDER BY f.`position` ASC | 0.465 ms | 1600 | Yes | | /classes/Feature.php:92 /modules/altautofiller/altautofiller.php:900 (getFeatures) /modules/altautofiller/altautofiller.php:629 (replaceVars) /classes/Hook.php:1043 (hookActionPresentProduct) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /src/Adapter/Presenter/Product/ProductPresenter.php:114 (exec) /controllers/front/ProductController.php:1242 (present) /controllers/front/ProductController.php:421 (getTemplateVarProduct) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
124 | SELECT SQL_NO_CACHE DISTINCT f.id_feature, f.*, fl.*
FROM `ps_feature` f
INNER JOIN ps_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 2)
LEFT JOIN `ps_feature_lang` fl ON (f.`id_feature` = fl.`id_feature` AND fl.`id_lang` = 6)
ORDER BY f.`position` ASC | 0.451 ms | 1600 | Yes | | /classes/Feature.php:92 /modules/altautofiller/altautofiller.php:900 (getFeatures) /modules/altautofiller/altautofiller.php:471 (replaceVars) /classes/Hook.php:1043 (hookFilterProductContent) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /controllers/front/ProductController.php:432 (exec) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
107 | SELECT SQL_NO_CACHE p.*, product_shop.*, stock.out_of_stock, IFNULL(stock.quantity, 0) as quantity, pl.`description`, pl.`description_short`, pl.`link_rewrite`,
pl.`meta_description`, pl.`meta_keywords`, pl.`meta_title`, pl.`name`, pl.`available_now`, pl.`available_later`,
image_shop.`id_image` id_image, il.`legend`, m.`name` as manufacturer_name, cl.`name` AS category_default, IFNULL(product_attribute_shop.id_product_attribute, 0) id_product_attribute,
DATEDIFF(
p.`date_add`,
DATE_SUB(
"2024-12-29 00:00:00",
INTERVAL 20 DAY
)
) > 0 AS new
FROM `ps_accessory`
LEFT JOIN `ps_product` p ON p.`id_product` = `id_product_2`
INNER JOIN ps_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 2)
LEFT JOIN `ps_product_attribute_shop` product_attribute_shop
ON (p.`id_product` = product_attribute_shop.`id_product` AND product_attribute_shop.`default_on` = 1 AND product_attribute_shop.id_shop=2)
LEFT JOIN `ps_product_lang` pl ON (
p.`id_product` = pl.`id_product`
AND pl.`id_lang` = 6 AND pl.id_shop = 2
)
LEFT JOIN `ps_category_lang` cl ON (
product_shop.`id_category_default` = cl.`id_category`
AND cl.`id_lang` = 6 AND cl.id_shop = 2
)
LEFT JOIN `ps_image_shop` image_shop
ON (image_shop.`id_product` = p.`id_product` AND image_shop.cover=1 AND image_shop.id_shop=2)
LEFT JOIN `ps_image_lang` il ON (image_shop.`id_image` = il.`id_image` AND il.`id_lang` = 6)
LEFT JOIN `ps_manufacturer` m ON (p.`id_manufacturer`= m.`id_manufacturer`)
LEFT JOIN ps_stock_available stock
ON (stock.id_product = `p`.id_product AND stock.id_product_attribute = 0 AND stock.id_shop_group = 1 AND stock.id_shop = 0 )
WHERE `id_product_1` = 87927 AND product_shop.`active` = 1 AND product_shop.`visibility` != 'none'
GROUP BY product_shop.id_product | 0.447 ms | 1 | | Yes | /classes/Product.php:4698 /controllers/front/ProductController.php:405 (getAccessories) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
271 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 7 AND name = '_wp_page_template_id_lang_6' LIMIT 1 | 0.431 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/core/document-types/post.php:225 (get_post_meta) /modules/axoncreator/core/documents-manager.php:201 (__construct) /modules/axoncreator/core/documents-manager.php:240 (get) /modules/axoncreator/includes/frontend.php:871 (get_doc_for_frontend) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:537 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:150 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
191 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 2 AND name = 'elementor_disable_color_schemes' LIMIT 1 | 0.426 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/src/Wp_Helper.php:1253 (get_post_meta) /modules/axoncreator/includes/managers/schemes.php:310 (get_option) /modules/axoncreator/includes/elements/section.php:1100 (get_enabled_schemes) /modules/axoncreator/includes/base/controls-stack.php:1923 (_register_controls) /modules/axoncreator/includes/base/controls-stack.php:510 (init_controls) /modules/axoncreator/includes/base/controls-stack.php:303 (get_stack) /modules/axoncreator/includes/base/controls-stack.php:1958 (get_controls) /modules/axoncreator/includes/base/controls-stack.php:1045 (sanitize_settings) /modules/axoncreator/includes/base/controls-stack.php:1798 (get_data) /modules/axoncreator/core/base/base-object.php:145 (get_init_settings) /modules/axoncreator/core/base/base-object.php:53 (ensure_settings) /modules/axoncreator/core/files/css/post.php:302 (get_settings) /modules/axoncreator/core/files/css/post.php:190 (render_styles) /modules/axoncreator/core/files/css/base.php:634 (render_css) /modules/axoncreator/core/files/base.php:152 (parse_content) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:82 (get_content) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/core/dynamic-tags/manager.php:434 (enqueue) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
185 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 2 AND name = 'elementor_viewport_lg' LIMIT 1 | 0.419 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/src/Wp_Helper.php:1253 (get_post_meta) /modules/axoncreator/core/responsive/responsive.php:122 (get_option) :undefined (AxonCreator\Core\Responsive\{closure}) /modules/axoncreator/core/responsive/responsive.php:128 (array_reduce) /modules/axoncreator/core/files/css/base.php:731 (get_breakpoints) /modules/axoncreator/core/files/css/base.php:121 (init_stylesheet) /modules/axoncreator/core/files/css/post.php:64 (__construct) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:40 (__construct) /modules/axoncreator/core/dynamic-tags/manager.php:432 (__construct) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
19 | SELECT SQL_NO_CACHE lower(name) as name
FROM `ps_hook` h
WHERE (h.active = 1) | 0.413 ms | 1205 | | | /classes/Hook.php:1332 /classes/Hook.php:811 (getHookStatusByName) /classes/Dispatcher.php:611 (exec) /classes/Dispatcher.php:243 (loadRoutes) /classes/Dispatcher.php:201 (__construct) /index.php:40 (getInstance)
|
102 | SELECT SQL_NO_CACHE c.*, cl.`id_lang`, cl.`name`, cl.`description`, cl.`additional_description`, cl.`link_rewrite`, cl.`meta_title`, cl.`meta_keywords`, cl.`meta_description`
FROM `ps_category` c
INNER JOIN ps_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 2)
LEFT JOIN `ps_category_lang` cl ON (c.`id_category` = cl.`id_category` AND `id_lang` = 6 AND cl.id_shop = 2 )
LEFT JOIN `ps_category_group` cg ON (cg.`id_category` = c.`id_category`)
WHERE `id_parent` = 1209
AND `active` = 1
AND cg.`id_group` =8
GROUP BY c.`id_category`
ORDER BY `level_depth` ASC, category_shop.`position` ASC | 0.402 ms | 5 | Yes | Yes | /classes/Category.php:924 /controllers/front/ProductController.php:892 (getSubCategories) /controllers/front/ProductController.php:368 (assignCategory) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
337 | SELECT SQL_NO_CACHE `id_guest`
FROM `ps_connections`
WHERE `id_guest` = 28780922
AND `date_add` > '2024-12-29 18:44:00'
AND id_shop IN (2)
ORDER BY `date_add` DESC LIMIT 1 | 0.400 ms | 1 | Yes | | /classes/Connection.php:168 /classes/Connection.php:97 (setNewConnection) /modules/statsdata/statsdata.php:118 (setPageConnection) /modules/statsdata/statsdata.php:74 (getScriptCustomerPagesViews) /classes/Hook.php:1043 (hookDisplayBeforeBodyClosingTag) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:272 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:439 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
272 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 2 AND name = 'elementor_viewport_md' LIMIT 1 | 0.400 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/src/Wp_Helper.php:1253 (get_post_meta) /modules/axoncreator/core/responsive/responsive.php:122 (get_option) :undefined (AxonCreator\Core\Responsive\{closure}) /modules/axoncreator/core/responsive/responsive.php:128 (array_reduce) /modules/axoncreator/core/files/css/base.php:731 (get_breakpoints) /modules/axoncreator/core/files/css/base.php:121 (init_stylesheet) /modules/axoncreator/core/files/css/post.php:64 (__construct) :undefined (__construct) /modules/axoncreator/core/files/manager.php:56 (newInstanceArgs) /modules/axoncreator/core/files/base.php:87 (get) /modules/axoncreator/includes/frontend.php:890 (create) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:537 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:150 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
190 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 2 AND name = 'elementor_allow_svg' LIMIT 1 | 0.391 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/src/Wp_Helper.php:1253 (get_post_meta) /modules/axoncreator/core/files/assets/svg/svg-handler.php:54 (get_option) /modules/axoncreator/core/files/assets/svg/svg-handler.php:733 (is_svg_uploads_enabled) /modules/axoncreator/includes/controls/icons.php:124 (is_enabled) /modules/axoncreator/includes/controls/base.php:86 (get_default_settings) /modules/axoncreator/includes/managers/controls.php:449 (__construct) /modules/axoncreator/includes/managers/controls.php:523 (register_controls) /modules/axoncreator/includes/managers/controls.php:542 (get_controls) /modules/axoncreator/includes/managers/controls.php:699 (get_control) /modules/axoncreator/includes/base/controls-stack.php:435 (add_control_to_stack) /modules/axoncreator/includes/base/controls-stack.php:1387 (add_control) /modules/axoncreator/includes/elements/section.php:243 (start_controls_section) /modules/axoncreator/includes/base/controls-stack.php:1923 (_register_controls) /modules/axoncreator/includes/base/controls-stack.php:510 (init_controls) /modules/axoncreator/includes/base/controls-stack.php:303 (get_stack) /modules/axoncreator/includes/base/controls-stack.php:1958 (get_controls) /modules/axoncreator/includes/base/controls-stack.php:1045 (sanitize_settings) /modules/axoncreator/includes/base/controls-stack.php:1798 (get_data) /modules/axoncreator/core/base/base-object.php:145 (get_init_settings) /modules/axoncreator/core/base/base-object.php:53 (ensure_settings) /modules/axoncreator/core/files/css/post.php:302 (get_settings) /modules/axoncreator/core/files/css/post.php:190 (render_styles) /modules/axoncreator/core/files/css/base.php:634 (render_css) /modules/axoncreator/core/files/base.php:152 (parse_content) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:82 (get_content) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/core/dynamic-tags/manager.php:434 (enqueue) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
251 | SELECT SQL_NO_CACHE *, ( IF (`id_shop` = 2, 2, 0) + IF (`id_country` = 14, 4, 0) + IF (`id_currency` = 1, 8, 0) + IF (`id_group` = 8, 16, 0) + IF (`id_customer` = 0, 32, 0)) AS `score`
FROM `ps_specific_price`
WHERE
`id_shop` IN (0, 2) AND
`id_currency` IN (0, 1) AND
`id_country` IN (0, 14) AND
`id_group` IN (0, 8) AND `id_product` IN (0, 87928) AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2024-12-29 00:00:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2024-12-29 00:00:00' <= `to`)
AND IF(`from_quantity` > 1, `from_quantity`, 0) <= 1 ORDER BY `id_product_attribute` DESC, `id_cart` DESC, `from_quantity` DESC, `id_specific_price_rule` ASC, `score` DESC, `to` DESC, `from` DESC LIMIT 1 | 0.378 ms | 4 | Yes | | /override/classes/SpecificPrice.php:83 /classes/Product.php:3827 (getSpecificPrice) /override/classes/Product.php:117 (priceCalculation) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:748 (getPriceStatic) /override/classes/Product.php:9 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:153 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
178 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 2 AND name = 'elementor_viewport_md' LIMIT 1 | 0.374 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/src/Wp_Helper.php:1253 (get_post_meta) /modules/axoncreator/core/responsive/responsive.php:122 (get_option) :undefined (AxonCreator\Core\Responsive\{closure}) /modules/axoncreator/core/responsive/responsive.php:128 (array_reduce) /modules/axoncreator/core/responsive/responsive.php:102 (get_breakpoints) /modules/axoncreator/includes/settings/settings.php:715 (get_editable_breakpoints) /modules/axoncreator/includes/plugin.php:572 (__construct) /modules/axoncreator/includes/plugin.php:498 (init_components) /modules/axoncreator/includes/plugin.php:639 (init) /modules/axoncreator/includes/plugin.php:467 (__construct) /modules/axoncreator/axoncreator.php:1486 (instance) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
273 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 2 AND name = 'elementor_viewport_lg' LIMIT 1 | 0.369 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/src/Wp_Helper.php:1253 (get_post_meta) /modules/axoncreator/core/responsive/responsive.php:122 (get_option) :undefined (AxonCreator\Core\Responsive\{closure}) /modules/axoncreator/core/responsive/responsive.php:128 (array_reduce) /modules/axoncreator/core/files/css/base.php:731 (get_breakpoints) /modules/axoncreator/core/files/css/base.php:121 (init_stylesheet) /modules/axoncreator/core/files/css/post.php:64 (__construct) :undefined (__construct) /modules/axoncreator/core/files/manager.php:56 (newInstanceArgs) /modules/axoncreator/core/files/base.php:87 (get) /modules/axoncreator/includes/frontend.php:890 (create) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:537 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:150 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
179 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 2 AND name = 'elementor_viewport_lg' LIMIT 1 | 0.364 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/src/Wp_Helper.php:1253 (get_post_meta) /modules/axoncreator/core/responsive/responsive.php:122 (get_option) :undefined (AxonCreator\Core\Responsive\{closure}) /modules/axoncreator/core/responsive/responsive.php:128 (array_reduce) /modules/axoncreator/core/responsive/responsive.php:102 (get_breakpoints) /modules/axoncreator/includes/settings/settings.php:715 (get_editable_breakpoints) /modules/axoncreator/includes/plugin.php:572 (__construct) /modules/axoncreator/includes/plugin.php:498 (init_components) /modules/axoncreator/includes/plugin.php:639 (init) /modules/axoncreator/includes/plugin.php:467 (__construct) /modules/axoncreator/axoncreator.php:1486 (instance) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
186 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 16 AND name = '_wp_page_template_id_lang_6' LIMIT 1 | 0.364 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/core/document-types/post.php:225 (get_post_meta) /modules/axoncreator/core/documents-manager.php:201 (__construct) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:72 (get) /modules/axoncreator/core/files/css/post.php:180 (get_data) /modules/axoncreator/core/files/css/base.php:634 (render_css) /modules/axoncreator/core/files/base.php:152 (parse_content) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:82 (get_content) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/core/dynamic-tags/manager.php:434 (enqueue) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
276 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 2 AND name = 'elementor_viewport_lg' LIMIT 1 | 0.361 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/src/Wp_Helper.php:1253 (get_post_meta) /modules/axoncreator/core/responsive/responsive.php:122 (get_option) :undefined (AxonCreator\Core\Responsive\{closure}) /modules/axoncreator/core/responsive/responsive.php:128 (array_reduce) /modules/axoncreator/core/files/css/base.php:731 (get_breakpoints) /modules/axoncreator/core/files/css/base.php:121 (init_stylesheet) /modules/axoncreator/core/files/css/post.php:64 (__construct) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:40 (__construct) /modules/axoncreator/core/dynamic-tags/manager.php:432 (__construct) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:537 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:150 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
333 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 22 AND name = '_elementor_css_id_lang_6' LIMIT 1 | 0.356 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/core/files/css/post.php:122 (get_post_meta) /modules/axoncreator/core/files/base.php:224 (load_meta) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/6f/71/05/6f71057721edbe5ad9dec765be9ecf77cd901743_2.file.footer.tpl.php:51 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190514d3534_50355539) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:246 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:427 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
275 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 2 AND name = 'elementor_viewport_md' LIMIT 1 | 0.351 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/src/Wp_Helper.php:1253 (get_post_meta) /modules/axoncreator/core/responsive/responsive.php:122 (get_option) :undefined (AxonCreator\Core\Responsive\{closure}) /modules/axoncreator/core/responsive/responsive.php:128 (array_reduce) /modules/axoncreator/core/files/css/base.php:731 (get_breakpoints) /modules/axoncreator/core/files/css/base.php:121 (init_stylesheet) /modules/axoncreator/core/files/css/post.php:64 (__construct) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:40 (__construct) /modules/axoncreator/core/dynamic-tags/manager.php:432 (__construct) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:537 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:150 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
43 | SELECT SQL_NO_CACHE *
FROM `ps_order_state` os
LEFT JOIN `ps_order_state_lang` osl ON (os.`id_order_state` = osl.`id_order_state` AND osl.`id_lang` = 6) WHERE deleted = 0 ORDER BY `name` ASC | 0.350 ms | 102 | Yes | | /classes/order/OrderState.php:132 /modules/seigitagmanager/classes/configurator/settings.php:89 (getOrderStates) /modules/seigitagmanager/util/configurator/configurator.php:385 (__construct) /modules/seigitagmanager/seigitagmanager.inc.php:988 (getInstance) /classes/Hook.php:1043 (hookActionDispatcher) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /classes/Dispatcher.php:507 (exec) /index.php:40 (dispatch)
|
277 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 7 AND name = '_wp_page_template_id_lang_6' LIMIT 1 | 0.346 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/core/document-types/post.php:225 (get_post_meta) /modules/axoncreator/core/documents-manager.php:201 (__construct) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:72 (get) /modules/axoncreator/core/files/css/post.php:180 (get_data) /modules/axoncreator/core/files/css/base.php:634 (render_css) /modules/axoncreator/core/files/base.php:152 (parse_content) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:82 (get_content) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/core/dynamic-tags/manager.php:434 (enqueue) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:537 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:150 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
330 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 22 AND name = '_wp_page_template_id_lang_6' LIMIT 1 | 0.337 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/core/document-types/post.php:225 (get_post_meta) /modules/axoncreator/core/documents-manager.php:201 (__construct) /modules/axoncreator/core/documents-manager.php:240 (get) /modules/axoncreator/includes/frontend.php:871 (get_doc_for_frontend) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/6f/71/05/6f71057721edbe5ad9dec765be9ecf77cd901743_2.file.footer.tpl.php:51 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190514d3534_50355539) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:246 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:427 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
319 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 2 AND name = 'elementor_viewport_md' LIMIT 1 | 0.331 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/src/Wp_Helper.php:1253 (get_post_meta) /modules/axoncreator/core/responsive/responsive.php:122 (get_option) :undefined (AxonCreator\Core\Responsive\{closure}) /modules/axoncreator/core/responsive/responsive.php:128 (array_reduce) /modules/axoncreator/core/files/css/base.php:731 (get_breakpoints) /modules/axoncreator/core/files/css/base.php:121 (init_stylesheet) /modules/axoncreator/core/files/css/post.php:64 (__construct) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:40 (__construct) /modules/axoncreator/core/dynamic-tags/manager.php:432 (__construct) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
315 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 2 AND name = 'elementor_viewport_md' LIMIT 1 | 0.328 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/src/Wp_Helper.php:1253 (get_post_meta) /modules/axoncreator/core/responsive/responsive.php:122 (get_option) :undefined (AxonCreator\Core\Responsive\{closure}) /modules/axoncreator/core/responsive/responsive.php:128 (array_reduce) /modules/axoncreator/core/files/css/base.php:731 (get_breakpoints) /modules/axoncreator/core/files/css/base.php:121 (init_stylesheet) /modules/axoncreator/core/files/css/post.php:64 (__construct) :undefined (__construct) /modules/axoncreator/core/files/manager.php:56 (newInstanceArgs) /modules/axoncreator/core/files/base.php:87 (get) /modules/axoncreator/includes/frontend.php:890 (create) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
208 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 2 AND name = 'elementor_default_generic_fonts' LIMIT 1 | 0.327 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/src/Wp_Helper.php:1253 (get_post_meta) /modules/axoncreator/core/settings/general/manager.php:111 (get_option) /modules/axoncreator/core/settings/base/manager.php:429 (get_saved_settings) /modules/axoncreator/core/settings/base/manager.php:124 (create_model) /modules/axoncreator/includes/controls/groups/typography.php:104 (get_model) /modules/axoncreator/includes/controls/groups/base.php:178 (init_fields) /modules/axoncreator/includes/controls/groups/base.php:267 (get_fields) /modules/axoncreator/includes/controls/groups/base.php:103 (filter_fields) /modules/axoncreator/includes/base/controls-stack.php:721 (add_controls) /modules/axoncreator/includes/widgets/heading.php:249 (add_group_control) /modules/axoncreator/includes/base/controls-stack.php:1923 (_register_controls) /modules/axoncreator/includes/base/controls-stack.php:510 (init_controls) /modules/axoncreator/includes/base/widget-base.php:162 (get_stack) /modules/axoncreator/includes/base/controls-stack.php:303 (get_stack) /modules/axoncreator/includes/base/controls-stack.php:1958 (get_controls) /modules/axoncreator/includes/base/controls-stack.php:1045 (sanitize_settings) /modules/axoncreator/includes/base/controls-stack.php:1798 (get_data) /modules/axoncreator/core/base/base-object.php:145 (get_init_settings) /modules/axoncreator/core/base/base-object.php:53 (ensure_settings) /modules/axoncreator/core/files/css/post.php:302 (get_settings) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/files/css/post.php:190 (render_styles) /modules/axoncreator/core/files/css/base.php:634 (render_css) /modules/axoncreator/core/files/base.php:152 (parse_content) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:82 (get_content) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/core/dynamic-tags/manager.php:434 (enqueue) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
314 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 6 AND name = '_wp_page_template_id_lang_6' LIMIT 1 | 0.326 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/core/document-types/post.php:225 (get_post_meta) /modules/axoncreator/core/documents-manager.php:201 (__construct) /modules/axoncreator/core/documents-manager.php:240 (get) /modules/axoncreator/includes/frontend.php:871 (get_doc_for_frontend) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
320 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 2 AND name = 'elementor_viewport_lg' LIMIT 1 | 0.326 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/src/Wp_Helper.php:1253 (get_post_meta) /modules/axoncreator/core/responsive/responsive.php:122 (get_option) :undefined (AxonCreator\Core\Responsive\{closure}) /modules/axoncreator/core/responsive/responsive.php:128 (array_reduce) /modules/axoncreator/core/files/css/base.php:731 (get_breakpoints) /modules/axoncreator/core/files/css/base.php:121 (init_stylesheet) /modules/axoncreator/core/files/css/post.php:64 (__construct) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:40 (__construct) /modules/axoncreator/core/dynamic-tags/manager.php:432 (__construct) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
232 | SELECT SQL_NO_CACHE *, ( IF (`id_shop` = 2, 2, 0) + IF (`id_country` = 14, 4, 0) + IF (`id_currency` = 1, 8, 0) + IF (`id_group` = 8, 16, 0) + IF (`id_customer` = 0, 32, 0)) AS `score`
FROM `ps_specific_price`
WHERE
`id_shop` IN (0, 2) AND
`id_currency` IN (0, 1) AND
`id_country` IN (0, 14) AND
`id_group` IN (0, 8) AND `id_product` IN (0, 87926) AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2024-12-29 00:00:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2024-12-29 00:00:00' <= `to`)
AND IF(`from_quantity` > 1, `from_quantity`, 0) <= 1 ORDER BY `id_product_attribute` DESC, `id_cart` DESC, `from_quantity` DESC, `id_specific_price_rule` ASC, `score` DESC, `to` DESC, `from` DESC LIMIT 1 | 0.325 ms | 4 | Yes | | /override/classes/SpecificPrice.php:83 /classes/Product.php:3827 (getSpecificPrice) /override/classes/Product.php:117 (priceCalculation) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:748 (getPriceStatic) /override/classes/Product.php:9 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:146 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
192 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 2 AND name = 'elementor_disable_typography_schemes' LIMIT 1 | 0.324 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/src/Wp_Helper.php:1253 (get_post_meta) /modules/axoncreator/includes/managers/schemes.php:310 (get_option) /modules/axoncreator/includes/elements/section.php:1100 (get_enabled_schemes) /modules/axoncreator/includes/base/controls-stack.php:1923 (_register_controls) /modules/axoncreator/includes/base/controls-stack.php:510 (init_controls) /modules/axoncreator/includes/base/controls-stack.php:303 (get_stack) /modules/axoncreator/includes/base/controls-stack.php:1958 (get_controls) /modules/axoncreator/includes/base/controls-stack.php:1045 (sanitize_settings) /modules/axoncreator/includes/base/controls-stack.php:1798 (get_data) /modules/axoncreator/core/base/base-object.php:145 (get_init_settings) /modules/axoncreator/core/base/base-object.php:53 (ensure_settings) /modules/axoncreator/core/files/css/post.php:302 (get_settings) /modules/axoncreator/core/files/css/post.php:190 (render_styles) /modules/axoncreator/core/files/css/base.php:634 (render_css) /modules/axoncreator/core/files/base.php:152 (parse_content) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:82 (get_content) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/core/dynamic-tags/manager.php:434 (enqueue) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
321 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 6 AND name = '_wp_page_template_id_lang_6' LIMIT 1 | 0.320 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/core/document-types/post.php:225 (get_post_meta) /modules/axoncreator/core/documents-manager.php:201 (__construct) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:72 (get) /modules/axoncreator/core/files/css/post.php:180 (get_data) /modules/axoncreator/core/files/css/base.php:634 (render_css) /modules/axoncreator/core/files/base.php:152 (parse_content) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:82 (get_content) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/core/dynamic-tags/manager.php:434 (enqueue) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
292 | SELECT SQL_NO_CACHE *, ( IF (`id_shop` = 2, 2, 0) + IF (`id_country` = 14, 4, 0) + IF (`id_currency` = 1, 8, 0) + IF (`id_group` = 8, 16, 0) + IF (`id_customer` = 0, 32, 0)) AS `score`
FROM `ps_specific_price`
WHERE
`id_shop` IN (0, 2) AND
`id_currency` IN (0, 1) AND
`id_country` IN (0, 14) AND
`id_group` IN (0, 8) AND `id_product` IN (0, 89024) AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2024-12-29 00:00:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2024-12-29 00:00:00' <= `to`)
AND IF(`from_quantity` > 1, `from_quantity`, 0) <= 1 ORDER BY `id_product_attribute` DESC, `id_cart` DESC, `from_quantity` DESC, `id_specific_price_rule` ASC, `score` DESC, `to` DESC, `from` DESC LIMIT 1 | 0.313 ms | 9 | Yes | | /override/classes/SpecificPrice.php:83 /classes/Product.php:3827 (getSpecificPrice) /override/classes/Product.php:117 (priceCalculation) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:5688 (getPriceStatic) /override/classes/Product.php:184 (getProductProperties) /classes/Product.php:5984 (getProductProperties) /classes/Category.php:1074 (getProductsProperties) /src/Adapter/Category/CategoryProductSearchProvider.php:88 (getProducts) /src/Adapter/Category/CategoryProductSearchProvider.php:105 (getProductsOrCount) /modules/axoncreator/axoncreator.php:1442 (runQuery) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
316 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 2 AND name = 'elementor_viewport_lg' LIMIT 1 | 0.309 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/src/Wp_Helper.php:1253 (get_post_meta) /modules/axoncreator/core/responsive/responsive.php:122 (get_option) :undefined (AxonCreator\Core\Responsive\{closure}) /modules/axoncreator/core/responsive/responsive.php:128 (array_reduce) /modules/axoncreator/core/files/css/base.php:731 (get_breakpoints) /modules/axoncreator/core/files/css/base.php:121 (init_stylesheet) /modules/axoncreator/core/files/css/post.php:64 (__construct) :undefined (__construct) /modules/axoncreator/core/files/manager.php:56 (newInstanceArgs) /modules/axoncreator/core/files/base.php:87 (get) /modules/axoncreator/includes/frontend.php:890 (create) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
121 | SELECT SQL_NO_CACHE *
FROM `ps_altautofiller`
INNER JOIN `ps_altautofiller_lang` ON `ps_altautofiller`.`id_altautofiller` = `ps_altautofiller_lang`.`id_altautofiller`
WHERE `id_shop` = 2
AND `id_lang` = 6
AND `active` = 1 AND (`products` = "" OR FIND_IN_SET(87927, `products`)) AND (`categories` = "" OR FIND_IN_SET(3, `categories`) OR FIND_IN_SET(282, `categories`) OR FIND_IN_SET(1209, `categories`)) AND (`manufacturers` = "" OR FIND_IN_SET("66", `manufacturers`)) AND (`suppliers` = "" OR FIND_IN_SET("0", `suppliers`)) ORDER BY `priority` ASC | 0.299 ms | 2 | Yes | | /modules/altautofiller/classes/AltAutoFillerConfiguration.php:150 /modules/altautofiller/altautofiller.php:623 (getLegend) /classes/Hook.php:1043 (hookActionPresentProduct) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /src/Adapter/Presenter/Product/ProductPresenter.php:114 (exec) /controllers/front/ProductController.php:1242 (present) /controllers/front/ProductController.php:421 (getTemplateVarProduct) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
331 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 2 AND name = 'elementor_viewport_md' LIMIT 1 | 0.296 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/src/Wp_Helper.php:1253 (get_post_meta) /modules/axoncreator/core/responsive/responsive.php:122 (get_option) :undefined (AxonCreator\Core\Responsive\{closure}) /modules/axoncreator/core/responsive/responsive.php:128 (array_reduce) /modules/axoncreator/core/files/css/base.php:731 (get_breakpoints) /modules/axoncreator/core/files/css/base.php:121 (init_stylesheet) /modules/axoncreator/core/files/css/post.php:64 (__construct) :undefined (__construct) /modules/axoncreator/core/files/manager.php:56 (newInstanceArgs) /modules/axoncreator/core/files/base.php:87 (get) /modules/axoncreator/includes/frontend.php:890 (create) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/6f/71/05/6f71057721edbe5ad9dec765be9ecf77cd901743_2.file.footer.tpl.php:51 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190514d3534_50355539) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:246 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:427 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
22 | SELECT SQL_NO_CACHE `id_hook`, `name` FROM `ps_hook` | 0.295 ms | 1205 | | | /classes/Hook.php:1292 /classes/Hook.php:225 (getAllHookIds) /classes/Hook.php:851 (getIdByName) /classes/Dispatcher.php:611 (exec) /classes/Dispatcher.php:243 (loadRoutes) /classes/Dispatcher.php:201 (__construct) /index.php:40 (getInstance)
|
213 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 2 AND name = 'elementor_global_image_lightbox' LIMIT 1 | 0.294 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/src/Wp_Helper.php:1253 (get_post_meta) /modules/axoncreator/core/settings/general/manager.php:111 (get_option) /modules/axoncreator/core/settings/base/manager.php:429 (get_saved_settings) /modules/axoncreator/core/settings/base/manager.php:124 (create_model) /modules/axoncreator/includes/controls/groups/typography.php:104 (get_model) /modules/axoncreator/includes/controls/groups/base.php:178 (init_fields) /modules/axoncreator/includes/controls/groups/base.php:267 (get_fields) /modules/axoncreator/includes/controls/groups/base.php:103 (filter_fields) /modules/axoncreator/includes/base/controls-stack.php:721 (add_controls) /modules/axoncreator/includes/widgets/heading.php:249 (add_group_control) /modules/axoncreator/includes/base/controls-stack.php:1923 (_register_controls) /modules/axoncreator/includes/base/controls-stack.php:510 (init_controls) /modules/axoncreator/includes/base/widget-base.php:162 (get_stack) /modules/axoncreator/includes/base/controls-stack.php:303 (get_stack) /modules/axoncreator/includes/base/controls-stack.php:1958 (get_controls) /modules/axoncreator/includes/base/controls-stack.php:1045 (sanitize_settings) /modules/axoncreator/includes/base/controls-stack.php:1798 (get_data) /modules/axoncreator/core/base/base-object.php:145 (get_init_settings) /modules/axoncreator/core/base/base-object.php:53 (ensure_settings) /modules/axoncreator/core/files/css/post.php:302 (get_settings) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/files/css/post.php:190 (render_styles) /modules/axoncreator/core/files/css/base.php:634 (render_css) /modules/axoncreator/core/files/base.php:152 (parse_content) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:82 (get_content) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/core/dynamic-tags/manager.php:434 (enqueue) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
83 | SELECT SQL_NO_CACHE *, ( IF (`id_shop` = 2, 2, 0) + IF (`id_country` = 14, 4, 0) + IF (`id_currency` = 1, 8, 0) + IF (`id_group` = 8, 16, 0) + IF (`id_customer` = 0, 32, 0)) AS `score`
FROM `ps_specific_price`
WHERE
`id_shop` IN (0, 2) AND
`id_currency` IN (0, 1) AND
`id_country` IN (0, 14) AND
`id_group` IN (0, 8) AND `id_product` IN (0, 87927) AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2024-12-29 00:00:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2024-12-29 00:00:00' <= `to`)
AND IF(`from_quantity` > 1, `from_quantity`, 0) <= 1 ORDER BY `id_product_attribute` DESC, `id_cart` DESC, `from_quantity` DESC, `id_specific_price_rule` ASC, `score` DESC, `to` DESC, `from` DESC LIMIT 1 | 0.290 ms | 4 | Yes | | /override/classes/SpecificPrice.php:83 /classes/Product.php:3827 (getSpecificPrice) /override/classes/Product.php:117 (priceCalculation) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:748 (getPriceStatic) /override/classes/Product.php:9 (__construct) /controllers/front/ProductController.php:146 (__construct) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
211 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 2 AND name = 'elementor_stretched_section_container' LIMIT 1 | 0.290 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/src/Wp_Helper.php:1253 (get_post_meta) /modules/axoncreator/core/settings/general/manager.php:111 (get_option) /modules/axoncreator/core/settings/base/manager.php:429 (get_saved_settings) /modules/axoncreator/core/settings/base/manager.php:124 (create_model) /modules/axoncreator/includes/controls/groups/typography.php:104 (get_model) /modules/axoncreator/includes/controls/groups/base.php:178 (init_fields) /modules/axoncreator/includes/controls/groups/base.php:267 (get_fields) /modules/axoncreator/includes/controls/groups/base.php:103 (filter_fields) /modules/axoncreator/includes/base/controls-stack.php:721 (add_controls) /modules/axoncreator/includes/widgets/heading.php:249 (add_group_control) /modules/axoncreator/includes/base/controls-stack.php:1923 (_register_controls) /modules/axoncreator/includes/base/controls-stack.php:510 (init_controls) /modules/axoncreator/includes/base/widget-base.php:162 (get_stack) /modules/axoncreator/includes/base/controls-stack.php:303 (get_stack) /modules/axoncreator/includes/base/controls-stack.php:1958 (get_controls) /modules/axoncreator/includes/base/controls-stack.php:1045 (sanitize_settings) /modules/axoncreator/includes/base/controls-stack.php:1798 (get_data) /modules/axoncreator/core/base/base-object.php:145 (get_init_settings) /modules/axoncreator/core/base/base-object.php:53 (ensure_settings) /modules/axoncreator/core/files/css/post.php:302 (get_settings) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/files/css/post.php:190 (render_styles) /modules/axoncreator/core/files/css/base.php:634 (render_css) /modules/axoncreator/core/files/base.php:152 (parse_content) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:82 (get_content) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/core/dynamic-tags/manager.php:434 (enqueue) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
332 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 2 AND name = 'elementor_viewport_lg' LIMIT 1 | 0.286 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/src/Wp_Helper.php:1253 (get_post_meta) /modules/axoncreator/core/responsive/responsive.php:122 (get_option) :undefined (AxonCreator\Core\Responsive\{closure}) /modules/axoncreator/core/responsive/responsive.php:128 (array_reduce) /modules/axoncreator/core/files/css/base.php:731 (get_breakpoints) /modules/axoncreator/core/files/css/base.php:121 (init_stylesheet) /modules/axoncreator/core/files/css/post.php:64 (__construct) :undefined (__construct) /modules/axoncreator/core/files/manager.php:56 (newInstanceArgs) /modules/axoncreator/core/files/base.php:87 (get) /modules/axoncreator/includes/frontend.php:890 (create) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/6f/71/05/6f71057721edbe5ad9dec765be9ecf77cd901743_2.file.footer.tpl.php:51 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190514d3534_50355539) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:246 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:427 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
212 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 2 AND name = 'elementor_page_title_selector' LIMIT 1 | 0.282 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/src/Wp_Helper.php:1253 (get_post_meta) /modules/axoncreator/core/settings/general/manager.php:111 (get_option) /modules/axoncreator/core/settings/base/manager.php:429 (get_saved_settings) /modules/axoncreator/core/settings/base/manager.php:124 (create_model) /modules/axoncreator/includes/controls/groups/typography.php:104 (get_model) /modules/axoncreator/includes/controls/groups/base.php:178 (init_fields) /modules/axoncreator/includes/controls/groups/base.php:267 (get_fields) /modules/axoncreator/includes/controls/groups/base.php:103 (filter_fields) /modules/axoncreator/includes/base/controls-stack.php:721 (add_controls) /modules/axoncreator/includes/widgets/heading.php:249 (add_group_control) /modules/axoncreator/includes/base/controls-stack.php:1923 (_register_controls) /modules/axoncreator/includes/base/controls-stack.php:510 (init_controls) /modules/axoncreator/includes/base/widget-base.php:162 (get_stack) /modules/axoncreator/includes/base/controls-stack.php:303 (get_stack) /modules/axoncreator/includes/base/controls-stack.php:1958 (get_controls) /modules/axoncreator/includes/base/controls-stack.php:1045 (sanitize_settings) /modules/axoncreator/includes/base/controls-stack.php:1798 (get_data) /modules/axoncreator/core/base/base-object.php:145 (get_init_settings) /modules/axoncreator/core/base/base-object.php:53 (ensure_settings) /modules/axoncreator/core/files/css/post.php:302 (get_settings) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/files/css/post.php:190 (render_styles) /modules/axoncreator/core/files/css/base.php:634 (render_css) /modules/axoncreator/core/files/base.php:152 (parse_content) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:82 (get_content) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/core/dynamic-tags/manager.php:434 (enqueue) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
103 | SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 2 )
INNER JOIN ps_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 2)
WHERE `id_lang` = 6
AND c.`id_parent` = 2
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC | 0.279 ms | 46 | Yes | Yes | /classes/Category.php:1151 /classes/Category.php:1087 (getChildren) /controllers/front/ProductController.php:902 (getHomeCategories) /controllers/front/ProductController.php:368 (assignCategory) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
334 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 2 AND name = 'elementor_viewport_md' LIMIT 1 | 0.277 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/src/Wp_Helper.php:1253 (get_post_meta) /modules/axoncreator/core/responsive/responsive.php:122 (get_option) :undefined (AxonCreator\Core\Responsive\{closure}) /modules/axoncreator/core/responsive/responsive.php:128 (array_reduce) /modules/axoncreator/core/files/css/base.php:731 (get_breakpoints) /modules/axoncreator/core/files/css/base.php:121 (init_stylesheet) /modules/axoncreator/core/files/css/post.php:64 (__construct) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:40 (__construct) /modules/axoncreator/core/dynamic-tags/manager.php:432 (__construct) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/6f/71/05/6f71057721edbe5ad9dec765be9ecf77cd901743_2.file.footer.tpl.php:51 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190514d3534_50355539) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:246 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:427 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
214 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 2 AND name = 'elementor_enable_lightbox_in_editor' LIMIT 1 | 0.275 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/src/Wp_Helper.php:1253 (get_post_meta) /modules/axoncreator/core/settings/general/manager.php:111 (get_option) /modules/axoncreator/core/settings/base/manager.php:429 (get_saved_settings) /modules/axoncreator/core/settings/base/manager.php:124 (create_model) /modules/axoncreator/includes/controls/groups/typography.php:104 (get_model) /modules/axoncreator/includes/controls/groups/base.php:178 (init_fields) /modules/axoncreator/includes/controls/groups/base.php:267 (get_fields) /modules/axoncreator/includes/controls/groups/base.php:103 (filter_fields) /modules/axoncreator/includes/base/controls-stack.php:721 (add_controls) /modules/axoncreator/includes/widgets/heading.php:249 (add_group_control) /modules/axoncreator/includes/base/controls-stack.php:1923 (_register_controls) /modules/axoncreator/includes/base/controls-stack.php:510 (init_controls) /modules/axoncreator/includes/base/widget-base.php:162 (get_stack) /modules/axoncreator/includes/base/controls-stack.php:303 (get_stack) /modules/axoncreator/includes/base/controls-stack.php:1958 (get_controls) /modules/axoncreator/includes/base/controls-stack.php:1045 (sanitize_settings) /modules/axoncreator/includes/base/controls-stack.php:1798 (get_data) /modules/axoncreator/core/base/base-object.php:145 (get_init_settings) /modules/axoncreator/core/base/base-object.php:53 (ensure_settings) /modules/axoncreator/core/files/css/post.php:302 (get_settings) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/files/css/post.php:190 (render_styles) /modules/axoncreator/core/files/css/base.php:634 (render_css) /modules/axoncreator/core/files/base.php:152 (parse_content) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:82 (get_content) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/core/dynamic-tags/manager.php:434 (enqueue) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
25 | SELECT SQL_NO_CACHE m.`id_module`, m.`name`, ms.`id_module`as `mshop`
FROM `ps_module` m
LEFT JOIN `ps_module_shop` ms
ON m.`id_module` = ms.`id_module`
AND ms.`id_shop` = 2 | 0.270 ms | 154 | | | /classes/module/Module.php:345 /modules/psmerchantassistant/psmerchantassistant.php:89 (__construct) :undefined (__construct) /src/Core/Foundation/IoC/Container.php:123 (newInstance) /src/Core/Foundation/IoC/Container.php:153 (makeInstanceFromClassName) /src/Core/Foundation/IoC/Container.php:166 (doMake) /src/Adapter/ServiceLocator.php:70 (make) /classes/module/Module.php:1235 (get) /tools/profiling/Module.php:35 (coreLoadModule) /classes/module/Module.php:1214 (coreLoadModule) /classes/Hook.php:966 (getInstanceByName) /classes/Dispatcher.php:611 (exec) /classes/Dispatcher.php:243 (loadRoutes) /classes/Dispatcher.php:201 (__construct) /index.php:40 (getInstance)
|
128 | SELECT SQL_NO_CACHE * FROM `ps_cart_rule` cr
LEFT JOIN `ps_cart_rule_lang` crl
ON (cr.`id_cart_rule` = crl.`id_cart_rule` AND crl.`id_lang` = 6) WHERE (cr.`id_customer` = 0) AND NOW() BETWEEN cr.date_from AND cr.date_to
AND cr.`active` = 1
AND free_shipping = 1 AND carrier_restriction = 1 | 0.267 ms | 13 | | | /classes/CartRule.php:423 /classes/Cart.php:3035 (getCustomerCartRules) /classes/Cart.php:3419 (getDeliveryOptionList) /classes/Cart.php:3492 (getDeliveryOption) /src/Core/Cart/Fees.php:96 (getTotalShippingCost) /src/Core/Cart/Calculator.php:354 (processCalculation) /src/Core/Cart/Calculator.php:155 (calculateFees) /classes/Cart.php:2187 (processCalculation) /src/Adapter/Presenter/Cart/CartPresenter.php:334 (getOrderTotal) /classes/controller/FrontController.php:545 (present) /classes/controller/FrontController.php:614 (assignGeneralPurposeVariables) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
210 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 2 AND name = 'elementor_space_between_widgets' LIMIT 1 | 0.264 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/src/Wp_Helper.php:1253 (get_post_meta) /modules/axoncreator/core/settings/general/manager.php:111 (get_option) /modules/axoncreator/core/settings/base/manager.php:429 (get_saved_settings) /modules/axoncreator/core/settings/base/manager.php:124 (create_model) /modules/axoncreator/includes/controls/groups/typography.php:104 (get_model) /modules/axoncreator/includes/controls/groups/base.php:178 (init_fields) /modules/axoncreator/includes/controls/groups/base.php:267 (get_fields) /modules/axoncreator/includes/controls/groups/base.php:103 (filter_fields) /modules/axoncreator/includes/base/controls-stack.php:721 (add_controls) /modules/axoncreator/includes/widgets/heading.php:249 (add_group_control) /modules/axoncreator/includes/base/controls-stack.php:1923 (_register_controls) /modules/axoncreator/includes/base/controls-stack.php:510 (init_controls) /modules/axoncreator/includes/base/widget-base.php:162 (get_stack) /modules/axoncreator/includes/base/controls-stack.php:303 (get_stack) /modules/axoncreator/includes/base/controls-stack.php:1958 (get_controls) /modules/axoncreator/includes/base/controls-stack.php:1045 (sanitize_settings) /modules/axoncreator/includes/base/controls-stack.php:1798 (get_data) /modules/axoncreator/core/base/base-object.php:145 (get_init_settings) /modules/axoncreator/core/base/base-object.php:53 (ensure_settings) /modules/axoncreator/core/files/css/post.php:302 (get_settings) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/files/css/post.php:190 (render_styles) /modules/axoncreator/core/files/css/base.php:634 (render_css) /modules/axoncreator/core/files/base.php:152 (parse_content) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:82 (get_content) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/core/dynamic-tags/manager.php:434 (enqueue) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
246 | SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position, fvl.id_feature_value
FROM ps_feature_product pf
LEFT JOIN ps_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 6)
LEFT JOIN ps_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 6)
LEFT JOIN ps_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 6)
INNER JOIN ps_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 2)
WHERE pf.id_product = 87926
ORDER BY f.position ASC | 0.260 ms | 3 | Yes | | /classes/Product.php:6015 /classes/Product.php:5818 (getFrontFeaturesStatic) /override/classes/Product.php:184 (getProductProperties) /classes/ProductAssembler.php:187 (getProductProperties) /modules/nrtproductslinknav/nrtproductslinknav.php:178 (assembleProduct) /modules/nrtproductslinknav/nrtproductslinknav.php:148 (getInfoProduct) /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
106 | SELECT SQL_NO_CACHE DISTINCT a.`id_attribute`, a.`id_attribute_group`, al.`name` as `attribute`, agl.`name` as `group`,pa.`reference`, pa.`ean13`, pa.`isbn`, pa.`upc`, pa.`mpn`
FROM `ps_attribute` a
LEFT JOIN `ps_attribute_lang` al
ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 6)
LEFT JOIN `ps_attribute_group_lang` agl
ON (a.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 6)
LEFT JOIN `ps_product_attribute_combination` pac
ON (a.`id_attribute` = pac.`id_attribute`)
LEFT JOIN `ps_product_attribute` pa
ON (pac.`id_product_attribute` = pa.`id_product_attribute`)
INNER JOIN ps_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 2)
INNER JOIN ps_attribute_shop attribute_shop
ON (attribute_shop.id_attribute = pac.id_attribute AND attribute_shop.id_shop = 2)
WHERE pa.`id_product` = 87927 | 0.260 ms | 1 | | | /classes/Product.php:7557 /controllers/front/ProductController.php:861 (getAttributesInformationsByProduct) /controllers/front/ProductController.php:373 (assignAttributesCombinations) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
29 | SELECT SQL_NO_CACHE m.`id_module`, m.`name`, ms.`id_module`as `mshop`
FROM `ps_module` m
LEFT JOIN `ps_module_shop` ms
ON m.`id_module` = ms.`id_module`
AND ms.`id_shop` = 2 | 0.258 ms | 154 | | | /classes/module/Module.php:345 /modules/ets_productmanager/ets_productmanager.php:58 (__construct) :undefined (__construct) /src/Core/Foundation/IoC/Container.php:123 (newInstance) /src/Core/Foundation/IoC/Container.php:153 (makeInstanceFromClassName) /src/Core/Foundation/IoC/Container.php:166 (doMake) /src/Adapter/ServiceLocator.php:70 (make) /classes/module/Module.php:1235 (get) /tools/profiling/Module.php:35 (coreLoadModule) /classes/module/Module.php:1214 (coreLoadModule) /classes/Hook.php:966 (getInstanceByName) /classes/Dispatcher.php:351 (exec) /index.php:40 (dispatch)
|
32 | SELECT SQL_NO_CACHE m.`id_module`, m.`name`, ms.`id_module`as `mshop`
FROM `ps_module` m
LEFT JOIN `ps_module_shop` ms
ON m.`id_module` = ms.`id_module`
AND ms.`id_shop` = 2 | 0.258 ms | 154 | | | /classes/module/Module.php:345 /modules/ps_mbo/ps_mbo.php:106 (__construct) :undefined (__construct) /src/Core/Foundation/IoC/Container.php:123 (newInstance) /src/Core/Foundation/IoC/Container.php:153 (makeInstanceFromClassName) /src/Core/Foundation/IoC/Container.php:166 (doMake) /src/Adapter/ServiceLocator.php:70 (make) /classes/module/Module.php:1235 (get) /tools/profiling/Module.php:35 (coreLoadModule) /classes/module/Module.php:1214 (coreLoadModule) /classes/Hook.php:966 (getInstanceByName) /classes/Dispatcher.php:351 (exec) /index.php:40 (dispatch)
|
23 | SELECT SQL_NO_CACHE m.`id_module`, m.`name`, ms.`id_module`as `mshop`
FROM `ps_module` m
LEFT JOIN `ps_module_shop` ms
ON m.`id_module` = ms.`id_module`
AND ms.`id_shop` = 2 | 0.256 ms | 154 | | | /classes/module/Module.php:345 /modules/smartblog/smartblog.php:57 (__construct) :undefined (__construct) /src/Core/Foundation/IoC/Container.php:123 (newInstance) /src/Core/Foundation/IoC/Container.php:153 (makeInstanceFromClassName) /src/Core/Foundation/IoC/Container.php:166 (doMake) /src/Adapter/ServiceLocator.php:70 (make) /classes/module/Module.php:1235 (get) /tools/profiling/Module.php:35 (coreLoadModule) /classes/module/Module.php:1214 (coreLoadModule) /classes/Hook.php:966 (getInstanceByName) /classes/Dispatcher.php:611 (exec) /classes/Dispatcher.php:243 (loadRoutes) /classes/Dispatcher.php:201 (__construct) /index.php:40 (getInstance)
|
209 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 2 AND name = 'elementor_container_width' LIMIT 1 | 0.256 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/src/Wp_Helper.php:1253 (get_post_meta) /modules/axoncreator/core/settings/general/manager.php:111 (get_option) /modules/axoncreator/core/settings/base/manager.php:429 (get_saved_settings) /modules/axoncreator/core/settings/base/manager.php:124 (create_model) /modules/axoncreator/includes/controls/groups/typography.php:104 (get_model) /modules/axoncreator/includes/controls/groups/base.php:178 (init_fields) /modules/axoncreator/includes/controls/groups/base.php:267 (get_fields) /modules/axoncreator/includes/controls/groups/base.php:103 (filter_fields) /modules/axoncreator/includes/base/controls-stack.php:721 (add_controls) /modules/axoncreator/includes/widgets/heading.php:249 (add_group_control) /modules/axoncreator/includes/base/controls-stack.php:1923 (_register_controls) /modules/axoncreator/includes/base/controls-stack.php:510 (init_controls) /modules/axoncreator/includes/base/widget-base.php:162 (get_stack) /modules/axoncreator/includes/base/controls-stack.php:303 (get_stack) /modules/axoncreator/includes/base/controls-stack.php:1958 (get_controls) /modules/axoncreator/includes/base/controls-stack.php:1045 (sanitize_settings) /modules/axoncreator/includes/base/controls-stack.php:1798 (get_data) /modules/axoncreator/core/base/base-object.php:145 (get_init_settings) /modules/axoncreator/core/base/base-object.php:53 (ensure_settings) /modules/axoncreator/core/files/css/post.php:302 (get_settings) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/files/css/post.php:190 (render_styles) /modules/axoncreator/core/files/css/base.php:634 (render_css) /modules/axoncreator/core/files/base.php:152 (parse_content) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:82 (get_content) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/core/dynamic-tags/manager.php:434 (enqueue) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
28 | SELECT SQL_NO_CACHE m.`id_module`, m.`name`, ms.`id_module`as `mshop`
FROM `ps_module` m
LEFT JOIN `ps_module_shop` ms
ON m.`id_module` = ms.`id_module`
AND ms.`id_shop` = 2 | 0.254 ms | 154 | | | /classes/module/Module.php:345 /modules/etsloginascustomer/etsloginascustomer.php:42 (__construct) :undefined (__construct) /src/Core/Foundation/IoC/Container.php:123 (newInstance) /src/Core/Foundation/IoC/Container.php:153 (makeInstanceFromClassName) /src/Core/Foundation/IoC/Container.php:166 (doMake) /src/Adapter/ServiceLocator.php:70 (make) /classes/module/Module.php:1235 (get) /tools/profiling/Module.php:35 (coreLoadModule) /classes/module/Module.php:1214 (coreLoadModule) /classes/Hook.php:966 (getInstanceByName) /classes/Dispatcher.php:351 (exec) /index.php:40 (dispatch)
|
217 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 2 AND name = 'elementor_lightbox_ui_color_hover' LIMIT 1 | 0.254 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/src/Wp_Helper.php:1253 (get_post_meta) /modules/axoncreator/core/settings/general/manager.php:111 (get_option) /modules/axoncreator/core/settings/base/manager.php:429 (get_saved_settings) /modules/axoncreator/core/settings/base/manager.php:124 (create_model) /modules/axoncreator/includes/controls/groups/typography.php:104 (get_model) /modules/axoncreator/includes/controls/groups/base.php:178 (init_fields) /modules/axoncreator/includes/controls/groups/base.php:267 (get_fields) /modules/axoncreator/includes/controls/groups/base.php:103 (filter_fields) /modules/axoncreator/includes/base/controls-stack.php:721 (add_controls) /modules/axoncreator/includes/widgets/heading.php:249 (add_group_control) /modules/axoncreator/includes/base/controls-stack.php:1923 (_register_controls) /modules/axoncreator/includes/base/controls-stack.php:510 (init_controls) /modules/axoncreator/includes/base/widget-base.php:162 (get_stack) /modules/axoncreator/includes/base/controls-stack.php:303 (get_stack) /modules/axoncreator/includes/base/controls-stack.php:1958 (get_controls) /modules/axoncreator/includes/base/controls-stack.php:1045 (sanitize_settings) /modules/axoncreator/includes/base/controls-stack.php:1798 (get_data) /modules/axoncreator/core/base/base-object.php:145 (get_init_settings) /modules/axoncreator/core/base/base-object.php:53 (ensure_settings) /modules/axoncreator/core/files/css/post.php:302 (get_settings) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/files/css/post.php:190 (render_styles) /modules/axoncreator/core/files/css/base.php:634 (render_css) /modules/axoncreator/core/files/base.php:152 (parse_content) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:82 (get_content) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/core/dynamic-tags/manager.php:434 (enqueue) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
215 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 2 AND name = 'elementor_lightbox_color' LIMIT 1 | 0.254 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/src/Wp_Helper.php:1253 (get_post_meta) /modules/axoncreator/core/settings/general/manager.php:111 (get_option) /modules/axoncreator/core/settings/base/manager.php:429 (get_saved_settings) /modules/axoncreator/core/settings/base/manager.php:124 (create_model) /modules/axoncreator/includes/controls/groups/typography.php:104 (get_model) /modules/axoncreator/includes/controls/groups/base.php:178 (init_fields) /modules/axoncreator/includes/controls/groups/base.php:267 (get_fields) /modules/axoncreator/includes/controls/groups/base.php:103 (filter_fields) /modules/axoncreator/includes/base/controls-stack.php:721 (add_controls) /modules/axoncreator/includes/widgets/heading.php:249 (add_group_control) /modules/axoncreator/includes/base/controls-stack.php:1923 (_register_controls) /modules/axoncreator/includes/base/controls-stack.php:510 (init_controls) /modules/axoncreator/includes/base/widget-base.php:162 (get_stack) /modules/axoncreator/includes/base/controls-stack.php:303 (get_stack) /modules/axoncreator/includes/base/controls-stack.php:1958 (get_controls) /modules/axoncreator/includes/base/controls-stack.php:1045 (sanitize_settings) /modules/axoncreator/includes/base/controls-stack.php:1798 (get_data) /modules/axoncreator/core/base/base-object.php:145 (get_init_settings) /modules/axoncreator/core/base/base-object.php:53 (ensure_settings) /modules/axoncreator/core/files/css/post.php:302 (get_settings) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/files/css/post.php:190 (render_styles) /modules/axoncreator/core/files/css/base.php:634 (render_css) /modules/axoncreator/core/files/base.php:152 (parse_content) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:82 (get_content) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/core/dynamic-tags/manager.php:434 (enqueue) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
193 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 2 AND name = 'elementor_disable_colorpicker_schemes' LIMIT 1 | 0.249 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/src/Wp_Helper.php:1253 (get_post_meta) /modules/axoncreator/includes/managers/schemes.php:310 (get_option) /modules/axoncreator/includes/elements/section.php:1100 (get_enabled_schemes) /modules/axoncreator/includes/base/controls-stack.php:1923 (_register_controls) /modules/axoncreator/includes/base/controls-stack.php:510 (init_controls) /modules/axoncreator/includes/base/controls-stack.php:303 (get_stack) /modules/axoncreator/includes/base/controls-stack.php:1958 (get_controls) /modules/axoncreator/includes/base/controls-stack.php:1045 (sanitize_settings) /modules/axoncreator/includes/base/controls-stack.php:1798 (get_data) /modules/axoncreator/core/base/base-object.php:145 (get_init_settings) /modules/axoncreator/core/base/base-object.php:53 (ensure_settings) /modules/axoncreator/core/files/css/post.php:302 (get_settings) /modules/axoncreator/core/files/css/post.php:190 (render_styles) /modules/axoncreator/core/files/css/base.php:634 (render_css) /modules/axoncreator/core/files/base.php:152 (parse_content) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:82 (get_content) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/core/dynamic-tags/manager.php:434 (enqueue) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
216 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 2 AND name = 'elementor_lightbox_ui_color' LIMIT 1 | 0.248 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/src/Wp_Helper.php:1253 (get_post_meta) /modules/axoncreator/core/settings/general/manager.php:111 (get_option) /modules/axoncreator/core/settings/base/manager.php:429 (get_saved_settings) /modules/axoncreator/core/settings/base/manager.php:124 (create_model) /modules/axoncreator/includes/controls/groups/typography.php:104 (get_model) /modules/axoncreator/includes/controls/groups/base.php:178 (init_fields) /modules/axoncreator/includes/controls/groups/base.php:267 (get_fields) /modules/axoncreator/includes/controls/groups/base.php:103 (filter_fields) /modules/axoncreator/includes/base/controls-stack.php:721 (add_controls) /modules/axoncreator/includes/widgets/heading.php:249 (add_group_control) /modules/axoncreator/includes/base/controls-stack.php:1923 (_register_controls) /modules/axoncreator/includes/base/controls-stack.php:510 (init_controls) /modules/axoncreator/includes/base/widget-base.php:162 (get_stack) /modules/axoncreator/includes/base/controls-stack.php:303 (get_stack) /modules/axoncreator/includes/base/controls-stack.php:1958 (get_controls) /modules/axoncreator/includes/base/controls-stack.php:1045 (sanitize_settings) /modules/axoncreator/includes/base/controls-stack.php:1798 (get_data) /modules/axoncreator/core/base/base-object.php:145 (get_init_settings) /modules/axoncreator/core/base/base-object.php:53 (ensure_settings) /modules/axoncreator/core/files/css/post.php:302 (get_settings) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/files/css/post.php:190 (render_styles) /modules/axoncreator/core/files/css/base.php:634 (render_css) /modules/axoncreator/core/files/base.php:152 (parse_content) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:82 (get_content) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/core/dynamic-tags/manager.php:434 (enqueue) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
265 | SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position, fvl.id_feature_value
FROM ps_feature_product pf
LEFT JOIN ps_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 6)
LEFT JOIN ps_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 6)
LEFT JOIN ps_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 6)
INNER JOIN ps_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 2)
WHERE pf.id_product = 87928
ORDER BY f.position ASC | 0.242 ms | 3 | Yes | | /classes/Product.php:6015 /classes/Product.php:5818 (getFrontFeaturesStatic) /override/classes/Product.php:184 (getProductProperties) /classes/ProductAssembler.php:187 (getProductProperties) /modules/nrtproductslinknav/nrtproductslinknav.php:178 (assembleProduct) /modules/nrtproductslinknav/nrtproductslinknav.php:155 (getInfoProduct) /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
134 | SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 2
WHERE (a.`id_product` = 87927) AND (b.`id_shop` = 2) LIMIT 1 | 0.241 ms | 1 | | | /src/Adapter/EntityMapper.php:71 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /classes/Product.php:725 (__construct) /override/classes/Product.php:9 (__construct) /classes/Link.php:113 (__construct) /classes/Link.php:185 (getProductObject) /classes/Link.php:1215 (getProductLink) /classes/controller/FrontController.php:2168 (getLanguageLink) /classes/controller/FrontController.php:1609 (getAlternativeLangsUrl) /classes/controller/FrontController.php:1742 (getTemplateVarUrls) /classes/controller/FrontController.php:551 (getTemplateVarShop) /classes/controller/FrontController.php:614 (assignGeneralPurposeVariables) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
304 | SELECT SQL_NO_CACHE *, ( IF (`id_shop` = 2, 2, 0) + IF (`id_country` = 14, 4, 0) + IF (`id_currency` = 1, 8, 0) + IF (`id_group` = 8, 16, 0) + IF (`id_customer` = 0, 32, 0)) AS `score`
FROM `ps_specific_price`
WHERE
`id_shop` IN (0, 2) AND
`id_currency` IN (0, 1) AND
`id_country` IN (0, 14) AND
`id_group` IN (0, 8) AND `id_product` IN (0, 82457) AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2024-12-29 00:00:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2024-12-29 00:00:00' <= `to`)
AND IF(`from_quantity` > 1, `from_quantity`, 0) <= 1 ORDER BY `id_product_attribute` DESC, `id_cart` DESC, `from_quantity` DESC, `id_specific_price_rule` ASC, `score` DESC, `to` DESC, `from` DESC LIMIT 1 | 0.230 ms | 5 | Yes | | /override/classes/SpecificPrice.php:83 /classes/Product.php:3827 (getSpecificPrice) /override/classes/Product.php:117 (priceCalculation) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:5688 (getPriceStatic) /override/classes/Product.php:184 (getProductProperties) /classes/Product.php:5984 (getProductProperties) /classes/Category.php:1074 (getProductsProperties) /src/Adapter/Category/CategoryProductSearchProvider.php:88 (getProducts) /src/Adapter/Category/CategoryProductSearchProvider.php:105 (getProductsOrCount) /modules/axoncreator/axoncreator.php:1442 (runQuery) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
300 | SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position, fvl.id_feature_value
FROM ps_feature_product pf
LEFT JOIN ps_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 6)
LEFT JOIN ps_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 6)
LEFT JOIN ps_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 6)
INNER JOIN ps_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 2)
WHERE pf.id_product = 89024
ORDER BY f.position ASC | 0.230 ms | 5 | Yes | | /classes/Product.php:6015 /classes/Product.php:5818 (getFrontFeaturesStatic) /override/classes/Product.php:184 (getProductProperties) /classes/Product.php:5984 (getProductProperties) /classes/Category.php:1074 (getProductsProperties) /src/Adapter/Category/CategoryProductSearchProvider.php:88 (getProducts) /src/Adapter/Category/CategoryProductSearchProvider.php:105 (getProductsOrCount) /modules/axoncreator/axoncreator.php:1442 (runQuery) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
328 | SELECT SQL_NO_CACHE *
FROM `ps_category` a0
LEFT JOIN `ps_category_lang` `a1` ON (a0.`id_category` = a1.`id_category`)
WHERE (a0.`nleft` < 33) AND (a0.`nright` > 44) AND (a1.`id_lang` = 6) AND (a1.`id_shop` = 2)
ORDER BY a0.`nleft` asc | 0.229 ms | 18 | | | /classes/PrestaShopCollection.php:383 /classes/PrestaShopCollection.php:428 (getAll) /modules/seigitagmanager/classes/google/event/Converter.php:281 (getResults) /modules/seigitagmanager/classes/google/event/Converter.php:83 (formatProduct) /modules/seigitagmanager/classes/integrations/ga4/ga4.php:252 (createBasicDataTag) /modules/seigitagmanager/seigitagmanager.inc.php:733 (runEvent) /modules/seigitagmanager/seigitagmanager.inc.php:703 (executeFrontFooter) /classes/Hook.php:1043 (hookdisplayFooter) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/6f/71/05/6f71057721edbe5ad9dec765be9ecf77cd901743_2.file.footer.tpl.php:83 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/6f/71/05/6f71057721edbe5ad9dec765be9ecf77cd901743_2.file.footer.tpl.php:38 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190514d3534_50355539) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:246 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:427 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
105 | SELECT SQL_NO_CACHE *,
( IF (`id_shop` = 2, 2, 0) + IF (`id_country` = 14, 4, 0) + IF (`id_currency` = 1, 8, 0) + IF (`id_group` = 8, 16, 0) + IF (`id_customer` = 0, 32, 0)) AS `score`
FROM `ps_specific_price`
WHERE
`id_shop` IN (0, 2) AND
`id_currency` IN (0, 1) AND
`id_country` IN (0, 14) AND
`id_group` IN (0, 8) AND `id_product` IN (0, 87927) AND `id_customer` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2024-12-29 00:00:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2024-12-29 00:00:00' <= `to`)
ORDER BY `from_quantity` ASC, `id_specific_price_rule` ASC, `score` DESC, `to` DESC, `from` DESC | 0.226 ms | 4 | Yes | | /classes/SpecificPrice.php:656 /controllers/front/ProductController.php:602 (getQuantityDiscounts) /controllers/front/ProductController.php:370 (assignPriceAndTax) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
120 | SELECT SQL_NO_CACHE `id_category` FROM `ps_category_product`
WHERE `id_product` = 87927 | 0.226 ms | 3 | | | /classes/Product.php:3423 /modules/altautofiller/classes/AltAutoFillerConfiguration.php:114 (getProductCategories) /modules/altautofiller/altautofiller.php:623 (getLegend) /classes/Hook.php:1043 (hookActionPresentProduct) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /src/Adapter/Presenter/Product/ProductPresenter.php:114 (exec) /controllers/front/ProductController.php:1242 (present) /controllers/front/ProductController.php:421 (getTemplateVarProduct) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
336 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 22 AND name = '_wp_page_template_id_lang_6' LIMIT 1 | 0.226 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/core/document-types/post.php:225 (get_post_meta) /modules/axoncreator/core/documents-manager.php:201 (__construct) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:72 (get) /modules/axoncreator/core/files/css/post.php:180 (get_data) /modules/axoncreator/core/files/css/base.php:634 (render_css) /modules/axoncreator/core/files/base.php:152 (parse_content) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:82 (get_content) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/core/dynamic-tags/manager.php:434 (enqueue) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/6f/71/05/6f71057721edbe5ad9dec765be9ecf77cd901743_2.file.footer.tpl.php:51 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190514d3534_50355539) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:246 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:427 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
335 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 2 AND name = 'elementor_viewport_lg' LIMIT 1 | 0.221 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/src/Wp_Helper.php:1253 (get_post_meta) /modules/axoncreator/core/responsive/responsive.php:122 (get_option) :undefined (AxonCreator\Core\Responsive\{closure}) /modules/axoncreator/core/responsive/responsive.php:128 (array_reduce) /modules/axoncreator/core/files/css/base.php:731 (get_breakpoints) /modules/axoncreator/core/files/css/base.php:121 (init_stylesheet) /modules/axoncreator/core/files/css/post.php:64 (__construct) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:40 (__construct) /modules/axoncreator/core/dynamic-tags/manager.php:432 (__construct) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/6f/71/05/6f71057721edbe5ad9dec765be9ecf77cd901743_2.file.footer.tpl.php:51 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190514d3534_50355539) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:246 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:427 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
248 | SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 6
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 2
WHERE (a.`id_product` = 87928) AND (b.`id_shop` = 2) LIMIT 1 | 0.217 ms | 1 | | | /src/Adapter/EntityMapper.php:71 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /classes/Product.php:725 (__construct) /override/classes/Product.php:9 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:153 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
131 | SELECT SQL_NO_CACHE *
FROM `ps_axon_creator_related` bc
LEFT JOIN `ps_axon_creator_related_shop` bcs
ON (bc.`id_axon_creator_related` = bcs.`id_axon_creator_related`)
WHERE bcs.`id_shop` = 2
AND bc.`post_type` = 'product'
AND bc.`key_related` = '87927' LIMIT 1 | 0.215 ms | 21 | | | /modules/axoncreator/src/Wp_Helper.php:1074 /modules/axoncreator/src/Wp_Helper.php:1537 (getRelatedByKey) /modules/axoncreator/axoncreator.php:1269 (reset_post_var) /classes/Hook.php:1043 (hookOverrideLayoutTemplate) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /classes/controller/FrontController.php:1421 (exec) /classes/controller/FrontController.php:1442 (getLayout) /classes/controller/FrontController.php:1799 (getLayoutName) /controllers/front/ProductController.php:1455 (getTemplateVarPage) /classes/controller/FrontController.php:550 (getTemplateVarPage) /classes/controller/FrontController.php:614 (assignGeneralPurposeVariables) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
243 | SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2024-12-29 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM ps_product p
LEFT JOIN ps_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 2
AND pl.id_lang = 6
LEFT JOIN ps_stock_available sa ON sa.id_product = p.id_product
AND sa.id_shop = 0
AND sa.id_product_attribute = 0
AND sa.id_shop_group = 1 LEFT JOIN ps_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 2
WHERE p.id_product IN (87926) | 0.209 ms | 1 | | | /classes/ProductAssembler.php:64 /classes/ProductAssembler.php:182 (addMissingProductFields) /modules/nrtproductslinknav/nrtproductslinknav.php:178 (assembleProduct) /modules/nrtproductslinknav/nrtproductslinknav.php:148 (getInfoProduct) /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
262 | SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2024-12-29 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM ps_product p
LEFT JOIN ps_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 2
AND pl.id_lang = 6
LEFT JOIN ps_stock_available sa ON sa.id_product = p.id_product
AND sa.id_shop = 0
AND sa.id_product_attribute = 0
AND sa.id_shop_group = 1 LEFT JOIN ps_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 2
WHERE p.id_product IN (87928) | 0.203 ms | 1 | | | /classes/ProductAssembler.php:64 /classes/ProductAssembler.php:182 (addMissingProductFields) /modules/nrtproductslinknav/nrtproductslinknav.php:178 (assembleProduct) /modules/nrtproductslinknav/nrtproductslinknav.php:155 (getInfoProduct) /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
115 | SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position, fvl.id_feature_value
FROM ps_feature_product pf
LEFT JOIN ps_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 6)
LEFT JOIN ps_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 6)
LEFT JOIN ps_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 6)
INNER JOIN ps_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 2)
WHERE pf.id_product = 87927
ORDER BY f.position ASC | 0.202 ms | 3 | Yes | | /classes/Product.php:6015 /classes/Product.php:5818 (getFrontFeaturesStatic) /override/classes/Product.php:184 (getProductProperties) /controllers/front/ProductController.php:1207 (getProductProperties) /controllers/front/ProductController.php:421 (getTemplateVarProduct) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
229 | SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 6
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 2
WHERE (a.`id_product` = 87926) AND (b.`id_shop` = 2) LIMIT 1 | 0.194 ms | 1 | | | /src/Adapter/EntityMapper.php:71 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /classes/Product.php:725 (__construct) /override/classes/Product.php:9 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:146 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
311 | SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position, fvl.id_feature_value
FROM ps_feature_product pf
LEFT JOIN ps_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 6)
LEFT JOIN ps_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 6)
LEFT JOIN ps_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 6)
INNER JOIN ps_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 2)
WHERE pf.id_product = 82457
ORDER BY f.position ASC | 0.194 ms | 4 | Yes | | /classes/Product.php:6015 /classes/Product.php:5818 (getFrontFeaturesStatic) /override/classes/Product.php:184 (getProductProperties) /classes/Product.php:5984 (getProductProperties) /classes/Category.php:1074 (getProductsProperties) /src/Adapter/Category/CategoryProductSearchProvider.php:88 (getProducts) /src/Adapter/Category/CategoryProductSearchProvider.php:105 (getProductsOrCount) /modules/axoncreator/axoncreator.php:1442 (runQuery) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
37 | SELECT SQL_NO_CACHE m.`id_module`, m.`name`, ms.`id_module`as `mshop`
FROM `ps_module` m
LEFT JOIN `ps_module_shop` ms
ON m.`id_module` = ms.`id_module`
AND ms.`id_shop` = 2 | 0.193 ms | 154 | | | /classes/module/Module.php:345 /modules/seigitagmanager/seigitagmanager.inc.php:152 (__construct) :undefined (__construct) /src/Core/Foundation/IoC/Container.php:123 (newInstance) /src/Core/Foundation/IoC/Container.php:153 (makeInstanceFromClassName) /src/Core/Foundation/IoC/Container.php:166 (doMake) /src/Adapter/ServiceLocator.php:70 (make) /classes/module/Module.php:1235 (get) /tools/profiling/Module.php:35 (coreLoadModule) /classes/module/Module.php:1214 (coreLoadModule) /classes/Hook.php:966 (getInstanceByName) /classes/Dispatcher.php:507 (exec) /index.php:40 (dispatch)
|
340 | INSERT INTO `ps_connections` (`id_guest`, `id_page`, `ip_address`, `http_referer`, `id_shop`, `id_shop_group`, `date_add`) VALUES ('28780922', '62267', '2890300969', '', '2', '1', '2024-12-29 19:14:16') | 0.192 ms | 1 | | | /classes/ObjectModel.php:622 /classes/Connection.php:188 (add) /classes/Connection.php:97 (setNewConnection) /modules/statsdata/statsdata.php:118 (setPageConnection) /modules/statsdata/statsdata.php:74 (getScriptCustomerPagesViews) /classes/Hook.php:1043 (hookDisplayBeforeBodyClosingTag) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:272 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:439 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
140 | SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 4
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 2
WHERE (a.`id_product` = 87927) AND (b.`id_shop` = 2) LIMIT 1 | 0.191 ms | 1 | | | /src/Adapter/EntityMapper.php:71 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /classes/Product.php:725 (__construct) /override/classes/Product.php:9 (__construct) /classes/Link.php:113 (__construct) /classes/Link.php:185 (getProductObject) /classes/Link.php:1215 (getProductLink) /classes/controller/FrontController.php:2168 (getLanguageLink) /classes/controller/FrontController.php:1609 (getAlternativeLangsUrl) /classes/controller/FrontController.php:1742 (getTemplateVarUrls) /classes/controller/FrontController.php:551 (getTemplateVarShop) /classes/controller/FrontController.php:614 (assignGeneralPurposeVariables) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
127 | SELECT SQL_NO_CACHE 1 FROM `ps_cart_rule` WHERE ((date_to >= "2024-12-29 00:00:00" AND date_to <= "2024-12-29 23:59:59") OR (date_from >= "2024-12-29 00:00:00" AND date_from <= "2024-12-29 23:59:59") OR (date_from < "2024-12-29 00:00:00" AND date_to > "2024-12-29 23:59:59")) AND `id_customer` IN (0,0) LIMIT 1 | 0.190 ms | 14 | | | /classes/CartRule.php:357 /classes/CartRule.php:389 (haveCartRuleToday) /classes/Cart.php:3035 (getCustomerCartRules) /classes/Cart.php:3419 (getDeliveryOptionList) /classes/Cart.php:3492 (getDeliveryOption) /src/Core/Cart/Fees.php:96 (getTotalShippingCost) /src/Core/Cart/Calculator.php:354 (processCalculation) /src/Core/Cart/Calculator.php:155 (calculateFees) /classes/Cart.php:2187 (processCalculation) /src/Adapter/Presenter/Cart/CartPresenter.php:334 (getOrderTotal) /classes/controller/FrontController.php:545 (present) /classes/controller/FrontController.php:614 (assignGeneralPurposeVariables) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
266 | SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 2)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 6)
WHERE i.`id_product` = 87928
ORDER BY `position` | 0.184 ms | 8 | Yes | | /classes/Product.php:3545 /src/Adapter/Image/ImageRetriever.php:84 (getImages) /src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages) /src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages) /src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:179 (present) /modules/nrtproductslinknav/nrtproductslinknav.php:155 (getInfoProduct) /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
68 | SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 6
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 2
WHERE (a.`id_product` = 87927) AND (b.`id_shop` = 2) LIMIT 1 | 0.184 ms | 1 | | | /src/Adapter/EntityMapper.php:71 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /classes/Product.php:725 (__construct) /override/classes/Product.php:9 (__construct) /controllers/front/ProductController.php:146 (__construct) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
247 | SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 2)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 6)
WHERE i.`id_product` = 87926
ORDER BY `position` | 0.183 ms | 7 | Yes | | /classes/Product.php:3545 /src/Adapter/Image/ImageRetriever.php:84 (getImages) /src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages) /src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages) /src/Adapter/Presenter/Product/ProductListingPresenter.php:57 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:179 (present) /modules/nrtproductslinknav/nrtproductslinknav.php:148 (getInfoProduct) /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
274 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 7 AND name = '_elementor_css_id_lang_6' LIMIT 1 | 0.178 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/core/files/css/post.php:122 (get_post_meta) /modules/axoncreator/core/files/base.php:224 (load_meta) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:537 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:150 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
116 | SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 2)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 6)
WHERE i.`id_product` = 87927
ORDER BY `position` | 0.177 ms | 8 | Yes | | /classes/Product.php:3545 /src/Adapter/Image/ImageRetriever.php:84 (getImages) /src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages) /src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages) /src/Adapter/Presenter/Product/ProductPresenter.php:110 (__construct) /controllers/front/ProductController.php:1242 (present) /controllers/front/ProductController.php:421 (getTemplateVarProduct) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
1 | SELECT SQL_NO_CACHE gs.*, s.*, gs.name AS group_name, s.name AS shop_name, s.active, su.domain, su.domain_ssl, su.physical_uri, su.virtual_uri
FROM ps_shop_group gs
LEFT JOIN ps_shop s
ON s.id_shop_group = gs.id_shop_group
LEFT JOIN ps_shop_url su
ON s.id_shop = su.id_shop AND su.main = 1
WHERE s.deleted = 0
AND gs.deleted = 0
ORDER BY gs.name, s.name | 0.172 ms | 4 | Yes | | /classes/shop/Shop.php:715 /classes/shop/Shop.php:774 (cacheShops) /classes/Configuration.php:299 (getShops) /classes/shop/Shop.php:398 (getMultiShopValues) /config/config.inc.php:117 (initialize) /index.php:39 (require)
|
0 | SELECT SQL_NO_CACHE s.id_shop, CONCAT(su.physical_uri, su.virtual_uri) AS uri, su.domain, su.main
FROM ps_shop_url su
LEFT JOIN ps_shop s ON (s.id_shop = su.id_shop)
WHERE (su.domain = 'b2b.homescreen.pl' OR su.domain_ssl = 'b2b.homescreen.pl')
AND s.active = 1
AND s.deleted = 0
ORDER BY LENGTH(CONCAT(su.physical_uri, su.virtual_uri)) DESC | 0.170 ms | 4 | Yes | | /classes/shop/Shop.php:1364 /classes/shop/Shop.php:355 (findShopByHost) /config/config.inc.php:117 (initialize) /index.php:39 (require)
|
74 | SELECT SQL_NO_CACHE tr.*
FROM `ps_tax_rule` tr
JOIN `ps_tax_rules_group` trg ON (tr.`id_tax_rules_group` = trg.`id_tax_rules_group`)
WHERE trg.`active` = 1
AND tr.`id_country` = 14
AND tr.`id_tax_rules_group` = 6
AND tr.`id_state` IN (0, 0)
AND ('0' BETWEEN tr.`zipcode_from` AND tr.`zipcode_to`
OR (tr.`zipcode_to` = 0 AND tr.`zipcode_from` IN(0, '0')))
ORDER BY tr.`zipcode_from` DESC, tr.`zipcode_to` DESC, tr.`id_state` DESC, tr.`id_country` DESC | 0.166 ms | 1 | | | /override/classes/tax/TaxRulesTaxManager.php:119 /classes/Product.php:6893 (getTaxCalculator) /classes/Product.php:741 (getTaxesRate) /override/classes/Product.php:9 (__construct) /controllers/front/ProductController.php:146 (__construct) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
129 | SELECT SQL_NO_CACHE 1 FROM `ps_cart_rule` WHERE ((date_to >= "2024-12-29 00:00:00" AND date_to <= "2024-12-29 23:59:59") OR (date_from >= "2024-12-29 00:00:00" AND date_from <= "2024-12-29 23:59:59") OR (date_from < "2024-12-29 00:00:00" AND date_to > "2024-12-29 23:59:59")) AND `id_customer` IN (0,0) LIMIT 1 | 0.166 ms | 14 | | | /classes/CartRule.php:357 /classes/CartRule.php:389 (haveCartRuleToday) /classes/CartRule.php:569 (getCustomerCartRules) /classes/Cart.php:522 (getCustomerHighlightedDiscounts) /src/Adapter/Presenter/Cart/CartPresenter.php:444 (getDiscounts) /classes/controller/FrontController.php:545 (present) /classes/controller/FrontController.php:614 (assignGeneralPurposeVariables) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
146 | SELECT SQL_NO_CACHE *
FROM `ps_category` a0
LEFT JOIN `ps_category_lang` `a1` ON (a0.`id_category` = a1.`id_category`)
WHERE (a0.`nleft` < 33) AND (a0.`nright` > 44) AND (a1.`id_lang` = 6) AND (a1.`id_shop` = 2)
ORDER BY a0.`nleft` asc | 0.164 ms | 18 | | | /classes/PrestaShopCollection.php:383 /classes/PrestaShopCollection.php:440 (getAll) /controllers/front/ProductController.php:1335 (rewind) /classes/controller/FrontController.php:1864 (getBreadcrumbLinks) /classes/controller/FrontController.php:556 (getBreadcrumb) /classes/controller/FrontController.php:614 (assignGeneralPurposeVariables) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
329 | SELECT SQL_NO_CACHE *
FROM `ps_axon_creator_post` a
LEFT JOIN `ps_axon_creator_post_lang` `b` ON a.`id_axon_creator_post` = b.`id_axon_creator_post` AND b.`id_lang` = 6
WHERE (a.`id_axon_creator_post` = 22) LIMIT 1 | 0.158 ms | 1 | | | /src/Adapter/EntityMapper.php:71 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /modules/axoncreator/src/AxonCreatorPost.php:48 (__construct) /modules/axoncreator/axoncreator.php:1485 (__construct) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/6f/71/05/6f71057721edbe5ad9dec765be9ecf77cd901743_2.file.footer.tpl.php:51 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190514d3534_50355539) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:246 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:427 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
326 | SELECT SQL_NO_CACHE o.id_order
FROM ps_orders o
LEFT JOIN ps_order_detail od ON (od.id_order = o.id_order)
WHERE o.valid = 1
AND od.product_id IN (87927)
ORDER BY o.id_order DESC
LIMIT 400 | 0.156 ms | 1 | Yes | | /modules/ps_crossselling/ps_crossselling.php:257 /modules/ps_crossselling/ps_crossselling.php:214 (getOrderProducts) /modules/ps_crossselling/ps_crossselling.php:235 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:169 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
15 | SELECT SQL_NO_CACHE COUNT(DISTINCT l.id_lang) FROM `ps_lang` l
JOIN ps_lang_shop lang_shop ON (lang_shop.id_lang = l.id_lang AND lang_shop.id_shop = 2)
WHERE l.`active` = 1 LIMIT 1 | 0.154 ms | 16 | | | /classes/Language.php:1216 /classes/Language.php:1513 (countActiveLanguages) /classes/Dispatcher.php:531 (isMultiLanguageActivated) /classes/Dispatcher.php:232 (setRequestUri) /classes/Dispatcher.php:201 (__construct) /index.php:40 (getInstance)
|
136 | SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 2
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 2
WHERE (a.`id_product` = 87927) AND (b.`id_shop` = 2) LIMIT 1 | 0.149 ms | 1 | | | /src/Adapter/EntityMapper.php:71 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /classes/Product.php:725 (__construct) /override/classes/Product.php:9 (__construct) /classes/Link.php:113 (__construct) /classes/Link.php:185 (getProductObject) /classes/Link.php:1215 (getProductLink) /classes/controller/FrontController.php:2168 (getLanguageLink) /classes/controller/FrontController.php:1609 (getAlternativeLangsUrl) /classes/controller/FrontController.php:1742 (getTemplateVarUrls) /classes/controller/FrontController.php:551 (getTemplateVarShop) /classes/controller/FrontController.php:614 (assignGeneralPurposeVariables) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
225 | SELECT SQL_NO_CACHE *
FROM `ps_category_lang`
WHERE `id_category` = 1209 AND `id_shop` = 2 | 0.149 ms | 16 | | | /src/Adapter/EntityMapper.php:79 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /classes/Category.php:164 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:97 (__construct) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
341 | INSERT INTO `ps_connections_source` (`id_connections`, `http_referer`, `request_uri`, `keywords`, `date_add`) VALUES ('792369', '', 'b2b.homescreen.pl/hu/iphone-16-pro/87927-bmw-bmhcp16l23pufwkev-apple-iphone-16-pro-kemenytok-m-kiadas-kevlar-bevonatu-fem-fekete-3666339324780.html', '', '2024-12-29 19:14:16') | 0.146 ms | 1 | | | /classes/ObjectModel.php:622 /classes/ConnectionsSource.php:105 (add) /modules/statsdata/statsdata.php:119 (logHttpReferer) /modules/statsdata/statsdata.php:74 (getScriptCustomerPagesViews) /classes/Hook.php:1043 (hookDisplayBeforeBodyClosingTag) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:272 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:439 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
278 | SELECT SQL_NO_CACHE *
FROM `ps_category` a
LEFT JOIN `ps_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 6
LEFT JOIN `ps_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 2
WHERE (a.`id_category` = 2) AND (b.`id_shop` = 2) LIMIT 1 | 0.146 ms | 1 | | | /src/Adapter/EntityMapper.php:71 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /classes/Category.php:164 (__construct) /modules/axoncreator/axoncreator.php:2007 (__construct) /modules/axoncreator/includes/widgets/axps-products.php:121 (getCategories) /modules/axoncreator/includes/widgets/axps-products.php:101 (_register_content_controls) /modules/axoncreator/includes/base/controls-stack.php:1923 (_register_controls) /modules/axoncreator/includes/base/controls-stack.php:510 (init_controls) /modules/axoncreator/includes/base/widget-base.php:162 (get_stack) /modules/axoncreator/includes/base/controls-stack.php:303 (get_stack) /modules/axoncreator/includes/base/controls-stack.php:1958 (get_controls) /modules/axoncreator/includes/base/controls-stack.php:1045 (sanitize_settings) /modules/axoncreator/includes/base/controls-stack.php:1798 (get_data) /modules/axoncreator/core/base/base-object.php:145 (get_init_settings) /modules/axoncreator/core/base/base-object.php:53 (ensure_settings) /modules/axoncreator/core/files/css/post.php:302 (get_settings) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/files/css/post.php:190 (render_styles) /modules/axoncreator/core/files/css/base.php:634 (render_css) /modules/axoncreator/core/files/base.php:152 (parse_content) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:82 (get_content) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/core/dynamic-tags/manager.php:434 (enqueue) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:537 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:150 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
327 | SELECT SQL_NO_CACHE product_shop.`id_category_default`
FROM `ps_product` p
INNER JOIN ps_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 2)
WHERE p.`id_product` = 87927 LIMIT 1 | 0.145 ms | 1 | | | /classes/Product.php:7919 /modules/seigitagmanager/classes/google/event/Converter.php:266 (getDefaultCategory) /modules/seigitagmanager/classes/google/event/Converter.php:83 (formatProduct) /modules/seigitagmanager/classes/integrations/ga4/ga4.php:252 (createBasicDataTag) /modules/seigitagmanager/seigitagmanager.inc.php:733 (runEvent) /modules/seigitagmanager/seigitagmanager.inc.php:703 (executeFrontFooter) /classes/Hook.php:1043 (hookdisplayFooter) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/6f/71/05/6f71057721edbe5ad9dec765be9ecf77cd901743_2.file.footer.tpl.php:83 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/6f/71/05/6f71057721edbe5ad9dec765be9ecf77cd901743_2.file.footer.tpl.php:38 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190514d3534_50355539) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:246 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:427 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
27 | SELECT SQL_NO_CACHE * FROM `ps_hook_module_exceptions`
WHERE `id_shop` IN (2) | 0.144 ms | 390 | | | /classes/module/Module.php:2018 /classes/Hook.php:929 (getExceptionsStatic) /classes/Dispatcher.php:351 (exec) /index.php:40 (dispatch)
|
110 | SELECT SQL_NO_CACHE * FROM ps_hook_module
WHERE `id_hook` = 76
AND `id_module` = 278
AND `id_shop` = 1 | 0.142 ms | 1 | | | /classes/Hook.php:515 /classes/Hook.php:599 (isModuleRegisteredOnHook) /classes/module/Module.php:1061 (registerHook) /modules/seigigpsr/seigigpsr.inc.php:864 (registerHook) /modules/seigigpsr/util/license.php:26 (__construct) /modules/seigigpsr/seigigpsr.inc.php:102 (getLicenserObject) /modules/seigigpsr/seigigpsr.inc.php:410 (isActiveLicense) /modules/seigigpsr/seigigpsr.inc.php:341 (hookDisplaySeigiGpsr) /classes/Hook.php:1043 (hookDisplayProductExtraContent) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /src/Adapter/HookManager.php:81 (exec) /src/PrestaShopBundle/Service/Hook/HookFinder.php:70 (exec) /src/Core/Product/ProductExtraContentFinder.php:55 (find) /src/PrestaShopBundle/Service/Hook/HookFinder.php:102 (find) /controllers/front/ProductController.php:1203 (present) /controllers/front/ProductController.php:421 (getTemplateVarProduct) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
112 | SELECT SQL_NO_CACHE DISTINCT id_entity
FROM `ps_seigigpsr_entities_mapping`
WHERE (entry_type = 'pr' AND id_shop = 87927)
OR (entry_type = 'mf' AND id_shop = 66)
OR (entry_type = 'sp' AND id_shop = 0) | 0.141 ms | 3 | | | /modules/seigigpsr/classes/ResponsibleEntityRelation.php:126 /modules/seigigpsr/classes/ResponsibleEntityRelation.php:132 (getAssignedEntities) /modules/seigigpsr/seigigpsr.inc.php:441 (getAssignedEntitiesAsObjects) /modules/seigigpsr/seigigpsr.inc.php:341 (hookDisplaySeigiGpsr) /classes/Hook.php:1043 (hookDisplayProductExtraContent) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /src/Adapter/HookManager.php:81 (exec) /src/PrestaShopBundle/Service/Hook/HookFinder.php:70 (exec) /src/Core/Product/ProductExtraContentFinder.php:55 (find) /src/PrestaShopBundle/Service/Hook/HookFinder.php:102 (find) /controllers/front/ProductController.php:1203 (present) /controllers/front/ProductController.php:421 (getTemplateVarProduct) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
236 | SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 2
WHERE (a.`id_product` = 87926) LIMIT 1 | 0.140 ms | 1 | | | /src/Adapter/EntityMapper.php:71 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /classes/Product.php:725 (__construct) /override/classes/Product.php:9 (__construct) /override/classes/Product.php:147 (__construct) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:748 (getPriceStatic) /override/classes/Product.php:9 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:146 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
130 | SELECT SQL_NO_CACHE * FROM `ps_cart_rule` cr
LEFT JOIN `ps_cart_rule_lang` crl
ON (cr.`id_cart_rule` = crl.`id_cart_rule` AND crl.`id_lang` = 0) WHERE (cr.`id_customer` = 0) AND NOW() BETWEEN cr.date_from AND cr.date_to
AND cr.`active` = 1
AND cr.`quantity` > 0 AND highlight = 1 AND code NOT LIKE "BO_ORDER_%" | 0.139 ms | 1 | | | /classes/CartRule.php:423 /classes/CartRule.php:569 (getCustomerCartRules) /classes/Cart.php:522 (getCustomerHighlightedDiscounts) /src/Adapter/Presenter/Cart/CartPresenter.php:444 (getDiscounts) /classes/controller/FrontController.php:545 (present) /classes/controller/FrontController.php:614 (assignGeneralPurposeVariables) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
138 | SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 3
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 2
WHERE (a.`id_product` = 87927) AND (b.`id_shop` = 2) LIMIT 1 | 0.139 ms | 1 | | | /src/Adapter/EntityMapper.php:71 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /classes/Product.php:725 (__construct) /override/classes/Product.php:9 (__construct) /classes/Link.php:113 (__construct) /classes/Link.php:185 (getProductObject) /classes/Link.php:1215 (getProductLink) /classes/controller/FrontController.php:2168 (getLanguageLink) /classes/controller/FrontController.php:1609 (getAlternativeLangsUrl) /classes/controller/FrontController.php:1742 (getTemplateVarUrls) /classes/controller/FrontController.php:551 (getTemplateVarShop) /classes/controller/FrontController.php:614 (assignGeneralPurposeVariables) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
123 | SELECT SQL_NO_CACHE *
FROM `ps_altautofiller`
INNER JOIN `ps_altautofiller_lang` ON `ps_altautofiller`.`id_altautofiller` = `ps_altautofiller_lang`.`id_altautofiller`
WHERE `id_shop` = 2
AND `id_lang` = 6
AND `active` = 1 AND (`products` = "" OR FIND_IN_SET(87927, `products`)) AND (`categories` = "" OR FIND_IN_SET(3, `categories`) OR FIND_IN_SET(282, `categories`) OR FIND_IN_SET(1209, `categories`)) AND (`manufacturers` = "" OR FIND_IN_SET("66", `manufacturers`)) AND (`suppliers` = "" OR FIND_IN_SET("0", `suppliers`)) ORDER BY `priority` ASC | 0.138 ms | 2 | Yes | | /modules/altautofiller/classes/AltAutoFillerConfiguration.php:150 /modules/altautofiller/altautofiller.php:465 (getLegend) /classes/Hook.php:1043 (hookFilterProductContent) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /controllers/front/ProductController.php:432 (exec) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
255 | SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 2
WHERE (a.`id_product` = 87928) LIMIT 1 | 0.138 ms | 1 | | | /src/Adapter/EntityMapper.php:71 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /classes/Product.php:725 (__construct) /override/classes/Product.php:9 (__construct) /override/classes/Product.php:147 (__construct) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:748 (getPriceStatic) /override/classes/Product.php:9 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:153 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
339 | SELECT SQL_NO_CACHE `id_page`
FROM `ps_page`
WHERE `id_page_type` = 3 AND `id_object` = 87927 LIMIT 1 | 0.138 ms | 1 | | | /classes/Page.php:83 /classes/Connection.php:180 (getCurrentId) /classes/Connection.php:97 (setNewConnection) /modules/statsdata/statsdata.php:118 (setPageConnection) /modules/statsdata/statsdata.php:74 (getScriptCustomerPagesViews) /classes/Hook.php:1043 (hookDisplayBeforeBodyClosingTag) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:272 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:439 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
7 | SELECT SQL_NO_CACHE l.*, ls.`id_shop`
FROM `ps_lang` l
LEFT JOIN `ps_lang_shop` ls ON (l.id_lang = ls.id_lang) | 0.135 ms | 16 | | | /classes/Language.php:1080 /config/config.inc.php:143 (loadLanguages) /index.php:39 (require)
|
126 | SELECT SQL_NO_CACHE 1 FROM ps_cart_product cp INNER JOIN ps_product p
ON (p.id_product = cp.id_product) INNER JOIN ps_product_shop ps
ON (ps.id_shop = cp.id_shop AND ps.id_product = p.id_product) WHERE cp.id_cart=0 LIMIT 1 | 0.135 ms | 1 | | | /classes/Cart.php:4211 /classes/Cart.php:4186 (hasProducts) /classes/Cart.php:2131 (isVirtualCart) /src/Adapter/Presenter/Cart/CartPresenter.php:333 (getOrderTotal) /classes/controller/FrontController.php:545 (present) /classes/controller/FrontController.php:614 (assignGeneralPurposeVariables) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
177 | SELECT SQL_NO_CACHE *
FROM `ps_axon_creator_post` a
LEFT JOIN `ps_axon_creator_post_lang` `b` ON a.`id_axon_creator_post` = b.`id_axon_creator_post` AND b.`id_lang` = 6
WHERE (a.`id_axon_creator_post` = 16) LIMIT 1 | 0.134 ms | 1 | | | /src/Adapter/EntityMapper.php:71 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /modules/axoncreator/src/AxonCreatorPost.php:48 (__construct) /modules/axoncreator/axoncreator.php:1485 (__construct) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
318 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 6 AND name = '_elementor_css_id_lang_6' LIMIT 1 | 0.133 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/core/files/css/post.php:122 (get_post_meta) /modules/axoncreator/core/files/base.php:224 (load_meta) /modules/axoncreator/core/files/base.php:143 (get_meta) /modules/axoncreator/core/files/css/base.php:234 (get_url) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
237 | SELECT SQL_NO_CACHE *
FROM `ps_product_lang`
WHERE `id_product` = 87926 AND `id_shop` = 2 | 0.130 ms | 16 | | | /src/Adapter/EntityMapper.php:79 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /classes/Product.php:725 (__construct) /override/classes/Product.php:9 (__construct) /override/classes/Product.php:147 (__construct) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:748 (getPriceStatic) /override/classes/Product.php:9 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:146 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
113 | SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 2)
WHERE i.`id_product` = 87927
AND image_shop.`cover` = 1 LIMIT 1 | 0.128 ms | 8 | | | /classes/Product.php:3570 /classes/Product.php:5639 (getCover) /override/classes/Product.php:184 (getProductProperties) /controllers/front/ProductController.php:1207 (getProductProperties) /controllers/front/ProductController.php:421 (getTemplateVarProduct) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
227 | SELECT SQL_NO_CACHE cp.id_product FROM `ps_category_product` cp RIGHT JOIN `ps_product` p ON p.id_product = cp.id_product WHERE cp.id_category = 1209 AND p.active = 1 AND cp.position < 498 ORDER BY cp.position DESC LIMIT 1 | 0.128 ms | 497 | | | /modules/nrtproductslinknav/nrtproductslinknav.php:142 /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
317 | SELECT SQL_NO_CACHE value FROM ps_axon_creator_meta WHERE id = 6 AND name = '_elementor_css_id_lang_6' LIMIT 1 | 0.128 ms | 389 | | | /modules/axoncreator/src/Wp_Helper.php:1188 /modules/axoncreator/core/files/css/post.php:122 (get_post_meta) /modules/axoncreator/core/files/base.php:224 (load_meta) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
219 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "nrtproductvideo" LIMIT 1 | 0.126 ms | 1 | | | /classes/module/Module.php:2636 /classes/module/Module.php:2108 (getModuleIdByName) /classes/Hook.php:1049 (isEnabled) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/e2/e1/b5/e2e1b5264cd2b163fcf7ccc7786b496af7682b0d_2.file.product-cover-thumbnails.tpl.php:132 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/e2/e1/b5/e2e1b5264cd2b163fcf7ccc7786b496af7682b0d_2.file.product-cover-thumbnails.tpl.php:38 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190542b5761_25916598) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:162 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:176 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:205 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:45 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
244 | SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 2)
WHERE i.`id_product` = 87926
AND image_shop.`cover` = 1 LIMIT 1 | 0.126 ms | 7 | | | /classes/Product.php:3570 /classes/Product.php:5639 (getCover) /override/classes/Product.php:184 (getProductProperties) /classes/ProductAssembler.php:187 (getProductProperties) /modules/nrtproductslinknav/nrtproductslinknav.php:178 (assembleProduct) /modules/nrtproductslinknav/nrtproductslinknav.php:148 (getInfoProduct) /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
263 | SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 2)
WHERE i.`id_product` = 87928
AND image_shop.`cover` = 1 LIMIT 1 | 0.126 ms | 8 | | | /classes/Product.php:3570 /classes/Product.php:5639 (getCover) /override/classes/Product.php:184 (getProductProperties) /classes/ProductAssembler.php:187 (getProductProperties) /modules/nrtproductslinknav/nrtproductslinknav.php:178 (assembleProduct) /modules/nrtproductslinknav/nrtproductslinknav.php:155 (getInfoProduct) /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
256 | SELECT SQL_NO_CACHE *
FROM `ps_product_lang`
WHERE `id_product` = 87928 AND `id_shop` = 2 | 0.126 ms | 16 | | | /src/Adapter/EntityMapper.php:79 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /classes/Product.php:725 (__construct) /override/classes/Product.php:9 (__construct) /override/classes/Product.php:147 (__construct) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:748 (getPriceStatic) /override/classes/Product.php:9 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:153 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
125 | SELECT SQL_NO_CACHE *
FROM `ps_manufacturer` a
LEFT JOIN `ps_manufacturer_lang` `b` ON a.`id_manufacturer` = b.`id_manufacturer` AND b.`id_lang` = 6
LEFT JOIN `ps_manufacturer_shop` `c` ON a.`id_manufacturer` = c.`id_manufacturer` AND c.`id_shop` = 2
WHERE (a.`id_manufacturer` = 66) LIMIT 1 | 0.125 ms | 1 | | | /src/Adapter/EntityMapper.php:71 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /classes/Manufacturer.php:113 (__construct) /override/classes/Manufacturer.php:29 (__construct) /controllers/front/ProductController.php:438 (__construct) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
338 | SELECT SQL_NO_CACHE id_page_type
FROM ps_page_type
WHERE name = 'product' LIMIT 1 | 0.124 ms | 1 | | | /classes/Page.php:104 /classes/Page.php:55 (getPageTypeByName) /classes/Connection.php:180 (getCurrentId) /classes/Connection.php:97 (setNewConnection) /modules/statsdata/statsdata.php:118 (setPageConnection) /modules/statsdata/statsdata.php:74 (getScriptCustomerPagesViews) /classes/Hook.php:1043 (hookDisplayBeforeBodyClosingTag) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:272 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:439 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
288 | SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 2)
WHERE i.`id_product` = 89024
AND image_shop.`cover` = 1 LIMIT 1 | 0.122 ms | 2 | | | /classes/Product.php:3570 /classes/Product.php:5639 (getCover) /override/classes/Product.php:184 (getProductProperties) /classes/Product.php:5984 (getProductProperties) /classes/Category.php:1074 (getProductsProperties) /src/Adapter/Category/CategoryProductSearchProvider.php:88 (getProducts) /src/Adapter/Category/CategoryProductSearchProvider.php:105 (getProductsOrCount) /modules/axoncreator/axoncreator.php:1442 (runQuery) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
324 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "ps_crossselling" LIMIT 1 | 0.122 ms | 1 | | | /classes/module/Module.php:2636 /classes/module/Module.php:2108 (getModuleIdByName) /classes/Hook.php:1049 (isEnabled) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:169 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
88 | SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 2
WHERE (a.`id_product` = 87927) LIMIT 1 | 0.121 ms | 1 | | | /src/Adapter/EntityMapper.php:71 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /classes/Product.php:725 (__construct) /override/classes/Product.php:9 (__construct) /override/classes/Product.php:147 (__construct) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:748 (getPriceStatic) /override/classes/Product.php:9 (__construct) /controllers/front/ProductController.php:146 (__construct) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
296 | SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 2
WHERE (a.`id_product` = 89024) LIMIT 1 | 0.121 ms | 1 | | | /src/Adapter/EntityMapper.php:71 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /classes/Product.php:725 (__construct) /override/classes/Product.php:9 (__construct) /override/classes/Product.php:147 (__construct) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:5688 (getPriceStatic) /override/classes/Product.php:184 (getProductProperties) /classes/Product.php:5984 (getProductProperties) /classes/Category.php:1074 (getProductsProperties) /src/Adapter/Category/CategoryProductSearchProvider.php:88 (getProducts) /src/Adapter/Category/CategoryProductSearchProvider.php:105 (getProductsOrCount) /modules/axoncreator/axoncreator.php:1442 (runQuery) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
8 | SELECT SQL_NO_CACHE *
FROM `ps_country` a
LEFT JOIN `ps_country_lang` `b` ON a.`id_country` = b.`id_country` AND b.`id_lang` = 1
LEFT JOIN `ps_country_shop` `c` ON a.`id_country` = c.`id_country` AND c.`id_shop` = 2
WHERE (a.`id_country` = 14) LIMIT 1 | 0.120 ms | 1 | | | /src/Adapter/EntityMapper.php:71 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /config/config.inc.php:146 (__construct) /index.php:39 (require)
|
89 | SELECT SQL_NO_CACHE *
FROM `ps_product_lang`
WHERE `id_product` = 87927 AND `id_shop` = 2 | 0.120 ms | 16 | | | /src/Adapter/EntityMapper.php:79 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /classes/Product.php:725 (__construct) /override/classes/Product.php:9 (__construct) /override/classes/Product.php:147 (__construct) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:748 (getPriceStatic) /override/classes/Product.php:9 (__construct) /controllers/front/ProductController.php:146 (__construct) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
281 | SELECT SQL_NO_CACHE COUNT(p.id_product)
FROM `ps_product` p
INNER JOIN ps_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 2)
WHERE p.id_product = 87927
AND DATEDIFF("2024-12-29 00:00:00", product_shop.`date_add`) < 20 LIMIT 1 | 0.118 ms | 0 | | | /classes/Product.php:1732 /classes/Product.php:743 (isNew) /override/classes/Product.php:9 (__construct) /modules/axoncreator/axoncreator.php:1426 (__construct) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
308 | SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 2
WHERE (a.`id_product` = 82457) LIMIT 1 | 0.118 ms | 1 | | | /src/Adapter/EntityMapper.php:71 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /classes/Product.php:725 (__construct) /override/classes/Product.php:9 (__construct) /override/classes/Product.php:147 (__construct) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:5688 (getPriceStatic) /override/classes/Product.php:184 (getProductProperties) /classes/Product.php:5984 (getProductProperties) /classes/Category.php:1074 (getProductsProperties) /src/Adapter/Category/CategoryProductSearchProvider.php:88 (getProducts) /src/Adapter/Category/CategoryProductSearchProvider.php:105 (getProductsOrCount) /modules/axoncreator/axoncreator.php:1442 (runQuery) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
99 | SELECT SQL_NO_CACHE *
FROM `ps_category` a
LEFT JOIN `ps_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 6
LEFT JOIN `ps_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 2
WHERE (a.`id_category` = 1209) AND (b.`id_shop` = 2) LIMIT 1 | 0.117 ms | 1 | | | /src/Adapter/EntityMapper.php:71 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /classes/Category.php:164 (__construct) /controllers/front/ProductController.php:303 (__construct) /controllers/front/ProductController.php:170 (initializeCategory) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
47 | SELECT SQL_NO_CACHE *
FROM `ps_currency` a
LEFT JOIN `ps_currency_lang` `b` ON a.`id_currency` = b.`id_currency` AND b.`id_lang` = 6
LEFT JOIN `ps_currency_shop` `c` ON a.`id_currency` = c.`id_currency` AND c.`id_shop` = 2
WHERE (a.`id_currency` = 3) LIMIT 1 | 0.116 ms | 1 | | | /src/Adapter/EntityMapper.php:71 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /classes/Currency.php:246 (__construct) /src/Adapter/Currency/CurrencyDataProvider.php:101 (__construct) /src/Adapter/Currency/CurrencyDataProvider.php:114 (getCurrencyByIsoCode) /src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:102 (getCurrencyByIsoCodeAndLocale) /src/Core/Data/Layer/AbstractDataLayer.php:91 (doRead) /src/Core/Data/Layer/AbstractDataLayer.php:150 (read) /src/Core/Data/Layer/AbstractDataLayer.php:95 (propagateRead) /src/Core/Localization/Currency/CurrencyDataSource.php:67 (read) /src/Core/Localization/Currency/CurrencyDataSource.php:109 (getLocalizedCurrencyData) /src/Core/Localization/Currency/CurrencyDataSource.php:96 (formatCurrenciesData) /src/Core/Localization/Currency/Repository.php:87 (getAllInstalledCurrenciesData) /src/Core/Localization/Locale/Repository.php:207 (getAllInstalledCurrencies) /src/Core/Localization/Locale/Repository.php:150 (getPriceSpecifications) /classes/controller/Controller.php:209 (getLocale) /classes/controller/FrontController.php:284 (init) /controllers/front/ProductController.php:124 (init) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
154 | SELECT SQL_NO_CACHE *
FROM `ps_axon_creator_related` bc
LEFT JOIN `ps_axon_creator_related_shop` bcs
ON (bc.`id_axon_creator_related` = bcs.`id_axon_creator_related`)
WHERE bcs.`id_shop` = 2
AND bc.`post_type` = 'hook'
AND bc.`key_related` = 'displayLeftColumn' LIMIT 1 | 0.115 ms | 21 | | | /modules/axoncreator/src/Wp_Helper.php:1074 /modules/axoncreator/axoncreator.php:1027 (getRelatedByKey) /classes/Hook.php:1043 (hookDisplayHeader) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /classes/controller/FrontController.php:622 (exec) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
61 | SELECT SQL_NO_CACHE *
FROM `ps_country` a
LEFT JOIN `ps_country_lang` `b` ON a.`id_country` = b.`id_country` AND b.`id_lang` = 6
LEFT JOIN `ps_country_shop` `c` ON a.`id_country` = c.`id_country` AND c.`id_shop` = 2
WHERE (a.`id_country` = 14) LIMIT 1 | 0.113 ms | 1 | | | /src/Adapter/EntityMapper.php:71 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /classes/controller/FrontController.php:354 (__construct) /controllers/front/ProductController.php:124 (init) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
155 | SELECT SQL_NO_CACHE *
FROM `ps_axon_creator_related` bc
LEFT JOIN `ps_axon_creator_related_shop` bcs
ON (bc.`id_axon_creator_related` = bcs.`id_axon_creator_related`)
WHERE bcs.`id_shop` = 2
AND bc.`post_type` = 'hook'
AND bc.`key_related` = 'displayRightColumn' LIMIT 1 | 0.112 ms | 21 | | | /modules/axoncreator/src/Wp_Helper.php:1074 /modules/axoncreator/axoncreator.php:1027 (getRelatedByKey) /classes/Hook.php:1043 (hookDisplayHeader) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /classes/controller/FrontController.php:622 (exec) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
270 | SELECT SQL_NO_CACHE *
FROM `ps_axon_creator_post` a
LEFT JOIN `ps_axon_creator_post_lang` `b` ON a.`id_axon_creator_post` = b.`id_axon_creator_post` AND b.`id_lang` = 6
WHERE (a.`id_axon_creator_post` = 7) LIMIT 1 | 0.109 ms | 1 | | | /src/Adapter/EntityMapper.php:71 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /modules/axoncreator/src/AxonCreatorPost.php:48 (__construct) /modules/axoncreator/axoncreator.php:1485 (__construct) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:537 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:150 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
77 | SELECT SQL_NO_CACHE COUNT(p.id_product)
FROM `ps_product` p
INNER JOIN ps_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 2)
WHERE p.id_product = 87927
AND DATEDIFF("2024-12-29 00:00:00", product_shop.`date_add`) < 20 LIMIT 1 | 0.109 ms | 0 | | | /classes/Product.php:1732 /classes/Product.php:743 (isNew) /override/classes/Product.php:9 (__construct) /controllers/front/ProductController.php:146 (__construct) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
91 | SELECT SQL_NO_CACHE t.`id_lang`, t.`name`
FROM ps_tag t
LEFT JOIN ps_product_tag pt ON (pt.id_tag = t.id_tag)
WHERE pt.`id_product`=87927 | 0.109 ms | 1 | | | /classes/Tag.php:244 /classes/Product.php:749 (getProductTags) /override/classes/Product.php:9 (__construct) /controllers/front/ProductController.php:146 (__construct) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
44 | SELECT SQL_NO_CACHE * FROM `ps_currency` c ORDER BY `iso_code` ASC | 0.107 ms | 4 | Yes | | /classes/Currency.php:709 /src/Adapter/Currency/CurrencyDataProvider.php:84 (findAllInstalled) /src/Core/Localization/Currency/DataLayer/CurrencyInstalled.php:90 (findAllInstalled) /src/Core/Localization/Currency/CurrencyDataSource.php:96 (getAllInstalledCurrencyIsoCodes) /src/Core/Localization/Currency/Repository.php:87 (getAllInstalledCurrenciesData) /src/Core/Localization/Locale/Repository.php:207 (getAllInstalledCurrencies) /src/Core/Localization/Locale/Repository.php:150 (getPriceSpecifications) /classes/controller/Controller.php:209 (getLocale) /classes/controller/FrontController.php:284 (init) /controllers/front/ProductController.php:124 (init) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
224 | SELECT SQL_NO_CACHE *
FROM `ps_category` a
LEFT JOIN `ps_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 2
WHERE (a.`id_category` = 1209) LIMIT 1 | 0.107 ms | 1 | | | /src/Adapter/EntityMapper.php:71 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /classes/Category.php:164 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:97 (__construct) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
98 | SELECT SQL_NO_CACHE ctg.`id_group`
FROM `ps_category_product` cp
INNER JOIN `ps_category_group` ctg ON (ctg.`id_category` = cp.`id_category`)
WHERE cp.`id_product` = 87927 AND ctg.`id_group` = 8 LIMIT 1 | 0.106 ms | 3 | | | /classes/Product.php:6734 /classes/Product.php:6711 (checkAccessStatic) /controllers/front/ProductController.php:265 (checkAccess) /controllers/front/ProductController.php:167 (checkPermissionsToViewProduct) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
104 | SELECT SQL_NO_CACHE tr.*
FROM `ps_tax_rule` tr
JOIN `ps_tax_rules_group` trg ON (tr.`id_tax_rules_group` = trg.`id_tax_rules_group`)
WHERE trg.`active` = 1
AND tr.`id_country` = 14
AND tr.`id_tax_rules_group` = 0
AND tr.`id_state` IN (0, 0)
AND ('0' BETWEEN tr.`zipcode_from` AND tr.`zipcode_to`
OR (tr.`zipcode_to` = 0 AND tr.`zipcode_from` IN(0, '0')))
ORDER BY tr.`zipcode_from` DESC, tr.`zipcode_to` DESC, tr.`id_state` DESC, tr.`id_country` DESC | 0.106 ms | 0 | | | /override/classes/tax/TaxRulesTaxManager.php:119 /classes/Product.php:3952 (getTaxCalculator) /override/classes/Product.php:117 (priceCalculation) /classes/Product.php:3737 (priceCalculation) /controllers/front/ProductController.php:592 (getPriceStatic) /controllers/front/ProductController.php:370 (assignPriceAndTax) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
150 | SELECT SQL_NO_CACHE * FROM `ps_nrt_custom_fonts` WHERE `active` = 1 GROUP BY title | 0.106 ms | 7 | Yes | Yes | /modules/nrtthemecustomizer/nrtthemecustomizer.php:3902 /modules/nrtthemecustomizer/nrtthemecustomizer.php:2825 (get_fonts) /modules/nrtthemecustomizer/nrtthemecustomizer.php:3248 (StandardFont) /modules/nrtthemecustomizer/nrtthemecustomizer.php:3038 (renderOptions) /modules/nrtthemecustomizer/nrtthemecustomizer.php:3281 (_prepHook) /classes/Hook.php:1043 (hookDisplayHeader) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /classes/controller/FrontController.php:622 (exec) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
301 | SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 2)
WHERE i.`id_product` = 82457
AND image_shop.`cover` = 1 LIMIT 1 | 0.106 ms | 3 | | | /classes/Product.php:3570 /classes/Product.php:5639 (getCover) /override/classes/Product.php:184 (getProductProperties) /classes/Product.php:5984 (getProductProperties) /classes/Category.php:1074 (getProductsProperties) /src/Adapter/Category/CategoryProductSearchProvider.php:88 (getProducts) /src/Adapter/Category/CategoryProductSearchProvider.php:105 (getProductsOrCount) /modules/axoncreator/axoncreator.php:1442 (runQuery) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
228 | SELECT SQL_NO_CACHE cp.id_product FROM `ps_category_product` cp RIGHT JOIN `ps_product` p ON p.id_product = cp.id_product WHERE cp.id_category = 1209 AND p.active = 1 AND cp.position > 498 ORDER BY cp.position ASC LIMIT 1 | 0.105 ms | 111 | | | /modules/nrtproductslinknav/nrtproductslinknav.php:143 /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
167 | SELECT SQL_NO_CACHE COUNT(DISTINCT c.id_currency) FROM `ps_currency` c
LEFT JOIN ps_currency_shop cs ON (cs.id_currency = c.id_currency AND cs.id_shop = 2)
WHERE c.`active` = 1 AND c.`deleted` = 0 LIMIT 1 | 0.103 ms | 4 | | | /classes/Currency.php:1136 /classes/Currency.php:1153 (countActiveCurrencies) /classes/module/Module.php:2204 (isMultiCurrencyActivated) /modules/axoncreator/axoncreator.php:1041 (getCacheId) /classes/Hook.php:1043 (hookDisplayHeader) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /classes/controller/FrontController.php:622 (exec) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
309 | SELECT SQL_NO_CACHE *
FROM `ps_product_lang`
WHERE `id_product` = 82457 AND `id_shop` = 2 | 0.103 ms | 16 | | | /src/Adapter/EntityMapper.php:79 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /classes/Product.php:725 (__construct) /override/classes/Product.php:9 (__construct) /override/classes/Product.php:147 (__construct) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:5688 (getPriceStatic) /override/classes/Product.php:184 (getProductProperties) /classes/Product.php:5984 (getProductProperties) /classes/Category.php:1074 (getProductsProperties) /src/Adapter/Category/CategoryProductSearchProvider.php:88 (getProducts) /src/Adapter/Category/CategoryProductSearchProvider.php:105 (getProductsOrCount) /modules/axoncreator/axoncreator.php:1442 (runQuery) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
257 | SELECT SQL_NO_CACHE t.`id_lang`, t.`name`
FROM ps_tag t
LEFT JOIN ps_product_tag pt ON (pt.id_tag = t.id_tag)
WHERE pt.`id_product`=87928 | 0.102 ms | 1 | | | /classes/Tag.php:244 /classes/Product.php:749 (getProductTags) /override/classes/Product.php:9 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:153 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
10 | SELECT SQL_NO_CACHE *
FROM `ps_lang` a
LEFT JOIN `ps_lang_shop` `c` ON a.`id_lang` = c.`id_lang` AND c.`id_shop` = 2
WHERE (a.`id_lang` = 1) LIMIT 1 | 0.101 ms | 1 | | | /src/Adapter/EntityMapper.php:71 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /config/config.inc.php:211 (__construct) /index.php:39 (require)
|
346 | SELECT SQL_NO_CACHE *
FROM `ps_currency` c
INNER JOIN ps_currency_shop currency_shop
ON (currency_shop.id_currency = c.id_currency AND currency_shop.id_shop = 2)
WHERE c.`deleted` = 0 AND c.`active` = 1 ORDER BY `iso_code` ASC | 0.100 ms | 4 | Yes | | /classes/Currency.php:694 /classes/Currency.php:669 (findAll) /modules/ps_currencyselector/ps_currencyselector.php:112 (getCurrencies) /var/cache/prod/smarty/compile/akira/5d/85/99/5d85998f2045cda3df9427ce50fe4fead6d6cd49_2.file.account.tpl.php:248 (getWidgetVariables) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190515d8c58_71002267) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akira/5b/94/0c/5b940cf84db06a9637a353c3b516256f432e36ce_2.module.nrtthemecustomizerviewstemplateshookorther.tpl.php:73 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190515c1cf0_31284358) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/module/Module.php:2273 (fetch) /modules/nrtthemecustomizer/nrtthemecustomizer.php:3775 (fetch) /classes/Hook.php:1043 (hookDisplayBodyBottom) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:443 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
133 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 2 LIMIT 1 | 0.100 ms | 0 | | | /classes/module/Module.php:2109 /classes/controller/FrontController.php:1658 (isEnabled) /classes/controller/FrontController.php:1801 (getDisplayTaxesLabel) /controllers/front/ProductController.php:1455 (getTemplateVarPage) /classes/controller/FrontController.php:550 (getTemplateVarPage) /classes/controller/FrontController.php:614 (assignGeneralPurposeVariables) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
249 | SELECT SQL_NO_CACHE COUNT(p.id_product)
FROM `ps_product` p
INNER JOIN ps_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 2)
WHERE p.id_product = 87928
AND DATEDIFF("2024-12-29 00:00:00", product_shop.`date_add`) < 20 LIMIT 1 | 0.097 ms | 0 | | | /classes/Product.php:1732 /classes/Product.php:743 (isNew) /override/classes/Product.php:9 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:153 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
230 | SELECT SQL_NO_CACHE COUNT(p.id_product)
FROM `ps_product` p
INNER JOIN ps_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 2)
WHERE p.id_product = 87926
AND DATEDIFF("2024-12-29 00:00:00", product_shop.`date_add`) < 20 LIMIT 1 | 0.096 ms | 0 | | | /classes/Product.php:1732 /classes/Product.php:743 (isNew) /override/classes/Product.php:9 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:146 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
3 | SELECT SQL_NO_CACHE value FROM `ps_configuration` WHERE `name` = "PS_MULTISHOP_FEATURE_ACTIVE" LIMIT 1 | 0.096 ms | 1 | | | /classes/shop/Shop.php:1183 /classes/Configuration.php:236 (isFeatureActive) /classes/Configuration.php:302 (get) /classes/shop/Shop.php:398 (getMultiShopValues) /config/config.inc.php:117 (initialize) /index.php:39 (require)
|
297 | SELECT SQL_NO_CACHE *
FROM `ps_product_lang`
WHERE `id_product` = 89024 AND `id_shop` = 2 | 0.095 ms | 16 | | | /src/Adapter/EntityMapper.php:79 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /classes/Product.php:725 (__construct) /override/classes/Product.php:9 (__construct) /override/classes/Product.php:147 (__construct) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:5688 (getPriceStatic) /override/classes/Product.php:184 (getProductProperties) /classes/Product.php:5984 (getProductProperties) /classes/Category.php:1074 (getProductsProperties) /src/Adapter/Category/CategoryProductSearchProvider.php:88 (getProducts) /src/Adapter/Category/CategoryProductSearchProvider.php:105 (getProductsOrCount) /modules/axoncreator/axoncreator.php:1442 (runQuery) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
6 | SELECT SQL_NO_CACHE su.physical_uri, su.virtual_uri, su.domain, su.domain_ssl
FROM ps_shop s
LEFT JOIN ps_shop_url su ON (s.id_shop = su.id_shop)
WHERE s.id_shop = 2
AND s.active = 1 AND s.deleted = 0 AND su.main = 1 LIMIT 1 | 0.093 ms | 1 | | | /classes/shop/Shop.php:218 /classes/shop/Shop.php:148 (setUrl) /classes/shop/Shop.php:431 (__construct) /config/config.inc.php:117 (initialize) /index.php:39 (require)
|
40 | INSERT INTO `ps_guest` (`id_operating_system`, `id_web_browser`, `id_customer`, `javascript`, `screen_resolution_x`, `screen_resolution_y`, `screen_color`, `sun_java`, `adobe_flash`, `adobe_director`, `apple_quicktime`, `real_player`, `windows_media`, `accept_language`, `mobile_theme`) VALUES ('0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '', '0') | 0.092 ms | 1 | | | /classes/ObjectModel.php:622 /classes/ObjectModel.php:576 (add) /classes/Guest.php:251 (save) /modules/seigitagmanager/seigitagmanager.inc.php:1341 (setNewGuest) /modules/seigitagmanager/seigitagmanager.inc.php:927 (getCurrentPSGuestID) /classes/Hook.php:1043 (hookActionDispatcher) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /classes/Dispatcher.php:507 (exec) /index.php:40 (dispatch)
|
79 | SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE `id_product` != 0 LIMIT 1 | 0.092 ms | 105516 | | | /classes/SpecificPrice.php:297 /classes/SpecificPrice.php:360 (filterOutField) /override/classes/SpecificPrice.php:51 (computeExtraConditions) /classes/Product.php:3827 (getSpecificPrice) /override/classes/Product.php:117 (priceCalculation) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:748 (getPriceStatic) /override/classes/Product.php:9 (__construct) /controllers/front/ProductController.php:146 (__construct) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
238 | SELECT SQL_NO_CACHE t.`id_lang`, t.`name`
FROM ps_tag t
LEFT JOIN ps_product_tag pt ON (pt.id_tag = t.id_tag)
WHERE pt.`id_product`=87926 | 0.092 ms | 1 | | | /classes/Tag.php:244 /classes/Product.php:749 (getProductTags) /override/classes/Product.php:9 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:146 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
269 | SELECT SQL_NO_CACHE t.`id_lang`, t.`name`
FROM ps_tag t
LEFT JOIN ps_product_tag pt ON (pt.id_tag = t.id_tag)
WHERE pt.`id_product`=87927 | 0.092 ms | 1 | | | /classes/Tag.php:244 /modules/nrtproducttags/nrtproducttags.php:94 (getProductTags) /modules/nrtproducttags/nrtproducttags.php:77 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/bd/de/34/bdde349da36ed9d54db28ae31e2785b66b178b7d_2.file.product-images-modal.tpl.php:35 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190513f7da6_15949165) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:501 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:130 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
267 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "ps_viewedproduct" LIMIT 1 | 0.091 ms | 1 | | | /classes/module/Module.php:2636 /classes/module/Module.php:2108 (getModuleIdByName) /classes/Hook.php:1049 (isEnabled) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/2b/97/9c/2b979c84f43bf57f4730345097a675ac25ba3cc5_2.file.product-additional-info.tpl.php:34 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190513d3810_79001082) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:483 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:126 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
157 | SELECT SQL_NO_CACHE *
FROM `ps_axon_creator_related` bc
LEFT JOIN `ps_axon_creator_related_shop` bcs
ON (bc.`id_axon_creator_related` = bcs.`id_axon_creator_related`)
WHERE bcs.`id_shop` = 2
AND bc.`post_type` = 'hook'
AND bc.`key_related` = 'displayProductSameCategory' LIMIT 1 | 0.090 ms | 21 | | | /modules/axoncreator/src/Wp_Helper.php:1074 /modules/axoncreator/axoncreator.php:1027 (getRelatedByKey) /classes/Hook.php:1043 (hookDisplayHeader) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /classes/controller/FrontController.php:622 (exec) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
313 | SELECT SQL_NO_CACHE *
FROM `ps_axon_creator_post` a
LEFT JOIN `ps_axon_creator_post_lang` `b` ON a.`id_axon_creator_post` = b.`id_axon_creator_post` AND b.`id_lang` = 6
WHERE (a.`id_axon_creator_post` = 6) LIMIT 1 | 0.090 ms | 1 | | | /src/Adapter/EntityMapper.php:71 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /modules/axoncreator/src/AxonCreatorPost.php:48 (__construct) /modules/axoncreator/axoncreator.php:1485 (__construct) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
189 | SELECT SQL_NO_CACHE * FROM `ps_nrt_custom_fonts` WHERE `active` = 1 GROUP BY title | 0.090 ms | 7 | Yes | Yes | /modules/nrtthemecustomizer/nrtthemecustomizer.php:3902 /modules/axoncreator/includes/fonts.php:153 (get_fonts) /modules/axoncreator/includes/fonts.php:129 (get_native_fonts) /modules/axoncreator/includes/controls/font.php:60 (get_fonts) /modules/axoncreator/includes/controls/base.php:86 (get_default_settings) /modules/axoncreator/includes/managers/controls.php:449 (__construct) /modules/axoncreator/includes/managers/controls.php:523 (register_controls) /modules/axoncreator/includes/managers/controls.php:542 (get_controls) /modules/axoncreator/includes/managers/controls.php:699 (get_control) /modules/axoncreator/includes/base/controls-stack.php:435 (add_control_to_stack) /modules/axoncreator/includes/base/controls-stack.php:1387 (add_control) /modules/axoncreator/includes/elements/section.php:243 (start_controls_section) /modules/axoncreator/includes/base/controls-stack.php:1923 (_register_controls) /modules/axoncreator/includes/base/controls-stack.php:510 (init_controls) /modules/axoncreator/includes/base/controls-stack.php:303 (get_stack) /modules/axoncreator/includes/base/controls-stack.php:1958 (get_controls) /modules/axoncreator/includes/base/controls-stack.php:1045 (sanitize_settings) /modules/axoncreator/includes/base/controls-stack.php:1798 (get_data) /modules/axoncreator/core/base/base-object.php:145 (get_init_settings) /modules/axoncreator/core/base/base-object.php:53 (ensure_settings) /modules/axoncreator/core/files/css/post.php:302 (get_settings) /modules/axoncreator/core/files/css/post.php:190 (render_styles) /modules/axoncreator/core/files/css/base.php:634 (render_css) /modules/axoncreator/core/files/base.php:152 (parse_content) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:82 (get_content) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/core/dynamic-tags/manager.php:434 (enqueue) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
187 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "nrtthemecustomizer" LIMIT 1 | 0.089 ms | 1 | | | /classes/module/Module.php:2636 /classes/module/Module.php:2108 (getModuleIdByName) /modules/axoncreator/includes/fonts.php:149 (isEnabled) /modules/axoncreator/includes/fonts.php:129 (get_native_fonts) /modules/axoncreator/includes/controls/font.php:60 (get_fonts) /modules/axoncreator/includes/controls/base.php:86 (get_default_settings) /modules/axoncreator/includes/managers/controls.php:449 (__construct) /modules/axoncreator/includes/managers/controls.php:523 (register_controls) /modules/axoncreator/includes/managers/controls.php:542 (get_controls) /modules/axoncreator/includes/managers/controls.php:699 (get_control) /modules/axoncreator/includes/base/controls-stack.php:435 (add_control_to_stack) /modules/axoncreator/includes/base/controls-stack.php:1387 (add_control) /modules/axoncreator/includes/elements/section.php:243 (start_controls_section) /modules/axoncreator/includes/base/controls-stack.php:1923 (_register_controls) /modules/axoncreator/includes/base/controls-stack.php:510 (init_controls) /modules/axoncreator/includes/base/controls-stack.php:303 (get_stack) /modules/axoncreator/includes/base/controls-stack.php:1958 (get_controls) /modules/axoncreator/includes/base/controls-stack.php:1045 (sanitize_settings) /modules/axoncreator/includes/base/controls-stack.php:1798 (get_data) /modules/axoncreator/core/base/base-object.php:145 (get_init_settings) /modules/axoncreator/core/base/base-object.php:53 (ensure_settings) /modules/axoncreator/core/files/css/post.php:302 (get_settings) /modules/axoncreator/core/files/css/post.php:190 (render_styles) /modules/axoncreator/core/files/css/base.php:634 (render_css) /modules/axoncreator/core/files/base.php:152 (parse_content) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:82 (get_content) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/core/dynamic-tags/manager.php:434 (enqueue) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
252 | SELECT SQL_NO_CACHE product_shop.`price`, product_shop.`ecotax`,
0 as id_product_attribute
FROM `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 2)
WHERE (p.`id_product` = 87928) | 0.089 ms | 1 | | | /classes/Product.php:3860 /override/classes/Product.php:117 (priceCalculation) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:748 (getPriceStatic) /override/classes/Product.php:9 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:153 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
90 | SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `ps_category_lang` cl
WHERE `id_lang` = 0
AND cl.id_shop = 2
AND cl.`id_category` = 1209 LIMIT 1 | 0.087 ms | 0 | | | /classes/Category.php:1378 /classes/Product.php:758 (getLinkRewrite) /override/classes/Product.php:9 (__construct) /override/classes/Product.php:147 (__construct) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:748 (getPriceStatic) /override/classes/Product.php:9 (__construct) /controllers/front/ProductController.php:146 (__construct) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
84 | SELECT SQL_NO_CACHE product_shop.`price`, product_shop.`ecotax`,
0 as id_product_attribute
FROM `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 2)
WHERE (p.`id_product` = 87927) | 0.086 ms | 1 | | | /classes/Product.php:3860 /override/classes/Product.php:117 (priceCalculation) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:748 (getPriceStatic) /override/classes/Product.php:9 (__construct) /controllers/front/ProductController.php:146 (__construct) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
14 | SELECT SQL_NO_CACHE domain, domain_ssl
FROM ps_shop_url
WHERE main = 1
AND id_shop = 2 LIMIT 1 | 0.086 ms | 1 | | | /classes/shop/ShopUrl.php:182 /classes/shop/ShopUrl.php:198 (cacheMainDomainForShop) /classes/Tools.php:302 (getMainShopDomain) /classes/Link.php:65 (getShopDomain) /config/config.inc.php:277 (__construct) /index.php:39 (require)
|
21 | SELECT SQL_NO_CACHE `name`, `alias` FROM `ps_hook_alias` | 0.085 ms | 88 | | | /classes/Hook.php:287 /classes/Hook.php:318 (getAllHookAliases) /classes/Hook.php:746 (getHookAliasesFor) /classes/Hook.php:842 (getHookModuleExecList) /classes/Dispatcher.php:611 (exec) /classes/Dispatcher.php:243 (loadRoutes) /classes/Dispatcher.php:201 (__construct) /index.php:40 (getInstance)
|
55 | SELECT SQL_NO_CACHE *
FROM `ps_currency` a
LEFT JOIN `ps_currency_lang` `b` ON a.`id_currency` = b.`id_currency` AND b.`id_lang` = 6
LEFT JOIN `ps_currency_shop` `c` ON a.`id_currency` = c.`id_currency` AND c.`id_shop` = 2
WHERE (a.`id_currency` = 1) LIMIT 1 | 0.084 ms | 1 | | | /src/Adapter/EntityMapper.php:71 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /classes/Currency.php:246 (__construct) /src/Adapter/Currency/CurrencyDataProvider.php:101 (__construct) /src/Adapter/Currency/CurrencyDataProvider.php:114 (getCurrencyByIsoCode) /src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:102 (getCurrencyByIsoCodeAndLocale) /src/Core/Data/Layer/AbstractDataLayer.php:91 (doRead) /src/Core/Data/Layer/AbstractDataLayer.php:150 (read) /src/Core/Data/Layer/AbstractDataLayer.php:95 (propagateRead) /src/Core/Localization/Currency/CurrencyDataSource.php:67 (read) /src/Core/Localization/Currency/CurrencyDataSource.php:109 (getLocalizedCurrencyData) /src/Core/Localization/Currency/CurrencyDataSource.php:96 (formatCurrenciesData) /src/Core/Localization/Currency/Repository.php:87 (getAllInstalledCurrenciesData) /src/Core/Localization/Locale/Repository.php:207 (getAllInstalledCurrencies) /src/Core/Localization/Locale/Repository.php:150 (getPriceSpecifications) /classes/controller/Controller.php:209 (getLocale) /classes/controller/FrontController.php:284 (init) /controllers/front/ProductController.php:124 (init) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
132 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "ps_legalcompliance" LIMIT 1 | 0.084 ms | 0 | | | /classes/module/Module.php:2636 /classes/module/Module.php:2108 (getModuleIdByName) /classes/controller/FrontController.php:1658 (isEnabled) /classes/controller/FrontController.php:1801 (getDisplayTaxesLabel) /controllers/front/ProductController.php:1455 (getTemplateVarPage) /classes/controller/FrontController.php:550 (getTemplateVarPage) /classes/controller/FrontController.php:614 (assignGeneralPurposeVariables) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
233 | SELECT SQL_NO_CACHE product_shop.`price`, product_shop.`ecotax`,
0 as id_product_attribute
FROM `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 2)
WHERE (p.`id_product` = 87926) | 0.084 ms | 1 | | | /classes/Product.php:3860 /override/classes/Product.php:117 (priceCalculation) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:748 (getPriceStatic) /override/classes/Product.php:9 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:146 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
41 | SELECT SQL_NO_CACHE * FROM `ps_tagmanager_sdata` WHERE `ido` = 0 AND `idg` = 28780922 LIMIT 1 | 0.084 ms | 1 | | | /modules/seigitagmanager/classes/session/Data.php:139 /modules/seigitagmanager/classes/session/Data.php:25 (getObjectByIdGuest) /modules/seigitagmanager/seigitagmanager.inc.php:871 (__construct) /modules/seigitagmanager/seigitagmanager.inc.php:930 (getCurrentUserSessionInstance) /classes/Hook.php:1043 (hookActionDispatcher) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /classes/Dispatcher.php:507 (exec) /index.php:40 (dispatch)
|
65 | SELECT SQL_NO_CACHE *
FROM `ps_group` a
LEFT JOIN `ps_group_shop` `c` ON a.`id_group` = c.`id_group` AND c.`id_shop` = 2
WHERE (a.`id_group` = 8) LIMIT 1 | 0.084 ms | 1 | | | /src/Adapter/EntityMapper.php:71 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /classes/Group.php:81 (__construct) /classes/Group.php:397 (__construct) /classes/Cart.php:249 (getCurrent) /classes/Cart.php:222 (setTaxCalculationMethod) /classes/controller/FrontController.php:467 (__construct) /controllers/front/ProductController.php:124 (init) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
78 | SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 0 LIMIT 1 | 0.084 ms | 1 | | | /classes/SpecificPrice.php:426 /override/classes/SpecificPrice.php:28 (couldHaveSpecificPrice) /classes/Product.php:3827 (getSpecificPrice) /override/classes/Product.php:117 (priceCalculation) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:748 (getPriceStatic) /override/classes/Product.php:9 (__construct) /controllers/front/ProductController.php:146 (__construct) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
59 | SELECT SQL_NO_CACHE *
FROM `ps_currency` a
LEFT JOIN `ps_currency_lang` `b` ON a.`id_currency` = b.`id_currency` AND b.`id_lang` = 6
LEFT JOIN `ps_currency_shop` `c` ON a.`id_currency` = c.`id_currency` AND c.`id_shop` = 2
WHERE (a.`id_currency` = 4) LIMIT 1 | 0.083 ms | 1 | | | /src/Adapter/EntityMapper.php:71 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /classes/Currency.php:246 (__construct) /src/Adapter/Currency/CurrencyDataProvider.php:101 (__construct) /src/Adapter/Currency/CurrencyDataProvider.php:114 (getCurrencyByIsoCode) /src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:102 (getCurrencyByIsoCodeAndLocale) /src/Core/Data/Layer/AbstractDataLayer.php:91 (doRead) /src/Core/Data/Layer/AbstractDataLayer.php:150 (read) /src/Core/Data/Layer/AbstractDataLayer.php:95 (propagateRead) /src/Core/Localization/Currency/CurrencyDataSource.php:67 (read) /src/Core/Localization/Currency/CurrencyDataSource.php:109 (getLocalizedCurrencyData) /src/Core/Localization/Currency/CurrencyDataSource.php:96 (formatCurrenciesData) /src/Core/Localization/Currency/Repository.php:87 (getAllInstalledCurrenciesData) /src/Core/Localization/Locale/Repository.php:207 (getAllInstalledCurrencies) /src/Core/Localization/Locale/Repository.php:150 (getPriceSpecifications) /classes/controller/Controller.php:209 (getLocale) /classes/controller/FrontController.php:284 (init) /controllers/front/ProductController.php:124 (init) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
118 | SELECT SQL_NO_CACHE * FROM `ps_image_type` WHERE 1 AND `products` = 1 ORDER BY `width` DESC, `height` DESC, `name`ASC | 0.082 ms | 9 | Yes | | /classes/ImageType.php:109 /src/Adapter/Image/ImageRetriever.php:221 (getImagesTypes) /src/Adapter/Image/ImageRetriever.php:111 (getImage) :undefined (PrestaShop\PrestaShop\Adapter\Image\{closure}) /src/Adapter/Image/ImageRetriever.php:104 (array_map) /src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages) /src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages) /src/Adapter/Presenter/Product/ProductPresenter.php:110 (__construct) /controllers/front/ProductController.php:1242 (present) /controllers/front/ProductController.php:421 (getTemplateVarProduct) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
163 | SELECT SQL_NO_CACHE *
FROM `ps_axon_creator_related` bc
LEFT JOIN `ps_axon_creator_related_shop` bcs
ON (bc.`id_axon_creator_related` = bcs.`id_axon_creator_related`)
WHERE bcs.`id_shop` = 2
AND bc.`post_type` = 'hook'
AND bc.`key_related` = 'displayProductSummary' LIMIT 1 | 0.082 ms | 21 | | | /modules/axoncreator/src/Wp_Helper.php:1074 /modules/axoncreator/axoncreator.php:1027 (getRelatedByKey) /classes/Hook.php:1043 (hookDisplayHeader) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /classes/controller/FrontController.php:622 (exec) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
166 | SELECT SQL_NO_CACHE *
FROM `ps_axon_creator_related` bc
LEFT JOIN `ps_axon_creator_related_shop` bcs
ON (bc.`id_axon_creator_related` = bcs.`id_axon_creator_related`)
WHERE bcs.`id_shop` = 2
AND bc.`post_type` = 'hook'
AND bc.`key_related` = 'display404PageBuilder' LIMIT 1 | 0.082 ms | 21 | | | /modules/axoncreator/src/Wp_Helper.php:1074 /modules/axoncreator/axoncreator.php:1027 (getRelatedByKey) /classes/Hook.php:1043 (hookDisplayHeader) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /classes/controller/FrontController.php:622 (exec) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
175 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "nrtproducttags" LIMIT 1 | 0.082 ms | 1 | | | /classes/module/Module.php:2636 /classes/module/Module.php:2108 (getModuleIdByName) /classes/Hook.php:1049 (isEnabled) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:38 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
170 | SELECT SQL_NO_CACHE * FROM ps_hook_module
WHERE `id_hook` = 76
AND `id_module` = 121
AND `id_shop` = 1 | 0.080 ms | 1 | | | /classes/Hook.php:515 /classes/Hook.php:599 (isModuleRegisteredOnHook) /classes/module/Module.php:1061 (registerHook) /modules/seigicookie/seigicookie.inc.php:1201 (registerHook) /modules/seigicookie/util/license.php:26 (__construct) /modules/seigicookie/seigicookie.inc.php:358 (getLicenserObject) /modules/seigicookie/seigicookie.inc.php:269 (getConsentSettings) /classes/Hook.php:1043 (hookDisplayHeader) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /classes/controller/FrontController.php:622 (exec) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
293 | SELECT SQL_NO_CACHE product_shop.`price`, product_shop.`ecotax`,
0 as id_product_attribute
FROM `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 2)
WHERE (p.`id_product` = 89024) | 0.080 ms | 1 | | | /classes/Product.php:3860 /override/classes/Product.php:117 (priceCalculation) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:5688 (getPriceStatic) /override/classes/Product.php:184 (getProductProperties) /classes/Product.php:5984 (getProductProperties) /classes/Category.php:1074 (getProductsProperties) /src/Adapter/Category/CategoryProductSearchProvider.php:88 (getProducts) /src/Adapter/Category/CategoryProductSearchProvider.php:105 (getProductsOrCount) /modules/axoncreator/axoncreator.php:1442 (runQuery) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
51 | SELECT SQL_NO_CACHE *
FROM `ps_currency` a
LEFT JOIN `ps_currency_lang` `b` ON a.`id_currency` = b.`id_currency` AND b.`id_lang` = 6
LEFT JOIN `ps_currency_shop` `c` ON a.`id_currency` = c.`id_currency` AND c.`id_shop` = 2
WHERE (a.`id_currency` = 2) LIMIT 1 | 0.080 ms | 1 | | | /src/Adapter/EntityMapper.php:71 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /classes/Currency.php:246 (__construct) /src/Adapter/Currency/CurrencyDataProvider.php:101 (__construct) /src/Adapter/Currency/CurrencyDataProvider.php:114 (getCurrencyByIsoCode) /src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:102 (getCurrencyByIsoCodeAndLocale) /src/Core/Data/Layer/AbstractDataLayer.php:91 (doRead) /src/Core/Data/Layer/AbstractDataLayer.php:150 (read) /src/Core/Data/Layer/AbstractDataLayer.php:95 (propagateRead) /src/Core/Localization/Currency/CurrencyDataSource.php:67 (read) /src/Core/Localization/Currency/CurrencyDataSource.php:109 (getLocalizedCurrencyData) /src/Core/Localization/Currency/CurrencyDataSource.php:96 (formatCurrenciesData) /src/Core/Localization/Currency/Repository.php:87 (getAllInstalledCurrenciesData) /src/Core/Localization/Locale/Repository.php:207 (getAllInstalledCurrencies) /src/Core/Localization/Locale/Repository.php:150 (getPriceSpecifications) /classes/controller/Controller.php:209 (getLocale) /classes/controller/FrontController.php:284 (init) /controllers/front/ProductController.php:124 (init) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
34 | SELECT SQL_NO_CACHE m.`id_module` as `active`, ms.`id_module` as `shop_active`
FROM `ps_module` m
LEFT JOIN `ps_module_shop` ms ON m.`id_module` = ms.`id_module`
WHERE `name` = "ps_mbo" LIMIT 1 | 0.079 ms | 2 | | | /modules/ps_mbo/ps_mbo.php:335 /modules/ps_mbo/ps_mbo.php:118 (checkModuleStatus) :undefined (__construct) /src/Core/Foundation/IoC/Container.php:123 (newInstance) /src/Core/Foundation/IoC/Container.php:153 (makeInstanceFromClassName) /src/Core/Foundation/IoC/Container.php:166 (doMake) /src/Adapter/ServiceLocator.php:70 (make) /classes/module/Module.php:1235 (get) /tools/profiling/Module.php:35 (coreLoadModule) /classes/module/Module.php:1214 (coreLoadModule) /classes/Hook.php:966 (getInstanceByName) /classes/Dispatcher.php:351 (exec) /index.php:40 (dispatch)
|
5 | SELECT SQL_NO_CACHE *
FROM `ps_shop` a
WHERE (a.`id_shop` = 2) LIMIT 1 | 0.079 ms | 1 | | | /src/Adapter/EntityMapper.php:71 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /classes/shop/Shop.php:145 (__construct) /classes/shop/Shop.php:431 (__construct) /config/config.inc.php:117 (initialize) /index.php:39 (require)
|
156 | SELECT SQL_NO_CACHE *
FROM `ps_axon_creator_related` bc
LEFT JOIN `ps_axon_creator_related_shop` bcs
ON (bc.`id_axon_creator_related` = bcs.`id_axon_creator_related`)
WHERE bcs.`id_shop` = 2
AND bc.`post_type` = 'hook'
AND bc.`key_related` = 'displayProductAccessories' LIMIT 1 | 0.079 ms | 21 | | | /modules/axoncreator/src/Wp_Helper.php:1074 /modules/axoncreator/axoncreator.php:1027 (getRelatedByKey) /classes/Hook.php:1043 (hookDisplayHeader) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /classes/controller/FrontController.php:622 (exec) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
222 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "nrtproductslinknav" LIMIT 1 | 0.079 ms | 1 | | | /classes/module/Module.php:2636 /classes/module/Module.php:2108 (getModuleIdByName) /classes/Hook.php:1049 (isEnabled) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
258 | SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 87928) AND (id_product_attribute = 0) AND (id_shop_group = 1) AND (id_shop = 0) LIMIT 1 | 0.079 ms | 1 | | | /classes/stock/StockAvailable.php:453 /classes/Product.php:7860 (getQuantityAvailableByProduct) /classes/Product.php:751 (loadStockData) /override/classes/Product.php:9 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:153 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
24 | SELECT SQL_NO_CACHE name, alias FROM `ps_hook_alias` | 0.078 ms | 88 | | | /classes/Hook.php:339 /classes/Hook.php:154 (getCanonicalHookNames) /classes/Hook.php:363 (normalizeHookName) /classes/Hook.php:386 (getAllKnownNames) /classes/Hook.php:974 (isHookCallableOn) /classes/Dispatcher.php:611 (exec) /classes/Dispatcher.php:243 (loadRoutes) /classes/Dispatcher.php:201 (__construct) /index.php:40 (getInstance)
|
250 | SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `ps_specific_price_priority`
WHERE `id_product` = 87928
ORDER BY `id_specific_price_priority` DESC LIMIT 1 | 0.078 ms | 0 | | | /classes/SpecificPrice.php:259 /classes/SpecificPrice.php:239 (getPriority) /override/classes/SpecificPrice.php:72 (_getScoreQuery) /classes/Product.php:3827 (getSpecificPrice) /override/classes/Product.php:117 (priceCalculation) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:748 (getPriceStatic) /override/classes/Product.php:9 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:153 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
17 | SELECT SQL_NO_CACHE *
FROM `ps_lang` a
LEFT JOIN `ps_lang_shop` `c` ON a.`id_lang` = c.`id_lang` AND c.`id_shop` = 2
WHERE (a.`id_lang` = 6) LIMIT 1 | 0.077 ms | 1 | | | /src/Adapter/EntityMapper.php:71 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /classes/Tools.php:641 (__construct) /classes/Dispatcher.php:236 (switchLanguage) /classes/Dispatcher.php:201 (__construct) /index.php:40 (getInstance)
|
100 | SELECT SQL_NO_CACHE c.`nleft`, c.`nright`, c.`level_depth`
FROM `ps_category` c
WHERE (c.`id_category` = 2) LIMIT 1 | 0.077 ms | 1 | | | /classes/Category.php:1974 /classes/Category.php:1998 (getInterval) /controllers/front/ProductController.php:884 (inShop) /controllers/front/ProductController.php:368 (assignCategory) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
145 | SELECT SQL_NO_CACHE *
FROM `ps_country_lang`
WHERE `id_country` = 14 | 0.077 ms | 16 | | | /src/Adapter/EntityMapper.php:79 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /classes/AddressFormat.php:404 (__construct) /classes/AddressFormat.php:439 (getFormattedAddressFieldsValues) /classes/controller/FrontController.php:1761 (generateAddress) /classes/controller/FrontController.php:551 (getTemplateVarShop) /classes/controller/FrontController.php:614 (assignGeneralPurposeVariables) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
282 | SELECT SQL_NO_CACHE t.`id_lang`, t.`name`
FROM ps_tag t
LEFT JOIN ps_product_tag pt ON (pt.id_tag = t.id_tag)
WHERE pt.`id_product`=87927 | 0.077 ms | 1 | | | /classes/Tag.php:244 /classes/Product.php:749 (getProductTags) /override/classes/Product.php:9 (__construct) /modules/axoncreator/axoncreator.php:1426 (__construct) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
310 | SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 82457) AND (id_product_attribute = 0) AND (id_shop_group = 1) AND (id_shop = 0) LIMIT 1 | 0.077 ms | 1 | | | /classes/stock/StockAvailable.php:453 /override/classes/Product.php:231 (getQuantityAvailableByProduct) /classes/Product.php:5797 (getQuantity) /override/classes/Product.php:184 (getProductProperties) /classes/Product.php:5984 (getProductProperties) /classes/Category.php:1074 (getProductsProperties) /src/Adapter/Category/CategoryProductSearchProvider.php:88 (getProducts) /src/Adapter/Category/CategoryProductSearchProvider.php:105 (getProductsOrCount) /modules/axoncreator/axoncreator.php:1442 (runQuery) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
45 | SELECT SQL_NO_CACHE `id_lang` FROM `ps_lang`
WHERE `locale` = 'hu-hu'
OR `language_code` = 'hu-hu' LIMIT 1 | 0.076 ms | 16 | | | /classes/Language.php:883 /src/Adapter/Currency/CurrencyDataProvider.php:112 (getIdByLocale) /src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:102 (getCurrencyByIsoCodeAndLocale) /src/Core/Data/Layer/AbstractDataLayer.php:91 (doRead) /src/Core/Data/Layer/AbstractDataLayer.php:150 (read) /src/Core/Data/Layer/AbstractDataLayer.php:95 (propagateRead) /src/Core/Localization/Currency/CurrencyDataSource.php:67 (read) /src/Core/Localization/Currency/CurrencyDataSource.php:109 (getLocalizedCurrencyData) /src/Core/Localization/Currency/CurrencyDataSource.php:96 (formatCurrenciesData) /src/Core/Localization/Currency/Repository.php:87 (getAllInstalledCurrenciesData) /src/Core/Localization/Locale/Repository.php:207 (getAllInstalledCurrencies) /src/Core/Localization/Locale/Repository.php:150 (getPriceSpecifications) /classes/controller/Controller.php:209 (getLocale) /classes/controller/FrontController.php:284 (init) /controllers/front/ProductController.php:124 (init) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
73 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "bvkseodispatcher" LIMIT 1 | 0.076 ms | 0 | | | /classes/module/Module.php:2636 /classes/module/Module.php:2084 (getModuleIdByName) /modules/jprestaspeedpack/jprestaspeedpack.php:214 (isInstalled) :undefined (__construct) /src/Core/Foundation/IoC/Container.php:123 (newInstance) /src/Core/Foundation/IoC/Container.php:153 (makeInstanceFromClassName) /src/Core/Foundation/IoC/Container.php:166 (doMake) /src/Adapter/ServiceLocator.php:70 (make) /classes/module/Module.php:1235 (get) /tools/profiling/Module.php:35 (coreLoadModule) /classes/module/Module.php:1214 (coreLoadModule) /classes/tax/TaxManagerFactory.php:71 (getInstanceByName) /classes/tax/TaxManagerFactory.php:46 (execHookTaxManagerFactory) /classes/Product.php:6892 (getManager) /classes/Product.php:741 (getTaxesRate) /override/classes/Product.php:9 (__construct) /controllers/front/ProductController.php:146 (__construct) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
165 | SELECT SQL_NO_CACHE *
FROM `ps_axon_creator_related` bc
LEFT JOIN `ps_axon_creator_related_shop` bcs
ON (bc.`id_axon_creator_related` = bcs.`id_axon_creator_related`)
WHERE bcs.`id_shop` = 2
AND bc.`post_type` = 'hook'
AND bc.`key_related` = 'displayFooterCategory' LIMIT 1 | 0.076 ms | 21 | | | /modules/axoncreator/src/Wp_Helper.php:1074 /modules/axoncreator/axoncreator.php:1027 (getRelatedByKey) /classes/Hook.php:1043 (hookDisplayHeader) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /classes/controller/FrontController.php:622 (exec) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
158 | SELECT SQL_NO_CACHE *
FROM `ps_axon_creator_related` bc
LEFT JOIN `ps_axon_creator_related_shop` bcs
ON (bc.`id_axon_creator_related` = bcs.`id_axon_creator_related`)
WHERE bcs.`id_shop` = 2
AND bc.`post_type` = 'hook'
AND bc.`key_related` = 'displayFooterProduct' LIMIT 1 | 0.076 ms | 21 | | | /modules/axoncreator/src/Wp_Helper.php:1074 /modules/axoncreator/axoncreator.php:1027 (getRelatedByKey) /classes/Hook.php:1043 (hookDisplayHeader) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /classes/controller/FrontController.php:622 (exec) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
239 | SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 87926) AND (id_product_attribute = 0) AND (id_shop_group = 1) AND (id_shop = 0) LIMIT 1 | 0.075 ms | 1 | | | /classes/stock/StockAvailable.php:453 /classes/Product.php:7860 (getQuantityAvailableByProduct) /classes/Product.php:751 (loadStockData) /override/classes/Product.php:9 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:146 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
349 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "ps_facetedsearch" LIMIT 1 | 0.075 ms | 1 | | | /classes/module/Module.php:2636 /classes/module/Module.php:2108 (getModuleIdByName) /classes/Hook.php:1049 (isEnabled) /tools/profiling/Hook.php:64 (coreRenderWidget) /config/smartyfront.config.inc.php:91 (coreRenderWidget) /config/smartyfront.config.inc.php:84 ({closure}) /config/smartyfront.config.inc.php:95 (withWidget) /classes/Smarty/SmartyLazyRegister.php:81 (smartyWidget) /var/cache/prod/smarty/compile/akira/28/80/70/288070af2205f6129c696e56a7155b1d884283f7_2.file.facets.tpl.php:33 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6771905162fd45_94788943) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akira/5b/94/0c/5b940cf84db06a9637a353c3b516256f432e36ce_2.module.nrtthemecustomizerviewstemplateshookorther.tpl.php:75 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190515c1cf0_31284358) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/module/Module.php:2273 (fetch) /modules/nrtthemecustomizer/nrtthemecustomizer.php:3775 (fetch) /classes/Hook.php:1043 (hookDisplayBodyBottom) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:443 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
92 | SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 87927) AND (id_product_attribute = 0) AND (id_shop_group = 1) AND (id_shop = 0) LIMIT 1 | 0.075 ms | 1 | | | /classes/stock/StockAvailable.php:453 /classes/Product.php:7860 (getQuantityAvailableByProduct) /classes/Product.php:751 (loadStockData) /override/classes/Product.php:9 (__construct) /controllers/front/ProductController.php:146 (__construct) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
268 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 32 AND `id_shop` = 2 LIMIT 1 | 0.075 ms | 1 | | | /classes/module/Module.php:2109 /classes/Hook.php:1049 (isEnabled) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/2b/97/9c/2b979c84f43bf57f4730345097a675ac25ba3cc5_2.file.product-additional-info.tpl.php:34 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190513d3810_79001082) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:483 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:126 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
62 | SELECT SQL_NO_CACHE *
FROM `ps_currency` a
LEFT JOIN `ps_currency_shop` `c` ON a.`id_currency` = c.`id_currency` AND c.`id_shop` = 2
WHERE (a.`id_currency` = 1) LIMIT 1 | 0.074 ms | 1 | | | /src/Adapter/EntityMapper.php:71 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /classes/Currency.php:246 (__construct) /classes/Currency.php:1089 (__construct) /classes/Tools.php:695 (getCurrencyInstance) /classes/controller/FrontController.php:368 (setCurrency) /controllers/front/ProductController.php:124 (init) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
231 | SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `ps_specific_price_priority`
WHERE `id_product` = 87926
ORDER BY `id_specific_price_priority` DESC LIMIT 1 | 0.074 ms | 0 | | | /classes/SpecificPrice.php:259 /classes/SpecificPrice.php:239 (getPriority) /override/classes/SpecificPrice.php:72 (_getScoreQuery) /classes/Product.php:3827 (getSpecificPrice) /override/classes/Product.php:117 (priceCalculation) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:748 (getPriceStatic) /override/classes/Product.php:9 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:146 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
144 | SELECT SQL_NO_CACHE *
FROM `ps_country` a
LEFT JOIN `ps_country_shop` `c` ON a.`id_country` = c.`id_country` AND c.`id_shop` = 2
WHERE (a.`id_country` = 14) LIMIT 1 | 0.074 ms | 1 | | | /src/Adapter/EntityMapper.php:71 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /classes/AddressFormat.php:404 (__construct) /classes/AddressFormat.php:439 (getFormattedAddressFieldsValues) /classes/controller/FrontController.php:1761 (generateAddress) /classes/controller/FrontController.php:551 (getTemplateVarShop) /classes/controller/FrontController.php:614 (assignGeneralPurposeVariables) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
162 | SELECT SQL_NO_CACHE *
FROM `ps_axon_creator_related` bc
LEFT JOIN `ps_axon_creator_related_shop` bcs
ON (bc.`id_axon_creator_related` = bcs.`id_axon_creator_related`)
WHERE bcs.`id_shop` = 2
AND bc.`post_type` = 'hook'
AND bc.`key_related` = 'displayShoppingCartFooter' LIMIT 1 | 0.074 ms | 21 | | | /modules/axoncreator/src/Wp_Helper.php:1074 /modules/axoncreator/axoncreator.php:1027 (getRelatedByKey) /classes/Hook.php:1043 (hookDisplayHeader) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /classes/controller/FrontController.php:622 (exec) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
299 | SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 89024) AND (id_product_attribute = 0) AND (id_shop_group = 1) AND (id_shop = 0) LIMIT 1 | 0.074 ms | 1 | | | /classes/stock/StockAvailable.php:453 /override/classes/Product.php:231 (getQuantityAvailableByProduct) /classes/Product.php:5797 (getQuantity) /override/classes/Product.php:184 (getProductProperties) /classes/Product.php:5984 (getProductProperties) /classes/Category.php:1074 (getProductsProperties) /src/Adapter/Category/CategoryProductSearchProvider.php:88 (getProducts) /src/Adapter/Category/CategoryProductSearchProvider.php:105 (getProductsOrCount) /modules/axoncreator/axoncreator.php:1442 (runQuery) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
18 | SELECT SQL_NO_CACHE id_shop
FROM `ps_lang_shop`
WHERE `id_lang` = 6
AND id_shop = 2 LIMIT 1 | 0.073 ms | 1 | | | /classes/ObjectModel.php:1729 /classes/Tools.php:642 (isAssociatedToShop) /classes/Dispatcher.php:236 (switchLanguage) /classes/Dispatcher.php:201 (__construct) /index.php:40 (getInstance)
|
159 | SELECT SQL_NO_CACHE *
FROM `ps_axon_creator_related` bc
LEFT JOIN `ps_axon_creator_related_shop` bcs
ON (bc.`id_axon_creator_related` = bcs.`id_axon_creator_related`)
WHERE bcs.`id_shop` = 2
AND bc.`post_type` = 'hook'
AND bc.`key_related` = 'displayLeftColumnProduct' LIMIT 1 | 0.073 ms | 21 | | | /modules/axoncreator/src/Wp_Helper.php:1074 /modules/axoncreator/axoncreator.php:1027 (getRelatedByKey) /classes/Hook.php:1043 (hookDisplayHeader) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /classes/controller/FrontController.php:622 (exec) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
325 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 44 AND `id_shop` = 2 LIMIT 1 | 0.073 ms | 1 | | | /classes/module/Module.php:2109 /classes/Hook.php:1049 (isEnabled) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:169 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
9 | SELECT SQL_NO_CACHE *
FROM `ps_shop_group` a
WHERE (a.`id_shop_group` = 1) LIMIT 1 | 0.072 ms | 1 | | | /src/Adapter/EntityMapper.php:71 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /classes/shop/Shop.php:561 (__construct) /config/config.inc.php:171 (getGroup) /index.php:39 (require)
|
117 | SELECT SQL_NO_CACHE state FROM ps_feature_flag WHERE name = 'multiple_image_format' LIMIT 1 | 0.072 ms | 0 | | | /classes/FeatureFlag.php:105 /src/Core/Image/ImageFormatConfiguration.php:69 (isEnabled) /src/Adapter/Image/ImageRetriever.php:209 (getGenerationFormats) /src/Adapter/Image/ImageRetriever.php:111 (getImage) :undefined (PrestaShop\PrestaShop\Adapter\Image\{closure}) /src/Adapter/Image/ImageRetriever.php:104 (array_map) /src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages) /src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages) /src/Adapter/Presenter/Product/ProductPresenter.php:110 (__construct) /controllers/front/ProductController.php:1242 (present) /controllers/front/ProductController.php:421 (getTemplateVarProduct) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
168 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "pshowb2border" LIMIT 1 | 0.072 ms | 1 | | | /classes/module/Module.php:2636 /classes/module/Module.php:2108 (getModuleIdByName) /modules/pshowreferrers/vendor/prestashow/presta-core/Model/AbstractModule.php:148 (isEnabled) /modules/pshowreferrers/vendor/prestashow/presta-core/Model/AbstractModule.php:91 (runMigrations) /modules/pshowreferrers/vendor/prestashow/presta-core/Model/AbstractModule.php:91 (unknown) /modules/pshowb2border/src/Module.php:28 (__construct) :undefined (__construct) /src/Core/Foundation/IoC/Container.php:123 (newInstance) /src/Core/Foundation/IoC/Container.php:153 (makeInstanceFromClassName) /src/Core/Foundation/IoC/Container.php:166 (doMake) /src/Adapter/ServiceLocator.php:70 (make) /classes/module/Module.php:1235 (get) /tools/profiling/Module.php:35 (coreLoadModule) /classes/module/Module.php:1214 (coreLoadModule) /classes/Hook.php:966 (getInstanceByName) /classes/controller/FrontController.php:622 (exec) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
226 | SELECT SQL_NO_CACHE position FROM `ps_category_product` WHERE id_category = 1209 AND id_product = 87927 LIMIT 1 | 0.072 ms | 1 | | | /modules/nrtproductslinknav/nrtproductslinknav.php:139 /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
347 | SELECT SQL_NO_CACHE *
FROM `ps_currency` a
LEFT JOIN `ps_currency_shop` `c` ON a.`id_currency` = c.`id_currency` AND c.`id_shop` = 2
WHERE (a.`id_currency` = 2) LIMIT 1 | 0.072 ms | 1 | | | /src/Adapter/EntityMapper.php:71 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /classes/Currency.php:246 (__construct) /classes/Currency.php:1089 (__construct) /classes/Currency.php:766 (getCurrencyInstance) /classes/Currency.php:669 (addCldrDatasToCurrency) /modules/ps_currencyselector/ps_currencyselector.php:112 (getCurrencies) /var/cache/prod/smarty/compile/akira/5d/85/99/5d85998f2045cda3df9427ce50fe4fead6d6cd49_2.file.account.tpl.php:248 (getWidgetVariables) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190515d8c58_71002267) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akira/5b/94/0c/5b940cf84db06a9637a353c3b516256f432e36ce_2.module.nrtthemecustomizerviewstemplateshookorther.tpl.php:73 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190515c1cf0_31284358) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/module/Module.php:2273 (fetch) /modules/nrtthemecustomizer/nrtthemecustomizer.php:3775 (fetch) /classes/Hook.php:1043 (hookDisplayBodyBottom) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:443 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
66 | SELECT SQL_NO_CACHE *
FROM `ps_group_lang`
WHERE `id_group` = 8 | 0.071 ms | 16 | | | /src/Adapter/EntityMapper.php:79 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /classes/Group.php:81 (__construct) /classes/Group.php:397 (__construct) /classes/Cart.php:249 (getCurrent) /classes/Cart.php:222 (setTaxCalculationMethod) /classes/controller/FrontController.php:467 (__construct) /controllers/front/ProductController.php:124 (init) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
141 | SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `ps_category_lang` cl
WHERE `id_lang` = 4
AND cl.id_shop = 2
AND cl.`id_category` = 1209 LIMIT 1 | 0.071 ms | 1 | | | /classes/Category.php:1378 /classes/Product.php:758 (getLinkRewrite) /override/classes/Product.php:9 (__construct) /classes/Link.php:113 (__construct) /classes/Link.php:185 (getProductObject) /classes/Link.php:1215 (getProductLink) /classes/controller/FrontController.php:2168 (getLanguageLink) /classes/controller/FrontController.php:1609 (getAlternativeLangsUrl) /classes/controller/FrontController.php:1742 (getTemplateVarUrls) /classes/controller/FrontController.php:551 (getTemplateVarShop) /classes/controller/FrontController.php:614 (assignGeneralPurposeVariables) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
147 | SELECT SQL_NO_CACHE `config`
FROM ps_nrt_themect_page_config
WHERE `page_id` = 87927
AND `page_type` = 'product' LIMIT 1 | 0.070 ms | 0 | | | /modules/nrtthemecustomizer/nrtthemecustomizer.php:3640 /modules/nrtthemecustomizer/nrtthemecustomizer.php:2935 (_getThemeCtPageConfig) /modules/nrtthemecustomizer/nrtthemecustomizer.php:3180 (_getPageConfigOnFront) /modules/nrtthemecustomizer/nrtthemecustomizer.php:3038 (renderOptions) /modules/nrtthemecustomizer/nrtthemecustomizer.php:3281 (_prepHook) /classes/Hook.php:1043 (hookDisplayHeader) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /classes/controller/FrontController.php:622 (exec) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
161 | SELECT SQL_NO_CACHE *
FROM `ps_axon_creator_related` bc
LEFT JOIN `ps_axon_creator_related_shop` bcs
ON (bc.`id_axon_creator_related` = bcs.`id_axon_creator_related`)
WHERE bcs.`id_shop` = 2
AND bc.`post_type` = 'hook'
AND bc.`key_related` = 'displayContactPageBuilder' LIMIT 1 | 0.070 ms | 21 | | | /modules/axoncreator/src/Wp_Helper.php:1074 /modules/axoncreator/axoncreator.php:1027 (getRelatedByKey) /classes/Hook.php:1043 (hookDisplayHeader) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /classes/controller/FrontController.php:622 (exec) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
245 | SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 2 AND id_lang = 6 AND id_category = 1209 LIMIT 1 | 0.070 ms | 1 | | | /classes/Product.php:5655 /override/classes/Product.php:184 (getProductProperties) /classes/ProductAssembler.php:187 (getProductProperties) /modules/nrtproductslinknav/nrtproductslinknav.php:178 (assembleProduct) /modules/nrtproductslinknav/nrtproductslinknav.php:148 (getInfoProduct) /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
76 | SELECT SQL_NO_CACHE *
FROM `ps_tax_lang`
WHERE `id_tax` = 1 | 0.070 ms | 16 | | | /src/Adapter/EntityMapper.php:79 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /override/classes/tax/TaxRulesTaxManager.php:127 (__construct) /classes/Product.php:6893 (getTaxCalculator) /classes/Product.php:741 (getTaxesRate) /override/classes/Product.php:9 (__construct) /controllers/front/ProductController.php:146 (__construct) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
109 | SELECT SQL_NO_CACHE id_shop FROM ps_shop | 0.070 ms | 2 | | | /classes/shop/Shop.php:751 /classes/Hook.php:590 (getCompleteListOfShopsID) /classes/module/Module.php:1061 (registerHook) /modules/seigigpsr/seigigpsr.inc.php:864 (registerHook) /modules/seigigpsr/util/license.php:26 (__construct) /modules/seigigpsr/seigigpsr.inc.php:102 (getLicenserObject) /modules/seigigpsr/seigigpsr.inc.php:410 (isActiveLicense) /modules/seigigpsr/seigigpsr.inc.php:341 (hookDisplaySeigiGpsr) /classes/Hook.php:1043 (hookDisplayProductExtraContent) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /src/Adapter/HookManager.php:81 (exec) /src/PrestaShopBundle/Service/Hook/HookFinder.php:70 (exec) /src/Core/Product/ProductExtraContentFinder.php:55 (find) /src/PrestaShopBundle/Service/Hook/HookFinder.php:102 (find) /controllers/front/ProductController.php:1203 (present) /controllers/front/ProductController.php:421 (getTemplateVarProduct) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
221 | SELECT SQL_NO_CACHE `id_productvideo`
FROM ps_nrtproductvideo_product
WHERE id_product = 87927 LIMIT 1 | 0.070 ms | 0 | | | /modules/nrtproductvideo/src/ProductVideoModel.php:89 /modules/nrtproductvideo/nrtproductvideo.php:694 (getProductVideos) /modules/nrtproductvideo/nrtproductvideo.php:677 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/e2/e1/b5/e2e1b5264cd2b163fcf7ccc7786b496af7682b0d_2.file.product-cover-thumbnails.tpl.php:132 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/e2/e1/b5/e2e1b5264cd2b163fcf7ccc7786b496af7682b0d_2.file.product-cover-thumbnails.tpl.php:38 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190542b5761_25916598) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:162 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:176 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:205 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:45 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
16 | SELECT SQL_NO_CACHE `id_lang` FROM `ps_lang` WHERE `iso_code` = 'hu' LIMIT 1 | 0.069 ms | 16 | | | /classes/Language.php:854 /classes/Tools.php:627 (getIdByIso) /classes/Dispatcher.php:236 (switchLanguage) /classes/Dispatcher.php:201 (__construct) /index.php:40 (getInstance)
|
42 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "seigicookie" LIMIT 1 | 0.069 ms | 1 | | | /classes/module/Module.php:2636 /classes/module/Module.php:2084 (getModuleIdByName) /modules/seigicookie/util/module/Upgrade.php:60 (isInstalled) /modules/seigicookie/seigicookie.inc.php:86 (runUpgrade) :undefined (__construct) /src/Core/Foundation/IoC/Container.php:123 (newInstance) /src/Core/Foundation/IoC/Container.php:153 (makeInstanceFromClassName) /src/Core/Foundation/IoC/Container.php:166 (doMake) /src/Adapter/ServiceLocator.php:70 (make) /classes/module/Module.php:1235 (get) /tools/profiling/Module.php:35 (coreLoadModule) /classes/module/Module.php:1214 (coreLoadModule) /modules/seigitagmanager/seigitagmanager.inc.php:1466 (getInstanceByName) /modules/seigitagmanager/classes/integrations/facebook/settings.php:224 (getCookieModuleInstance) /modules/seigitagmanager/util/configurator/configurator.php:385 (__construct) /modules/seigitagmanager/classes/integrations/facebook/facebook.php:25 (getInstance) /modules/seigitagmanager/classes/integrations/facebook/facebook.php:769 (getSettingsObject) /modules/seigitagmanager/classes/integrations/facebook/facebook.php:781 (getActiveErrors) /modules/seigitagmanager/classes/manager.php:54 (isActive) /modules/seigitagmanager/seigitagmanager.inc.php:968 (getLicensedIntegrations) /classes/Hook.php:1043 (hookActionDispatcher) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /classes/Dispatcher.php:507 (exec) /index.php:40 (dispatch)
|
172 | SELECT SQL_NO_CACHE * FROM ps_hook_module
WHERE `id_hook` = 25
AND `id_module` = 121
AND `id_shop` = 2 | 0.069 ms | 0 | | | /classes/Hook.php:515 /classes/module/Module.php:2150 (isModuleRegisteredOnHook) /modules/seigicookie/seigicookie.inc.php:278 (isRegisteredInHook) /classes/Hook.php:1043 (hookDisplayHeader) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /classes/controller/FrontController.php:622 (exec) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
264 | SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 2 AND id_lang = 6 AND id_category = 1209 LIMIT 1 | 0.069 ms | 1 | | | /classes/Product.php:5655 /override/classes/Product.php:184 (getProductProperties) /classes/ProductAssembler.php:187 (getProductProperties) /modules/nrtproductslinknav/nrtproductslinknav.php:178 (assembleProduct) /modules/nrtproductslinknav/nrtproductslinknav.php:155 (getInfoProduct) /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
97 | SELECT SQL_NO_CACHE id_shop
FROM `ps_product_shop`
WHERE `id_product` = 87927
AND id_shop = 2 LIMIT 1 | 0.069 ms | 1 | | | /classes/ObjectModel.php:1729 /controllers/front/ProductController.php:192 (isAssociatedToShop) /controllers/front/ProductController.php:167 (checkPermissionsToViewProduct) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
46 | SELECT SQL_NO_CACHE c.id_currency
FROM `ps_currency` c
WHERE (iso_code = 'CZK') LIMIT 1 | 0.068 ms | 1 | | | /classes/Currency.php:893 /src/Adapter/Currency/CurrencyDataProvider.php:92 (getIdByIsoCode) /src/Adapter/Currency/CurrencyDataProvider.php:114 (getCurrencyByIsoCode) /src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:102 (getCurrencyByIsoCodeAndLocale) /src/Core/Data/Layer/AbstractDataLayer.php:91 (doRead) /src/Core/Data/Layer/AbstractDataLayer.php:150 (read) /src/Core/Data/Layer/AbstractDataLayer.php:95 (propagateRead) /src/Core/Localization/Currency/CurrencyDataSource.php:67 (read) /src/Core/Localization/Currency/CurrencyDataSource.php:109 (getLocalizedCurrencyData) /src/Core/Localization/Currency/CurrencyDataSource.php:96 (formatCurrenciesData) /src/Core/Localization/Currency/Repository.php:87 (getAllInstalledCurrenciesData) /src/Core/Localization/Locale/Repository.php:207 (getAllInstalledCurrencies) /src/Core/Localization/Locale/Repository.php:150 (getPriceSpecifications) /classes/controller/Controller.php:209 (getLocale) /classes/controller/FrontController.php:284 (init) /controllers/front/ProductController.php:124 (init) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
75 | SELECT SQL_NO_CACHE *
FROM `ps_tax` a
WHERE (a.`id_tax` = 1) LIMIT 1 | 0.068 ms | 1 | | | /src/Adapter/EntityMapper.php:71 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /override/classes/tax/TaxRulesTaxManager.php:127 (__construct) /classes/Product.php:6893 (getTaxCalculator) /classes/Product.php:741 (getTaxesRate) /override/classes/Product.php:9 (__construct) /controllers/front/ProductController.php:146 (__construct) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
135 | SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `ps_category_lang` cl
WHERE `id_lang` = 1
AND cl.id_shop = 2
AND cl.`id_category` = 1209 LIMIT 1 | 0.068 ms | 1 | | | /classes/Category.php:1378 /classes/Product.php:758 (getLinkRewrite) /override/classes/Product.php:9 (__construct) /classes/Link.php:113 (__construct) /classes/Link.php:185 (getProductObject) /classes/Link.php:1215 (getProductLink) /classes/controller/FrontController.php:2168 (getLanguageLink) /classes/controller/FrontController.php:1609 (getAlternativeLangsUrl) /classes/controller/FrontController.php:1742 (getTemplateVarUrls) /classes/controller/FrontController.php:551 (getTemplateVarShop) /classes/controller/FrontController.php:614 (assignGeneralPurposeVariables) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
63 | SELECT SQL_NO_CACHE *
FROM `ps_currency_lang`
WHERE `id_currency` = 1 | 0.068 ms | 16 | | | /src/Adapter/EntityMapper.php:79 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /classes/Currency.php:246 (__construct) /classes/Currency.php:1089 (__construct) /classes/Tools.php:695 (getCurrencyInstance) /classes/controller/FrontController.php:368 (setCurrency) /controllers/front/ProductController.php:124 (init) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
160 | SELECT SQL_NO_CACHE *
FROM `ps_axon_creator_related` bc
LEFT JOIN `ps_axon_creator_related_shop` bcs
ON (bc.`id_axon_creator_related` = bcs.`id_axon_creator_related`)
WHERE bcs.`id_shop` = 2
AND bc.`post_type` = 'hook'
AND bc.`key_related` = 'displayRightColumnProduct' LIMIT 1 | 0.068 ms | 21 | | | /modules/axoncreator/src/Wp_Helper.php:1074 /modules/axoncreator/axoncreator.php:1027 (getRelatedByKey) /classes/Hook.php:1043 (hookDisplayHeader) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /classes/controller/FrontController.php:622 (exec) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
164 | SELECT SQL_NO_CACHE *
FROM `ps_axon_creator_related` bc
LEFT JOIN `ps_axon_creator_related_shop` bcs
ON (bc.`id_axon_creator_related` = bcs.`id_axon_creator_related`)
WHERE bcs.`id_shop` = 2
AND bc.`post_type` = 'hook'
AND bc.`key_related` = 'displayHeaderCategory' LIMIT 1 | 0.068 ms | 21 | | | /modules/axoncreator/src/Wp_Helper.php:1074 /modules/axoncreator/axoncreator.php:1027 (getRelatedByKey) /classes/Hook.php:1043 (hookDisplayHeader) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /classes/controller/FrontController.php:622 (exec) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
220 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 88 AND `id_shop` = 2 LIMIT 1 | 0.068 ms | 1 | | | /classes/module/Module.php:2109 /classes/Hook.php:1049 (isEnabled) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/e2/e1/b5/e2e1b5264cd2b163fcf7ccc7786b496af7682b0d_2.file.product-cover-thumbnails.tpl.php:132 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/e2/e1/b5/e2e1b5264cd2b163fcf7ccc7786b496af7682b0d_2.file.product-cover-thumbnails.tpl.php:38 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190542b5761_25916598) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:162 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:176 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:205 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:45 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
12 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "jprestaspeedpack" LIMIT 1 | 0.067 ms | 1 | | | /classes/module/Module.php:2636 /classes/module/Module.php:2108 (getModuleIdByName) /config/smartyfront.config.inc.php:58 (isEnabled) /config/smarty.config.inc.php:59 (require_once) /config/config.inc.php:245 (require_once) /index.php:39 (require)
|
69 | SELECT SQL_NO_CACHE `name`
FROM `ps_manufacturer`
WHERE `id_manufacturer` = 66
AND `active` = 1 LIMIT 1 | 0.067 ms | 1 | | | /classes/Manufacturer.php:316 /classes/Product.php:734 (getNameById) /override/classes/Product.php:9 (__construct) /controllers/front/ProductController.php:146 (__construct) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
152 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "smartblog" LIMIT 1 | 0.067 ms | 1 | | | /classes/module/Module.php:2636 /classes/module/Module.php:2108 (getModuleIdByName) /modules/nrtmegamenu/nrtmegamenu.php:86 (isEnabled) :undefined (__construct) /src/Core/Foundation/IoC/Container.php:123 (newInstance) /src/Core/Foundation/IoC/Container.php:153 (makeInstanceFromClassName) /src/Core/Foundation/IoC/Container.php:166 (doMake) /src/Adapter/ServiceLocator.php:70 (make) /classes/module/Module.php:1235 (get) /tools/profiling/Module.php:35 (coreLoadModule) /classes/module/Module.php:1214 (coreLoadModule) /classes/Hook.php:966 (getInstanceByName) /classes/controller/FrontController.php:622 (exec) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
223 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 74 AND `id_shop` = 2 LIMIT 1 | 0.066 ms | 1 | | | /classes/module/Module.php:2109 /classes/Hook.php:1049 (isEnabled) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
253 | SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 87928 AND id_shop=2 LIMIT 1 | 0.066 ms | 1 | | | /classes/Product.php:6870 /classes/Product.php:3925 (getIdTaxRulesGroupByIdProduct) /override/classes/Product.php:117 (priceCalculation) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:748 (getPriceStatic) /override/classes/Product.php:9 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:153 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
305 | SELECT SQL_NO_CACHE product_shop.`price`, product_shop.`ecotax`,
0 as id_product_attribute
FROM `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 2)
WHERE (p.`id_product` = 82457) | 0.066 ms | 1 | | | /classes/Product.php:3860 /override/classes/Product.php:117 (priceCalculation) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:5688 (getPriceStatic) /override/classes/Product.php:184 (getProductProperties) /classes/Product.php:5984 (getProductProperties) /classes/Category.php:1074 (getProductsProperties) /src/Adapter/Category/CategoryProductSearchProvider.php:88 (getProducts) /src/Adapter/Category/CategoryProductSearchProvider.php:105 (getProductsOrCount) /modules/axoncreator/axoncreator.php:1442 (runQuery) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
111 | SELECT SQL_NO_CACHE * FROM ps_hook_module
WHERE `id_hook` = 76
AND `id_module` = 278
AND `id_shop` = 2 | 0.065 ms | 1 | | | /classes/Hook.php:515 /classes/Hook.php:599 (isModuleRegisteredOnHook) /classes/module/Module.php:1061 (registerHook) /modules/seigigpsr/seigigpsr.inc.php:864 (registerHook) /modules/seigigpsr/util/license.php:26 (__construct) /modules/seigigpsr/seigigpsr.inc.php:102 (getLicenserObject) /modules/seigigpsr/seigigpsr.inc.php:410 (isActiveLicense) /modules/seigigpsr/seigigpsr.inc.php:341 (hookDisplaySeigiGpsr) /classes/Hook.php:1043 (hookDisplayProductExtraContent) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /src/Adapter/HookManager.php:81 (exec) /src/PrestaShopBundle/Service/Hook/HookFinder.php:70 (exec) /src/Core/Product/ProductExtraContentFinder.php:55 (find) /src/PrestaShopBundle/Service/Hook/HookFinder.php:102 (find) /controllers/front/ProductController.php:1203 (present) /controllers/front/ProductController.php:421 (getTemplateVarProduct) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
151 | SELECT SQL_NO_CACHE * FROM `ps_nrt_custom_fonts` WHERE `active` = 1 | 0.065 ms | 7 | | | /modules/nrtthemecustomizer/nrtthemecustomizer.php:3894 /modules/nrtthemecustomizer/nrtthemecustomizer.php:3056 (get_css_fonts) /modules/nrtthemecustomizer/nrtthemecustomizer.php:3281 (_prepHook) /classes/Hook.php:1043 (hookDisplayHeader) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /classes/controller/FrontController.php:622 (exec) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
174 | SELECT SQL_NO_CACHE `name`
FROM `ps_hook`
WHERE `id_hook` = 1073 LIMIT 1 | 0.065 ms | 1 | | | /classes/Hook.php:244 /classes/Hook.php:911 (getNameById) /classes/controller/FrontController.php:622 (exec) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
342 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "ps_languageselector" LIMIT 1 | 0.065 ms | 1 | | | /classes/module/Module.php:2636 /classes/module/Module.php:2108 (getModuleIdByName) /var/cache/prod/smarty/compile/akira/5d/85/99/5d85998f2045cda3df9427ce50fe4fead6d6cd49_2.file.account.tpl.php:205 (isEnabled) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190515d8c58_71002267) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akira/5b/94/0c/5b940cf84db06a9637a353c3b516256f432e36ce_2.module.nrtthemecustomizerviewstemplateshookorther.tpl.php:73 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190515c1cf0_31284358) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/module/Module.php:2273 (fetch) /modules/nrtthemecustomizer/nrtthemecustomizer.php:3775 (fetch) /classes/Hook.php:1043 (hookDisplayBodyBottom) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:443 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
291 | SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `ps_specific_price_priority`
WHERE `id_product` = 89024
ORDER BY `id_specific_price_priority` DESC LIMIT 1 | 0.064 ms | 1 | | | /classes/SpecificPrice.php:259 /classes/SpecificPrice.php:239 (getPriority) /override/classes/SpecificPrice.php:72 (_getScoreQuery) /classes/Product.php:3827 (getSpecificPrice) /override/classes/Product.php:117 (priceCalculation) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:5688 (getPriceStatic) /override/classes/Product.php:184 (getProductProperties) /classes/Product.php:5984 (getProductProperties) /classes/Category.php:1074 (getProductsProperties) /src/Adapter/Category/CategoryProductSearchProvider.php:88 (getProducts) /src/Adapter/Category/CategoryProductSearchProvider.php:105 (getProductsOrCount) /modules/axoncreator/axoncreator.php:1442 (runQuery) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
114 | SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 2 AND id_lang = 6 AND id_category = 1209 LIMIT 1 | 0.064 ms | 1 | | | /classes/Product.php:5655 /override/classes/Product.php:184 (getProductProperties) /controllers/front/ProductController.php:1207 (getProductProperties) /controllers/front/ProductController.php:421 (getTemplateVarProduct) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
240 | SELECT SQL_NO_CACHE out_of_stock
FROM `ps_stock_available`
WHERE (id_product = 87926) AND (id_product_attribute = 0) AND (id_shop_group = 1) AND (id_shop = 0) LIMIT 1 | 0.064 ms | 1 | | | /classes/stock/StockAvailable.php:778 /classes/Product.php:7861 (outOfStock) /classes/Product.php:751 (loadStockData) /override/classes/Product.php:9 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:146 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
344 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "ps_currencyselector" LIMIT 1 | 0.064 ms | 1 | | | /classes/module/Module.php:2636 /classes/module/Module.php:2108 (getModuleIdByName) /var/cache/prod/smarty/compile/akira/5d/85/99/5d85998f2045cda3df9427ce50fe4fead6d6cd49_2.file.account.tpl.php:246 (isEnabled) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190515d8c58_71002267) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akira/5b/94/0c/5b940cf84db06a9637a353c3b516256f432e36ce_2.module.nrtthemecustomizerviewstemplateshookorther.tpl.php:73 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190515c1cf0_31284358) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/module/Module.php:2273 (fetch) /modules/nrtthemecustomizer/nrtthemecustomizer.php:3775 (fetch) /classes/Hook.php:1043 (hookDisplayBodyBottom) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:443 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
48 | SELECT SQL_NO_CACHE `id_lang` FROM `ps_lang`
WHERE `locale` = 'hu-hu'
OR `language_code` = 'hu-hu' LIMIT 1 | 0.063 ms | 16 | | | /classes/Language.php:883 /src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:115 (getIdByLocale) /src/Core/Data/Layer/AbstractDataLayer.php:91 (doRead) /src/Core/Data/Layer/AbstractDataLayer.php:150 (read) /src/Core/Data/Layer/AbstractDataLayer.php:95 (propagateRead) /src/Core/Localization/Currency/CurrencyDataSource.php:67 (read) /src/Core/Localization/Currency/CurrencyDataSource.php:109 (getLocalizedCurrencyData) /src/Core/Localization/Currency/CurrencyDataSource.php:96 (formatCurrenciesData) /src/Core/Localization/Currency/Repository.php:87 (getAllInstalledCurrenciesData) /src/Core/Localization/Locale/Repository.php:207 (getAllInstalledCurrencies) /src/Core/Localization/Locale/Repository.php:150 (getPriceSpecifications) /classes/controller/Controller.php:209 (getLocale) /classes/controller/FrontController.php:284 (init) /controllers/front/ProductController.php:124 (init) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
259 | SELECT SQL_NO_CACHE out_of_stock
FROM `ps_stock_available`
WHERE (id_product = 87928) AND (id_product_attribute = 0) AND (id_shop_group = 1) AND (id_shop = 0) LIMIT 1 | 0.063 ms | 1 | | | /classes/stock/StockAvailable.php:778 /classes/Product.php:7861 (outOfStock) /classes/Product.php:751 (loadStockData) /override/classes/Product.php:9 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:153 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
33 | SELECT SQL_NO_CACHE `active`
FROM `ps_module`
WHERE `name` = "ps_mbo" LIMIT 1 | 0.062 ms | 1 | | | /modules/ps_mbo/ps_mbo.php:325 /modules/ps_mbo/ps_mbo.php:118 (checkModuleStatus) :undefined (__construct) /src/Core/Foundation/IoC/Container.php:123 (newInstance) /src/Core/Foundation/IoC/Container.php:153 (makeInstanceFromClassName) /src/Core/Foundation/IoC/Container.php:166 (doMake) /src/Adapter/ServiceLocator.php:70 (make) /classes/module/Module.php:1235 (get) /tools/profiling/Module.php:35 (coreLoadModule) /classes/module/Module.php:1214 (coreLoadModule) /classes/Hook.php:966 (getInstanceByName) /classes/Dispatcher.php:351 (exec) /index.php:40 (dispatch)
|
194 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "nrtsearchbar" LIMIT 1 | 0.062 ms | 1 | | | /classes/module/Module.php:2636 /classes/module/Module.php:2108 (getModuleIdByName) /modules/axoncreator/includes/managers/widgets.php:116 (isEnabled) /modules/axoncreator/includes/managers/widgets.php:303 (init_widgets) /modules/axoncreator/includes/elements/column.php:1026 (get_widget_types) /modules/axoncreator/includes/base/element-base.php:911 (_get_default_child_type) /modules/axoncreator/includes/base/element-base.php:356 (get_child_type) /modules/axoncreator/includes/base/element-base.php:956 (add_child) /modules/axoncreator/includes/base/element-base.php:316 (init_children) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:124 (get_children) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/files/css/post.php:190 (render_styles) /modules/axoncreator/core/files/css/base.php:634 (render_css) /modules/axoncreator/core/files/base.php:152 (parse_content) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:82 (get_content) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/core/dynamic-tags/manager.php:434 (enqueue) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
234 | SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 87926 AND id_shop=2 LIMIT 1 | 0.062 ms | 1 | | | /classes/Product.php:6870 /classes/Product.php:3925 (getIdTaxRulesGroupByIdProduct) /override/classes/Product.php:117 (priceCalculation) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:748 (getPriceStatic) /override/classes/Product.php:9 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:146 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
241 | SELECT SQL_NO_CACHE depends_on_stock
FROM `ps_stock_available`
WHERE (id_product = 87926) AND (id_product_attribute = 0) AND (id_shop_group = 1) AND (id_shop = 0) LIMIT 1 | 0.062 ms | 1 | | | /classes/stock/StockAvailable.php:753 /classes/Product.php:7862 (dependsOnStock) /classes/Product.php:751 (loadStockData) /override/classes/Product.php:9 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:146 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
289 | SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `ps_category_lang` cl
WHERE `id_lang` = 6
AND cl.id_shop = 2
AND cl.`id_category` = 554 LIMIT 1 | 0.062 ms | 1 | | | /classes/Category.php:1378 /classes/Product.php:5654 (getLinkRewrite) /override/classes/Product.php:184 (getProductProperties) /classes/Product.php:5984 (getProductProperties) /classes/Category.php:1074 (getProductsProperties) /src/Adapter/Category/CategoryProductSearchProvider.php:88 (getProducts) /src/Adapter/Category/CategoryProductSearchProvider.php:105 (getProductsOrCount) /modules/axoncreator/axoncreator.php:1442 (runQuery) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
171 | SELECT SQL_NO_CACHE * FROM ps_hook_module
WHERE `id_hook` = 76
AND `id_module` = 121
AND `id_shop` = 2 | 0.061 ms | 1 | | | /classes/Hook.php:515 /classes/Hook.php:599 (isModuleRegisteredOnHook) /classes/module/Module.php:1061 (registerHook) /modules/seigicookie/seigicookie.inc.php:1201 (registerHook) /modules/seigicookie/util/license.php:26 (__construct) /modules/seigicookie/seigicookie.inc.php:358 (getLicenserObject) /modules/seigicookie/seigicookie.inc.php:269 (getConsentSettings) /classes/Hook.php:1043 (hookDisplayHeader) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /classes/controller/FrontController.php:622 (exec) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
343 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 6 AND `id_shop` = 2 LIMIT 1 | 0.061 ms | 1 | | | /classes/module/Module.php:2109 /var/cache/prod/smarty/compile/akira/5d/85/99/5d85998f2045cda3df9427ce50fe4fead6d6cd49_2.file.account.tpl.php:205 (isEnabled) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190515d8c58_71002267) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akira/5b/94/0c/5b940cf84db06a9637a353c3b516256f432e36ce_2.module.nrtthemecustomizerviewstemplateshookorther.tpl.php:73 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190515c1cf0_31284358) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/module/Module.php:2273 (fetch) /modules/nrtthemecustomizer/nrtthemecustomizer.php:3775 (fetch) /classes/Hook.php:1043 (hookDisplayBodyBottom) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:443 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
11 | SELECT SQL_NO_CACHE id_shop
FROM `ps_lang_shop`
WHERE `id_lang` = 1
AND id_shop = 2 LIMIT 1 | 0.061 ms | 1 | | | /classes/ObjectModel.php:1729 /config/config.inc.php:216 (isAssociatedToShop) /index.php:39 (require)
|
30 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "ps_edition_basic" LIMIT 1 | 0.060 ms | 1 | | | /classes/module/Module.php:2636 /classes/module/Module.php:2108 (getModuleIdByName) /modules/ets_productmanager/ets_productmanager.php:66 (isEnabled) :undefined (__construct) /src/Core/Foundation/IoC/Container.php:123 (newInstance) /src/Core/Foundation/IoC/Container.php:153 (makeInstanceFromClassName) /src/Core/Foundation/IoC/Container.php:166 (doMake) /src/Adapter/ServiceLocator.php:70 (make) /classes/module/Module.php:1235 (get) /tools/profiling/Module.php:35 (coreLoadModule) /classes/module/Module.php:1214 (coreLoadModule) /classes/Hook.php:966 (getInstanceByName) /classes/Dispatcher.php:351 (exec) /index.php:40 (dispatch)
|
96 | SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `ps_category_lang` cl
WHERE `id_lang` = 6
AND cl.id_shop = 2
AND cl.`id_category` = 1209 LIMIT 1 | 0.060 ms | 1 | | | /classes/Category.php:1378 /classes/Product.php:758 (getLinkRewrite) /override/classes/Product.php:9 (__construct) /controllers/front/ProductController.php:146 (__construct) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
108 | SELECT SQL_NO_CACHE `id_customtab`
FROM ps_nrtcustomtab_product
WHERE id_product = 87927 LIMIT 1 | 0.060 ms | 0 | | | /modules/nrtcustomtab/src/CustomTabModel.php:91 /modules/nrtcustomtab/nrtcustomtab.php:742 (getProductCustomTab) /modules/nrtcustomtab/nrtcustomtab.php:713 (_prepareHook) /classes/Hook.php:1043 (hookDisplayProductExtraContent) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /src/Adapter/HookManager.php:81 (exec) /src/PrestaShopBundle/Service/Hook/HookFinder.php:70 (exec) /src/Core/Product/ProductExtraContentFinder.php:55 (find) /src/PrestaShopBundle/Service/Hook/HookFinder.php:102 (find) /controllers/front/ProductController.php:1203 (present) /controllers/front/ProductController.php:421 (getTemplateVarProduct) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
242 | SELECT SQL_NO_CACHE location
FROM `ps_stock_available`
WHERE (id_product = 87926) AND (id_product_attribute = 0) AND (id_shop_group = 1) AND (id_shop = 0) LIMIT 1 | 0.060 ms | 1 | | | /classes/stock/StockAvailable.php:806 /classes/Product.php:7863 (getLocation) /classes/Product.php:751 (loadStockData) /override/classes/Product.php:9 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:146 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
261 | SELECT SQL_NO_CACHE location
FROM `ps_stock_available`
WHERE (id_product = 87928) AND (id_product_attribute = 0) AND (id_shop_group = 1) AND (id_shop = 0) LIMIT 1 | 0.060 ms | 1 | | | /classes/stock/StockAvailable.php:806 /classes/Product.php:7863 (getLocation) /classes/Product.php:751 (loadStockData) /override/classes/Product.php:9 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:153 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
54 | SELECT SQL_NO_CACHE c.id_currency
FROM `ps_currency` c
WHERE (iso_code = 'PLN') LIMIT 1 | 0.060 ms | 1 | | | /classes/Currency.php:893 /src/Adapter/Currency/CurrencyDataProvider.php:92 (getIdByIsoCode) /src/Adapter/Currency/CurrencyDataProvider.php:114 (getCurrencyByIsoCode) /src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:102 (getCurrencyByIsoCodeAndLocale) /src/Core/Data/Layer/AbstractDataLayer.php:91 (doRead) /src/Core/Data/Layer/AbstractDataLayer.php:150 (read) /src/Core/Data/Layer/AbstractDataLayer.php:95 (propagateRead) /src/Core/Localization/Currency/CurrencyDataSource.php:67 (read) /src/Core/Localization/Currency/CurrencyDataSource.php:109 (getLocalizedCurrencyData) /src/Core/Localization/Currency/CurrencyDataSource.php:96 (formatCurrenciesData) /src/Core/Localization/Currency/Repository.php:87 (getAllInstalledCurrenciesData) /src/Core/Localization/Locale/Repository.php:207 (getAllInstalledCurrencies) /src/Core/Localization/Locale/Repository.php:150 (getPriceSpecifications) /classes/controller/Controller.php:209 (getLocale) /classes/controller/FrontController.php:284 (init) /controllers/front/ProductController.php:124 (init) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
35 | SELECT SQL_NO_CACHE `active`
FROM `ps_module`
WHERE `name` = "ps_mbo" LIMIT 1 | 0.059 ms | 1 | | | /modules/ps_mbo/ps_mbo.php:325 /modules/ps_mbo/src/Traits/Hooks/UseActionDispatcherBefore.php:65 (checkModuleStatus) /classes/Hook.php:1043 (hookActionDispatcherBefore) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /classes/Dispatcher.php:351 (exec) /index.php:40 (dispatch)
|
350 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 24 AND `id_shop` = 2 LIMIT 1 | 0.059 ms | 1 | | | /classes/module/Module.php:2109 /classes/Hook.php:1049 (isEnabled) /tools/profiling/Hook.php:64 (coreRenderWidget) /config/smartyfront.config.inc.php:91 (coreRenderWidget) /config/smartyfront.config.inc.php:84 ({closure}) /config/smartyfront.config.inc.php:95 (withWidget) /classes/Smarty/SmartyLazyRegister.php:81 (smartyWidget) /var/cache/prod/smarty/compile/akira/28/80/70/288070af2205f6129c696e56a7155b1d884283f7_2.file.facets.tpl.php:33 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6771905162fd45_94788943) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akira/5b/94/0c/5b940cf84db06a9637a353c3b516256f432e36ce_2.module.nrtthemecustomizerviewstemplateshookorther.tpl.php:75 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190515c1cf0_31284358) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/module/Module.php:2273 (fetch) /modules/nrtthemecustomizer/nrtthemecustomizer.php:3775 (fetch) /classes/Hook.php:1043 (hookDisplayBodyBottom) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:443 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
60 | SELECT SQL_NO_CACHE `id_lang` FROM `ps_lang`
WHERE `locale` = 'hu-hu'
OR `language_code` = 'hu-hu' LIMIT 1 | 0.059 ms | 16 | | | /classes/Language.php:883 /src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:115 (getIdByLocale) /src/Core/Data/Layer/AbstractDataLayer.php:91 (doRead) /src/Core/Data/Layer/AbstractDataLayer.php:150 (read) /src/Core/Data/Layer/AbstractDataLayer.php:95 (propagateRead) /src/Core/Localization/Currency/CurrencyDataSource.php:67 (read) /src/Core/Localization/Currency/CurrencyDataSource.php:109 (getLocalizedCurrencyData) /src/Core/Localization/Currency/CurrencyDataSource.php:96 (formatCurrenciesData) /src/Core/Localization/Currency/Repository.php:87 (getAllInstalledCurrenciesData) /src/Core/Localization/Locale/Repository.php:207 (getAllInstalledCurrencies) /src/Core/Localization/Locale/Repository.php:150 (getPriceSpecifications) /classes/controller/Controller.php:209 (getLocale) /classes/controller/FrontController.php:284 (init) /controllers/front/ProductController.php:124 (init) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
260 | SELECT SQL_NO_CACHE depends_on_stock
FROM `ps_stock_available`
WHERE (id_product = 87928) AND (id_product_attribute = 0) AND (id_shop_group = 1) AND (id_shop = 0) LIMIT 1 | 0.059 ms | 1 | | | /classes/stock/StockAvailable.php:753 /classes/Product.php:7862 (dependsOnStock) /classes/Product.php:751 (loadStockData) /override/classes/Product.php:9 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:153 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
101 | SELECT SQL_NO_CACHE id_shop
FROM `ps_category_shop`
WHERE `id_category` = 1209
AND id_shop = 2 LIMIT 1 | 0.058 ms | 1 | | | /classes/ObjectModel.php:1729 /controllers/front/ProductController.php:884 (isAssociatedToShop) /controllers/front/ProductController.php:368 (assignCategory) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
52 | SELECT SQL_NO_CACHE `id_lang` FROM `ps_lang`
WHERE `locale` = 'hu-hu'
OR `language_code` = 'hu-hu' LIMIT 1 | 0.058 ms | 16 | | | /classes/Language.php:883 /src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:115 (getIdByLocale) /src/Core/Data/Layer/AbstractDataLayer.php:91 (doRead) /src/Core/Data/Layer/AbstractDataLayer.php:150 (read) /src/Core/Data/Layer/AbstractDataLayer.php:95 (propagateRead) /src/Core/Localization/Currency/CurrencyDataSource.php:67 (read) /src/Core/Localization/Currency/CurrencyDataSource.php:109 (getLocalizedCurrencyData) /src/Core/Localization/Currency/CurrencyDataSource.php:96 (formatCurrenciesData) /src/Core/Localization/Currency/Repository.php:87 (getAllInstalledCurrenciesData) /src/Core/Localization/Locale/Repository.php:207 (getAllInstalledCurrencies) /src/Core/Localization/Locale/Repository.php:150 (getPriceSpecifications) /classes/controller/Controller.php:209 (getLocale) /classes/controller/FrontController.php:284 (init) /controllers/front/ProductController.php:124 (init) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
80 | SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE `from` BETWEEN '2024-12-29 00:00:00' AND '2024-12-29 23:59:59' LIMIT 1 | 0.058 ms | 1 | | | /classes/SpecificPrice.php:377 /override/classes/SpecificPrice.php:51 (computeExtraConditions) /classes/Product.php:3827 (getSpecificPrice) /override/classes/Product.php:117 (priceCalculation) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:748 (getPriceStatic) /override/classes/Product.php:9 (__construct) /controllers/front/ProductController.php:146 (__construct) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
142 | SELECT SQL_NO_CACHE format
FROM `ps_address_format`
WHERE `id_country` = 14 LIMIT 1 | 0.058 ms | 1 | | | /classes/AddressFormat.php:656 /classes/AddressFormat.php:630 (getFormatDB) /classes/AddressFormat.php:615 (getFormat) /classes/AddressFormat.php:562 (getAddressCountryFormat) /classes/AddressFormat.php:438 (getOrderedAddressFields) /classes/controller/FrontController.php:1761 (generateAddress) /classes/controller/FrontController.php:551 (getTemplateVarShop) /classes/controller/FrontController.php:614 (assignGeneralPurposeVariables) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
94 | SELECT SQL_NO_CACHE depends_on_stock
FROM `ps_stock_available`
WHERE (id_product = 87927) AND (id_product_attribute = 0) AND (id_shop_group = 1) AND (id_shop = 0) LIMIT 1 | 0.057 ms | 1 | | | /classes/stock/StockAvailable.php:753 /classes/Product.php:7862 (dependsOnStock) /classes/Product.php:751 (loadStockData) /override/classes/Product.php:9 (__construct) /controllers/front/ProductController.php:146 (__construct) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
36 | SELECT SQL_NO_CACHE m.`id_module` as `active`, ms.`id_module` as `shop_active`
FROM `ps_module` m
LEFT JOIN `ps_module_shop` ms ON m.`id_module` = ms.`id_module`
WHERE `name` = "ps_mbo" LIMIT 1 | 0.057 ms | 2 | | | /modules/ps_mbo/ps_mbo.php:335 /modules/ps_mbo/src/Traits/Hooks/UseActionDispatcherBefore.php:65 (checkModuleStatus) /classes/Hook.php:1043 (hookActionDispatcherBefore) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /classes/Dispatcher.php:351 (exec) /index.php:40 (dispatch)
|
50 | SELECT SQL_NO_CACHE c.id_currency
FROM `ps_currency` c
WHERE (iso_code = 'EUR') LIMIT 1 | 0.057 ms | 1 | | | /classes/Currency.php:893 /src/Adapter/Currency/CurrencyDataProvider.php:92 (getIdByIsoCode) /src/Adapter/Currency/CurrencyDataProvider.php:114 (getCurrencyByIsoCode) /src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:102 (getCurrencyByIsoCodeAndLocale) /src/Core/Data/Layer/AbstractDataLayer.php:91 (doRead) /src/Core/Data/Layer/AbstractDataLayer.php:150 (read) /src/Core/Data/Layer/AbstractDataLayer.php:95 (propagateRead) /src/Core/Localization/Currency/CurrencyDataSource.php:67 (read) /src/Core/Localization/Currency/CurrencyDataSource.php:109 (getLocalizedCurrencyData) /src/Core/Localization/Currency/CurrencyDataSource.php:96 (formatCurrenciesData) /src/Core/Localization/Currency/Repository.php:87 (getAllInstalledCurrenciesData) /src/Core/Localization/Locale/Repository.php:207 (getAllInstalledCurrencies) /src/Core/Localization/Locale/Repository.php:150 (getPriceSpecifications) /classes/controller/Controller.php:209 (getLocale) /classes/controller/FrontController.php:284 (init) /controllers/front/ProductController.php:124 (init) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
56 | SELECT SQL_NO_CACHE `id_lang` FROM `ps_lang`
WHERE `locale` = 'hu-hu'
OR `language_code` = 'hu-hu' LIMIT 1 | 0.057 ms | 16 | | | /classes/Language.php:883 /src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:115 (getIdByLocale) /src/Core/Data/Layer/AbstractDataLayer.php:91 (doRead) /src/Core/Data/Layer/AbstractDataLayer.php:150 (read) /src/Core/Data/Layer/AbstractDataLayer.php:95 (propagateRead) /src/Core/Localization/Currency/CurrencyDataSource.php:67 (read) /src/Core/Localization/Currency/CurrencyDataSource.php:109 (getLocalizedCurrencyData) /src/Core/Localization/Currency/CurrencyDataSource.php:96 (formatCurrenciesData) /src/Core/Localization/Currency/Repository.php:87 (getAllInstalledCurrenciesData) /src/Core/Localization/Locale/Repository.php:207 (getAllInstalledCurrencies) /src/Core/Localization/Locale/Repository.php:150 (getPriceSpecifications) /classes/controller/Controller.php:209 (getLocale) /classes/controller/FrontController.php:284 (init) /controllers/front/ProductController.php:124 (init) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
58 | SELECT SQL_NO_CACHE c.id_currency
FROM `ps_currency` c
WHERE (iso_code = 'RON') LIMIT 1 | 0.057 ms | 1 | | | /classes/Currency.php:893 /src/Adapter/Currency/CurrencyDataProvider.php:92 (getIdByIsoCode) /src/Adapter/Currency/CurrencyDataProvider.php:114 (getCurrencyByIsoCode) /src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:102 (getCurrencyByIsoCodeAndLocale) /src/Core/Data/Layer/AbstractDataLayer.php:91 (doRead) /src/Core/Data/Layer/AbstractDataLayer.php:150 (read) /src/Core/Data/Layer/AbstractDataLayer.php:95 (propagateRead) /src/Core/Localization/Currency/CurrencyDataSource.php:67 (read) /src/Core/Localization/Currency/CurrencyDataSource.php:109 (getLocalizedCurrencyData) /src/Core/Localization/Currency/CurrencyDataSource.php:96 (formatCurrenciesData) /src/Core/Localization/Currency/Repository.php:87 (getAllInstalledCurrenciesData) /src/Core/Localization/Locale/Repository.php:207 (getAllInstalledCurrencies) /src/Core/Localization/Locale/Repository.php:150 (getPriceSpecifications) /classes/controller/Controller.php:209 (getLocale) /classes/controller/FrontController.php:284 (init) /controllers/front/ProductController.php:124 (init) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
137 | SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `ps_category_lang` cl
WHERE `id_lang` = 2
AND cl.id_shop = 2
AND cl.`id_category` = 1209 LIMIT 1 | 0.057 ms | 1 | | | /classes/Category.php:1378 /classes/Product.php:758 (getLinkRewrite) /override/classes/Product.php:9 (__construct) /classes/Link.php:113 (__construct) /classes/Link.php:185 (getProductObject) /classes/Link.php:1215 (getProductLink) /classes/controller/FrontController.php:2168 (getLanguageLink) /classes/controller/FrontController.php:1609 (getAlternativeLangsUrl) /classes/controller/FrontController.php:1742 (getTemplateVarUrls) /classes/controller/FrontController.php:551 (getTemplateVarShop) /classes/controller/FrontController.php:614 (assignGeneralPurposeVariables) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
149 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 70 AND `id_shop` = 2 LIMIT 1 | 0.057 ms | 1 | | | /classes/module/Module.php:2109 /modules/nrtthemecustomizer/nrtthemecustomizer.php:3215 (isEnabled) /modules/nrtthemecustomizer/nrtthemecustomizer.php:3038 (renderOptions) /modules/nrtthemecustomizer/nrtthemecustomizer.php:3281 (_prepHook) /classes/Hook.php:1043 (hookDisplayHeader) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /classes/controller/FrontController.php:622 (exec) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
254 | SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 87928 AND `id_group` = 8 LIMIT 1 | 0.057 ms | 0 | | | /classes/GroupReduction.php:156 /classes/Product.php:3990 (getValueForProduct) /override/classes/Product.php:117 (priceCalculation) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:748 (getPriceStatic) /override/classes/Product.php:9 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:153 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
303 | SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `ps_specific_price_priority`
WHERE `id_product` = 82457
ORDER BY `id_specific_price_priority` DESC LIMIT 1 | 0.056 ms | 0 | | | /classes/SpecificPrice.php:259 /classes/SpecificPrice.php:239 (getPriority) /override/classes/SpecificPrice.php:72 (_getScoreQuery) /classes/Product.php:3827 (getSpecificPrice) /override/classes/Product.php:117 (priceCalculation) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:5688 (getPriceStatic) /override/classes/Product.php:184 (getProductProperties) /classes/Product.php:5984 (getProductProperties) /classes/Category.php:1074 (getProductsProperties) /src/Adapter/Category/CategoryProductSearchProvider.php:88 (getProducts) /src/Adapter/Category/CategoryProductSearchProvider.php:105 (getProductsOrCount) /modules/axoncreator/axoncreator.php:1442 (runQuery) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
53 | SELECT SQL_NO_CACHE `id_lang` FROM `ps_lang`
WHERE `locale` = 'hu-hu'
OR `language_code` = 'hu-hu' LIMIT 1 | 0.055 ms | 16 | | | /classes/Language.php:883 /src/Adapter/Currency/CurrencyDataProvider.php:112 (getIdByLocale) /src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:102 (getCurrencyByIsoCodeAndLocale) /src/Core/Data/Layer/AbstractDataLayer.php:91 (doRead) /src/Core/Data/Layer/AbstractDataLayer.php:150 (read) /src/Core/Data/Layer/AbstractDataLayer.php:95 (propagateRead) /src/Core/Localization/Currency/CurrencyDataSource.php:67 (read) /src/Core/Localization/Currency/CurrencyDataSource.php:109 (getLocalizedCurrencyData) /src/Core/Localization/Currency/CurrencyDataSource.php:96 (formatCurrenciesData) /src/Core/Localization/Currency/Repository.php:87 (getAllInstalledCurrenciesData) /src/Core/Localization/Locale/Repository.php:207 (getAllInstalledCurrencies) /src/Core/Localization/Locale/Repository.php:150 (getPriceSpecifications) /classes/controller/Controller.php:209 (getLocale) /classes/controller/FrontController.php:284 (init) /controllers/front/ProductController.php:124 (init) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
139 | SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `ps_category_lang` cl
WHERE `id_lang` = 3
AND cl.id_shop = 2
AND cl.`id_category` = 1209 LIMIT 1 | 0.055 ms | 1 | | | /classes/Category.php:1378 /classes/Product.php:758 (getLinkRewrite) /override/classes/Product.php:9 (__construct) /classes/Link.php:113 (__construct) /classes/Link.php:185 (getProductObject) /classes/Link.php:1215 (getProductLink) /classes/controller/FrontController.php:2168 (getLanguageLink) /classes/controller/FrontController.php:1609 (getAlternativeLangsUrl) /classes/controller/FrontController.php:1742 (getTemplateVarUrls) /classes/controller/FrontController.php:551 (getTemplateVarShop) /classes/controller/FrontController.php:614 (assignGeneralPurposeVariables) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
176 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 78 AND `id_shop` = 2 LIMIT 1 | 0.055 ms | 1 | | | /classes/module/Module.php:2109 /classes/Hook.php:1049 (isEnabled) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:38 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
235 | SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 87926 AND `id_group` = 8 LIMIT 1 | 0.055 ms | 0 | | | /classes/GroupReduction.php:156 /classes/Product.php:3990 (getValueForProduct) /override/classes/Product.php:117 (priceCalculation) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:748 (getPriceStatic) /override/classes/Product.php:9 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:146 (__construct) /modules/nrtproductslinknav/nrtproductslinknav.php:130 (getLinksInCategory) /modules/nrtproductslinknav/nrtproductslinknav.php:111 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ba/84/60/ba846043f919a8d554a19be8fe270b09b318dea3_2.file.product-1.tpl.php:55 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190df275970_29556882) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:212 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
283 | SELECT SQL_NO_CACHE out_of_stock
FROM `ps_stock_available`
WHERE (id_product = 87927) AND (id_product_attribute = 0) AND (id_shop_group = 1) AND (id_shop = 0) LIMIT 1 | 0.055 ms | 1 | | | /classes/stock/StockAvailable.php:778 /classes/Product.php:7861 (outOfStock) /classes/Product.php:751 (loadStockData) /override/classes/Product.php:9 (__construct) /modules/axoncreator/axoncreator.php:1426 (__construct) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
57 | SELECT SQL_NO_CACHE `id_lang` FROM `ps_lang`
WHERE `locale` = 'hu-hu'
OR `language_code` = 'hu-hu' LIMIT 1 | 0.055 ms | 16 | | | /classes/Language.php:883 /src/Adapter/Currency/CurrencyDataProvider.php:112 (getIdByLocale) /src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:102 (getCurrencyByIsoCodeAndLocale) /src/Core/Data/Layer/AbstractDataLayer.php:91 (doRead) /src/Core/Data/Layer/AbstractDataLayer.php:150 (read) /src/Core/Data/Layer/AbstractDataLayer.php:95 (propagateRead) /src/Core/Localization/Currency/CurrencyDataSource.php:67 (read) /src/Core/Localization/Currency/CurrencyDataSource.php:109 (getLocalizedCurrencyData) /src/Core/Localization/Currency/CurrencyDataSource.php:96 (formatCurrenciesData) /src/Core/Localization/Currency/Repository.php:87 (getAllInstalledCurrenciesData) /src/Core/Localization/Locale/Repository.php:207 (getAllInstalledCurrencies) /src/Core/Localization/Locale/Repository.php:150 (getPriceSpecifications) /classes/controller/Controller.php:209 (getLocale) /classes/controller/FrontController.php:284 (init) /controllers/front/ProductController.php:124 (init) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
348 | SELECT SQL_NO_CACHE *
FROM `ps_currency_lang`
WHERE `id_currency` = 2 | 0.055 ms | 16 | | | /src/Adapter/EntityMapper.php:79 /classes/ObjectModel.php:283 (load) /tools/profiling/ObjectModel.php:32 (__construct) /classes/Currency.php:246 (__construct) /classes/Currency.php:1089 (__construct) /classes/Currency.php:766 (getCurrencyInstance) /classes/Currency.php:669 (addCldrDatasToCurrency) /modules/ps_currencyselector/ps_currencyselector.php:112 (getCurrencies) /var/cache/prod/smarty/compile/akira/5d/85/99/5d85998f2045cda3df9427ce50fe4fead6d6cd49_2.file.account.tpl.php:248 (getWidgetVariables) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190515d8c58_71002267) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akira/5b/94/0c/5b940cf84db06a9637a353c3b516256f432e36ce_2.module.nrtthemecustomizerviewstemplateshookorther.tpl.php:73 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190515c1cf0_31284358) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/module/Module.php:2273 (fetch) /modules/nrtthemecustomizer/nrtthemecustomizer.php:3775 (fetch) /classes/Hook.php:1043 (hookDisplayBodyBottom) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:443 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
64 | SELECT SQL_NO_CACHE id_shop
FROM `ps_currency_shop`
WHERE `id_currency` = 1
AND id_shop = 2 LIMIT 1 | 0.054 ms | 1 | | | /classes/ObjectModel.php:1729 /classes/Tools.php:699 (isAssociatedToShop) /classes/controller/FrontController.php:368 (setCurrency) /controllers/front/ProductController.php:124 (init) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
67 | SELECT SQL_NO_CACHE id_shop
FROM `ps_group_shop`
WHERE `id_group` = 8
AND id_shop = 2 LIMIT 1 | 0.054 ms | 1 | | | /classes/ObjectModel.php:1729 /classes/Group.php:400 (isAssociatedToShop) /classes/Cart.php:249 (getCurrent) /classes/Cart.php:222 (setTaxCalculationMethod) /classes/controller/FrontController.php:467 (__construct) /controllers/front/ProductController.php:124 (init) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
70 | SELECT SQL_NO_CACHE `name` FROM `ps_supplier` WHERE `id_supplier` = 0 LIMIT 1 | 0.054 ms | 0 | | | /classes/Supplier.php:243 /classes/Product.php:735 (getNameById) /override/classes/Product.php:9 (__construct) /controllers/front/ProductController.php:146 (__construct) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
95 | SELECT SQL_NO_CACHE location
FROM `ps_stock_available`
WHERE (id_product = 87927) AND (id_product_attribute = 0) AND (id_shop_group = 1) AND (id_shop = 0) LIMIT 1 | 0.054 ms | 1 | | | /classes/stock/StockAvailable.php:806 /classes/Product.php:7863 (getLocation) /classes/Product.php:751 (loadStockData) /override/classes/Product.php:9 (__construct) /controllers/front/ProductController.php:146 (__construct) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
290 | SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 2 AND id_lang = 6 AND id_category = 554 LIMIT 1 | 0.054 ms | 1 | | | /classes/Product.php:5655 /override/classes/Product.php:184 (getProductProperties) /classes/Product.php:5984 (getProductProperties) /classes/Category.php:1074 (getProductsProperties) /src/Adapter/Category/CategoryProductSearchProvider.php:88 (getProducts) /src/Adapter/Category/CategoryProductSearchProvider.php:105 (getProductsOrCount) /modules/axoncreator/axoncreator.php:1442 (runQuery) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
31 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 213 AND `id_shop` = 2 LIMIT 1 | 0.053 ms | 1 | | | /classes/module/Module.php:2109 /modules/ets_productmanager/ets_productmanager.php:66 (isEnabled) :undefined (__construct) /src/Core/Foundation/IoC/Container.php:123 (newInstance) /src/Core/Foundation/IoC/Container.php:153 (makeInstanceFromClassName) /src/Core/Foundation/IoC/Container.php:166 (doMake) /src/Adapter/ServiceLocator.php:70 (make) /classes/module/Module.php:1235 (get) /tools/profiling/Module.php:35 (coreLoadModule) /classes/module/Module.php:1214 (coreLoadModule) /classes/Hook.php:966 (getInstanceByName) /classes/Dispatcher.php:351 (exec) /index.php:40 (dispatch)
|
38 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "seigitagmanager" LIMIT 1 | 0.053 ms | 1 | | | /classes/module/Module.php:2636 /classes/module/Module.php:2084 (getModuleIdByName) /modules/seigitagmanager/util/module/Upgrade.php:60 (isInstalled) /modules/seigitagmanager/seigitagmanager.inc.php:158 (runUpgrade) :undefined (__construct) /src/Core/Foundation/IoC/Container.php:123 (newInstance) /src/Core/Foundation/IoC/Container.php:153 (makeInstanceFromClassName) /src/Core/Foundation/IoC/Container.php:166 (doMake) /src/Adapter/ServiceLocator.php:70 (make) /classes/module/Module.php:1235 (get) /tools/profiling/Module.php:35 (coreLoadModule) /classes/module/Module.php:1214 (coreLoadModule) /classes/Hook.php:966 (getInstanceByName) /classes/Dispatcher.php:507 (exec) /index.php:40 (dispatch)
|
93 | SELECT SQL_NO_CACHE out_of_stock
FROM `ps_stock_available`
WHERE (id_product = 87927) AND (id_product_attribute = 0) AND (id_shop_group = 1) AND (id_shop = 0) LIMIT 1 | 0.053 ms | 1 | | | /classes/stock/StockAvailable.php:778 /classes/Product.php:7861 (outOfStock) /classes/Product.php:751 (loadStockData) /override/classes/Product.php:9 (__construct) /controllers/front/ProductController.php:146 (__construct) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
298 | SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `ps_category_lang` cl
WHERE `id_lang` = 0
AND cl.id_shop = 2
AND cl.`id_category` = 554 LIMIT 1 | 0.053 ms | 0 | | | /classes/Category.php:1378 /classes/Product.php:758 (getLinkRewrite) /override/classes/Product.php:9 (__construct) /override/classes/Product.php:147 (__construct) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:5688 (getPriceStatic) /override/classes/Product.php:184 (getProductProperties) /classes/Product.php:5984 (getProductProperties) /classes/Category.php:1074 (getProductsProperties) /src/Adapter/Category/CategoryProductSearchProvider.php:88 (getProducts) /src/Adapter/Category/CategoryProductSearchProvider.php:105 (getProductsOrCount) /modules/axoncreator/axoncreator.php:1442 (runQuery) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
143 | SELECT SQL_NO_CACHE `need_identification_number`
FROM `ps_country`
WHERE `id_country` = 14 LIMIT 1 | 0.052 ms | 1 | | | /classes/Country.php:405 /classes/AddressFormat.php:634 (isNeedDniByCountryId) /classes/AddressFormat.php:615 (getFormat) /classes/AddressFormat.php:562 (getAddressCountryFormat) /classes/AddressFormat.php:438 (getOrderedAddressFields) /classes/controller/FrontController.php:1761 (generateAddress) /classes/controller/FrontController.php:551 (getTemplateVarShop) /classes/controller/FrontController.php:614 (assignGeneralPurposeVariables) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
148 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "axoncreator" LIMIT 1 | 0.052 ms | 1 | | | /classes/module/Module.php:2636 /classes/module/Module.php:2108 (getModuleIdByName) /modules/nrtthemecustomizer/nrtthemecustomizer.php:3215 (isEnabled) /modules/nrtthemecustomizer/nrtthemecustomizer.php:3038 (renderOptions) /modules/nrtthemecustomizer/nrtthemecustomizer.php:3281 (_prepHook) /classes/Hook.php:1043 (hookDisplayHeader) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /classes/controller/FrontController.php:622 (exec) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
169 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 103 AND `id_shop` = 2 LIMIT 1 | 0.052 ms | 1 | | | /classes/module/Module.php:2109 /modules/pshowreferrers/vendor/prestashow/presta-core/Model/AbstractModule.php:148 (isEnabled) /modules/pshowreferrers/vendor/prestashow/presta-core/Model/AbstractModule.php:91 (runMigrations) /modules/pshowreferrers/vendor/prestashow/presta-core/Model/AbstractModule.php:91 (unknown) /modules/pshowb2border/src/Module.php:28 (__construct) :undefined (__construct) /src/Core/Foundation/IoC/Container.php:123 (newInstance) /src/Core/Foundation/IoC/Container.php:153 (makeInstanceFromClassName) /src/Core/Foundation/IoC/Container.php:166 (doMake) /src/Adapter/ServiceLocator.php:70 (make) /classes/module/Module.php:1235 (get) /tools/profiling/Module.php:35 (coreLoadModule) /classes/module/Module.php:1214 (coreLoadModule) /classes/Hook.php:966 (getInstanceByName) /classes/controller/FrontController.php:622 (exec) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
302 | SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 2 AND id_lang = 6 AND id_category = 1209 LIMIT 1 | 0.052 ms | 1 | | | /classes/Product.php:5655 /override/classes/Product.php:184 (getProductProperties) /classes/Product.php:5984 (getProductProperties) /classes/Category.php:1074 (getProductsProperties) /src/Adapter/Category/CategoryProductSearchProvider.php:88 (getProducts) /src/Adapter/Category/CategoryProductSearchProvider.php:105 (getProductsOrCount) /modules/axoncreator/axoncreator.php:1442 (runQuery) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
4 | SELECT SQL_NO_CACHE COUNT(*) FROM ps_shop LIMIT 1 | 0.051 ms | 2 | | | /classes/shop/Shop.php:1184 /classes/Configuration.php:236 (isFeatureActive) /classes/Configuration.php:302 (get) /classes/shop/Shop.php:398 (getMultiShopValues) /config/config.inc.php:117 (initialize) /index.php:39 (require)
|
13 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 230 AND `id_shop` = 2 LIMIT 1 | 0.051 ms | 0 | | | /classes/module/Module.php:2109 /config/smartyfront.config.inc.php:58 (isEnabled) /config/smarty.config.inc.php:59 (require_once) /config/config.inc.php:245 (require_once) /index.php:39 (require)
|
82 | SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `ps_specific_price_priority`
WHERE `id_product` = 87927
ORDER BY `id_specific_price_priority` DESC LIMIT 1 | 0.051 ms | 0 | | | /classes/SpecificPrice.php:259 /classes/SpecificPrice.php:239 (getPriority) /override/classes/SpecificPrice.php:72 (_getScoreQuery) /classes/Product.php:3827 (getSpecificPrice) /override/classes/Product.php:117 (priceCalculation) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:748 (getPriceStatic) /override/classes/Product.php:9 (__construct) /controllers/front/ProductController.php:146 (__construct) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
188 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 68 AND `id_shop` = 2 LIMIT 1 | 0.049 ms | 1 | | | /classes/module/Module.php:2109 /modules/axoncreator/includes/fonts.php:149 (isEnabled) /modules/axoncreator/includes/fonts.php:129 (get_native_fonts) /modules/axoncreator/includes/controls/font.php:60 (get_fonts) /modules/axoncreator/includes/controls/base.php:86 (get_default_settings) /modules/axoncreator/includes/managers/controls.php:449 (__construct) /modules/axoncreator/includes/managers/controls.php:523 (register_controls) /modules/axoncreator/includes/managers/controls.php:542 (get_controls) /modules/axoncreator/includes/managers/controls.php:699 (get_control) /modules/axoncreator/includes/base/controls-stack.php:435 (add_control_to_stack) /modules/axoncreator/includes/base/controls-stack.php:1387 (add_control) /modules/axoncreator/includes/elements/section.php:243 (start_controls_section) /modules/axoncreator/includes/base/controls-stack.php:1923 (_register_controls) /modules/axoncreator/includes/base/controls-stack.php:510 (init_controls) /modules/axoncreator/includes/base/controls-stack.php:303 (get_stack) /modules/axoncreator/includes/base/controls-stack.php:1958 (get_controls) /modules/axoncreator/includes/base/controls-stack.php:1045 (sanitize_settings) /modules/axoncreator/includes/base/controls-stack.php:1798 (get_data) /modules/axoncreator/core/base/base-object.php:145 (get_init_settings) /modules/axoncreator/core/base/base-object.php:53 (ensure_settings) /modules/axoncreator/core/files/css/post.php:302 (get_settings) /modules/axoncreator/core/files/css/post.php:190 (render_styles) /modules/axoncreator/core/files/css/base.php:634 (render_css) /modules/axoncreator/core/files/base.php:152 (parse_content) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:82 (get_content) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/core/dynamic-tags/manager.php:434 (enqueue) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
39 | SELECT SQL_NO_CACHE id_required_field, object_name, field_name
FROM ps_required_field | 0.048 ms | 1 | | | /classes/ObjectModel.php:1592 /classes/ObjectModel.php:1624 (getFieldsRequiredDatabase) /classes/ObjectModel.php:1191 (cacheFieldsRequiredDatabase) /classes/ObjectModel.php:1101 (validateField) /classes/ObjectModel.php:319 (validateFields) /classes/ObjectModel.php:622 (getFields) /classes/ObjectModel.php:576 (add) /classes/Guest.php:251 (save) /modules/seigitagmanager/seigitagmanager.inc.php:1341 (setNewGuest) /modules/seigitagmanager/seigitagmanager.inc.php:927 (getCurrentPSGuestID) /classes/Hook.php:1043 (hookActionDispatcher) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /classes/Dispatcher.php:507 (exec) /index.php:40 (dispatch)
|
85 | SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 87927 AND id_shop=2 LIMIT 1 | 0.048 ms | 1 | | | /classes/Product.php:6870 /classes/Product.php:3925 (getIdTaxRulesGroupByIdProduct) /override/classes/Product.php:117 (priceCalculation) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:748 (getPriceStatic) /override/classes/Product.php:9 (__construct) /controllers/front/ProductController.php:146 (__construct) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
49 | SELECT SQL_NO_CACHE `id_lang` FROM `ps_lang`
WHERE `locale` = 'hu-hu'
OR `language_code` = 'hu-hu' LIMIT 1 | 0.047 ms | 16 | | | /classes/Language.php:883 /src/Adapter/Currency/CurrencyDataProvider.php:112 (getIdByLocale) /src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:102 (getCurrencyByIsoCodeAndLocale) /src/Core/Data/Layer/AbstractDataLayer.php:91 (doRead) /src/Core/Data/Layer/AbstractDataLayer.php:150 (read) /src/Core/Data/Layer/AbstractDataLayer.php:95 (propagateRead) /src/Core/Localization/Currency/CurrencyDataSource.php:67 (read) /src/Core/Localization/Currency/CurrencyDataSource.php:109 (getLocalizedCurrencyData) /src/Core/Localization/Currency/CurrencyDataSource.php:96 (formatCurrenciesData) /src/Core/Localization/Currency/Repository.php:87 (getAllInstalledCurrenciesData) /src/Core/Localization/Locale/Repository.php:207 (getAllInstalledCurrencies) /src/Core/Localization/Locale/Repository.php:150 (getPriceSpecifications) /classes/controller/Controller.php:209 (getLocale) /classes/controller/FrontController.php:284 (init) /controllers/front/ProductController.php:124 (init) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
81 | SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE `to` BETWEEN '2024-12-29 00:00:00' AND '2024-12-29 23:59:59' LIMIT 1 | 0.047 ms | 1 | | | /classes/SpecificPrice.php:381 /override/classes/SpecificPrice.php:51 (computeExtraConditions) /classes/Product.php:3827 (getSpecificPrice) /override/classes/Product.php:117 (priceCalculation) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:748 (getPriceStatic) /override/classes/Product.php:9 (__construct) /controllers/front/ProductController.php:146 (__construct) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
119 | SELECT SQL_NO_CACHE * FROM `ps_image_type` | 0.047 ms | 9 | | | /classes/ImageType.php:161 /classes/ImageType.php:202 (getByNameNType) /src/Adapter/Image/ImageRetriever.php:224 (getFormattedName) /src/Adapter/Image/ImageRetriever.php:111 (getImage) :undefined (PrestaShop\PrestaShop\Adapter\Image\{closure}) /src/Adapter/Image/ImageRetriever.php:104 (array_map) /src/Adapter/Presenter/Product/ProductLazyArray.php:688 (getAllProductImages) /src/Adapter/Presenter/Product/ProductLazyArray.php:127 (fillImages) /src/Adapter/Presenter/Product/ProductPresenter.php:110 (__construct) /controllers/front/ProductController.php:1242 (present) /controllers/front/ProductController.php:421 (getTemplateVarProduct) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
286 | SELECT SQL_NO_CACHE ctg.`id_group`
FROM ps_category_group ctg
WHERE ctg.`id_category` = 1209 AND ctg.`id_group` = 8 LIMIT 1 | 0.047 ms | 1 | | | /classes/Category.php:1754 /classes/Category.php:973 (checkAccess) /src/Adapter/Category/CategoryProductSearchProvider.php:88 (getProducts) /src/Adapter/Category/CategoryProductSearchProvider.php:105 (getProductsOrCount) /modules/axoncreator/axoncreator.php:1442 (runQuery) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
294 | SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 89024 AND id_shop=2 LIMIT 1 | 0.047 ms | 1 | | | /classes/Product.php:6870 /classes/Product.php:3925 (getIdTaxRulesGroupByIdProduct) /override/classes/Product.php:117 (priceCalculation) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:5688 (getPriceStatic) /override/classes/Product.php:184 (getProductProperties) /classes/Product.php:5984 (getProductProperties) /classes/Category.php:1074 (getProductsProperties) /src/Adapter/Category/CategoryProductSearchProvider.php:88 (getProducts) /src/Adapter/Category/CategoryProductSearchProvider.php:105 (getProductsOrCount) /modules/axoncreator/axoncreator.php:1442 (runQuery) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
295 | SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 89024 AND `id_group` = 8 LIMIT 1 | 0.047 ms | 0 | | | /classes/GroupReduction.php:156 /classes/Product.php:3990 (getValueForProduct) /override/classes/Product.php:117 (priceCalculation) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:5688 (getPriceStatic) /override/classes/Product.php:184 (getProductProperties) /classes/Product.php:5984 (getProductProperties) /classes/Category.php:1074 (getProductsProperties) /src/Adapter/Category/CategoryProductSearchProvider.php:88 (getProducts) /src/Adapter/Category/CategoryProductSearchProvider.php:105 (getProductsOrCount) /modules/axoncreator/axoncreator.php:1442 (runQuery) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
86 | SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 87927 AND `id_group` = 8 LIMIT 1 | 0.046 ms | 0 | | | /classes/GroupReduction.php:156 /classes/Product.php:3990 (getValueForProduct) /override/classes/Product.php:117 (priceCalculation) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:748 (getPriceStatic) /override/classes/Product.php:9 (__construct) /controllers/front/ProductController.php:146 (__construct) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
195 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 79 AND `id_shop` = 2 LIMIT 1 | 0.046 ms | 1 | | | /classes/module/Module.php:2109 /modules/axoncreator/includes/managers/widgets.php:116 (isEnabled) /modules/axoncreator/includes/managers/widgets.php:303 (init_widgets) /modules/axoncreator/includes/elements/column.php:1026 (get_widget_types) /modules/axoncreator/includes/base/element-base.php:911 (_get_default_child_type) /modules/axoncreator/includes/base/element-base.php:356 (get_child_type) /modules/axoncreator/includes/base/element-base.php:956 (add_child) /modules/axoncreator/includes/base/element-base.php:316 (init_children) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:124 (get_children) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/files/css/post.php:190 (render_styles) /modules/axoncreator/core/files/css/base.php:634 (render_css) /modules/axoncreator/core/files/base.php:152 (parse_content) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:82 (get_content) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/core/dynamic-tags/manager.php:434 (enqueue) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
153 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 92 AND `id_shop` = 2 LIMIT 1 | 0.045 ms | 1 | | | /classes/module/Module.php:2109 /modules/nrtmegamenu/nrtmegamenu.php:86 (isEnabled) :undefined (__construct) /src/Core/Foundation/IoC/Container.php:123 (newInstance) /src/Core/Foundation/IoC/Container.php:153 (makeInstanceFromClassName) /src/Core/Foundation/IoC/Container.php:166 (doMake) /src/Adapter/ServiceLocator.php:70 (make) /classes/module/Module.php:1235 (get) /tools/profiling/Module.php:35 (coreLoadModule) /classes/module/Module.php:1214 (coreLoadModule) /classes/Hook.php:966 (getInstanceByName) /classes/controller/FrontController.php:622 (exec) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
199 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 72 AND `id_shop` = 2 LIMIT 1 | 0.043 ms | 0 | | | /classes/module/Module.php:2109 /modules/axoncreator/includes/managers/widgets.php:124 (isEnabled) /modules/axoncreator/includes/managers/widgets.php:303 (init_widgets) /modules/axoncreator/includes/elements/column.php:1026 (get_widget_types) /modules/axoncreator/includes/base/element-base.php:911 (_get_default_child_type) /modules/axoncreator/includes/base/element-base.php:356 (get_child_type) /modules/axoncreator/includes/base/element-base.php:956 (add_child) /modules/axoncreator/includes/base/element-base.php:316 (init_children) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:124 (get_children) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/files/css/post.php:190 (render_styles) /modules/axoncreator/core/files/css/base.php:634 (render_css) /modules/axoncreator/core/files/base.php:152 (parse_content) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:82 (get_content) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/core/dynamic-tags/manager.php:434 (enqueue) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
284 | SELECT SQL_NO_CACHE depends_on_stock
FROM `ps_stock_available`
WHERE (id_product = 87927) AND (id_product_attribute = 0) AND (id_shop_group = 1) AND (id_shop = 0) LIMIT 1 | 0.043 ms | 1 | | | /classes/stock/StockAvailable.php:753 /classes/Product.php:7862 (dependsOnStock) /classes/Product.php:751 (loadStockData) /override/classes/Product.php:9 (__construct) /modules/axoncreator/axoncreator.php:1426 (__construct) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
306 | SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 82457 AND id_shop=2 LIMIT 1 | 0.043 ms | 1 | | | /classes/Product.php:6870 /classes/Product.php:3925 (getIdTaxRulesGroupByIdProduct) /override/classes/Product.php:117 (priceCalculation) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:5688 (getPriceStatic) /override/classes/Product.php:184 (getProductProperties) /classes/Product.php:5984 (getProductProperties) /classes/Category.php:1074 (getProductsProperties) /src/Adapter/Category/CategoryProductSearchProvider.php:88 (getProducts) /src/Adapter/Category/CategoryProductSearchProvider.php:105 (getProductsOrCount) /modules/axoncreator/axoncreator.php:1442 (runQuery) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
345 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 7 AND `id_shop` = 2 LIMIT 1 | 0.041 ms | 1 | | | /classes/module/Module.php:2109 /var/cache/prod/smarty/compile/akira/5d/85/99/5d85998f2045cda3df9427ce50fe4fead6d6cd49_2.file.account.tpl.php:246 (isEnabled) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190515d8c58_71002267) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akira/5b/94/0c/5b940cf84db06a9637a353c3b516256f432e36ce_2.module.nrtthemecustomizerviewstemplateshookorther.tpl.php:73 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_677190515c1cf0_31284358) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/module/Module.php:2273 (fetch) /modules/nrtthemecustomizer/nrtthemecustomizer.php:3775 (fetch) /classes/Hook.php:1043 (hookDisplayBodyBottom) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:443 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
196 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "nrtshoppingcart" LIMIT 1 | 0.040 ms | 1 | | | /classes/module/Module.php:2636 /classes/module/Module.php:2108 (getModuleIdByName) /modules/axoncreator/includes/managers/widgets.php:120 (isEnabled) /modules/axoncreator/includes/managers/widgets.php:303 (init_widgets) /modules/axoncreator/includes/elements/column.php:1026 (get_widget_types) /modules/axoncreator/includes/base/element-base.php:911 (_get_default_child_type) /modules/axoncreator/includes/base/element-base.php:356 (get_child_type) /modules/axoncreator/includes/base/element-base.php:956 (add_child) /modules/axoncreator/includes/base/element-base.php:316 (init_children) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:124 (get_children) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/files/css/post.php:190 (render_styles) /modules/axoncreator/core/files/css/base.php:634 (render_css) /modules/axoncreator/core/files/base.php:152 (parse_content) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:82 (get_content) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/core/dynamic-tags/manager.php:434 (enqueue) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
173 | SELECT SQL_NO_CACHE * FROM ps_hook_module
WHERE `id_hook` = 0
AND `id_module` = 121
AND `id_shop` = 2 | 0.040 ms | 0 | | | /classes/Hook.php:515 /classes/module/Module.php:2150 (isModuleRegisteredOnHook) /modules/seigicookie/seigicookie.inc.php:278 (isRegisteredInHook) /classes/Hook.php:1043 (hookDisplayHeader) /tools/profiling/Hook.php:35 (coreCallHook) /classes/Hook.php:418 (coreCallHook) /classes/Hook.php:981 (callHookOn) /classes/controller/FrontController.php:622 (exec) /controllers/front/ProductController.php:465 (initContent) /tools/profiling/Controller.php:60 (initContent) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
87 | SELECT SQL_NO_CACHE `reduction`
FROM `ps_group`
WHERE `id_group` = 8 LIMIT 1 | 0.039 ms | 1 | | | /classes/Group.php:154 /classes/Product.php:3994 (getReductionByIdGroup) /override/classes/Product.php:117 (priceCalculation) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:748 (getPriceStatic) /override/classes/Product.php:9 (__construct) /controllers/front/ProductController.php:146 (__construct) /tools/profiling/Controller.php:41 (init) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
198 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "nrtcompare" LIMIT 1 | 0.039 ms | 1 | | | /classes/module/Module.php:2636 /classes/module/Module.php:2108 (getModuleIdByName) /modules/axoncreator/includes/managers/widgets.php:124 (isEnabled) /modules/axoncreator/includes/managers/widgets.php:303 (init_widgets) /modules/axoncreator/includes/elements/column.php:1026 (get_widget_types) /modules/axoncreator/includes/base/element-base.php:911 (_get_default_child_type) /modules/axoncreator/includes/base/element-base.php:356 (get_child_type) /modules/axoncreator/includes/base/element-base.php:956 (add_child) /modules/axoncreator/includes/base/element-base.php:316 (init_children) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:124 (get_children) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/files/css/post.php:190 (render_styles) /modules/axoncreator/core/files/css/base.php:634 (render_css) /modules/axoncreator/core/files/base.php:152 (parse_content) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:82 (get_content) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/core/dynamic-tags/manager.php:434 (enqueue) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
207 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 2 LIMIT 1 | 0.039 ms | 0 | | | /classes/module/Module.php:2109 /modules/axoncreator/includes/managers/widgets.php:140 (isEnabled) /modules/axoncreator/includes/managers/widgets.php:303 (init_widgets) /modules/axoncreator/includes/elements/column.php:1026 (get_widget_types) /modules/axoncreator/includes/base/element-base.php:911 (_get_default_child_type) /modules/axoncreator/includes/base/element-base.php:356 (get_child_type) /modules/axoncreator/includes/base/element-base.php:956 (add_child) /modules/axoncreator/includes/base/element-base.php:316 (init_children) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:124 (get_children) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/files/css/post.php:190 (render_styles) /modules/axoncreator/core/files/css/base.php:634 (render_css) /modules/axoncreator/core/files/base.php:152 (parse_content) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:82 (get_content) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/core/dynamic-tags/manager.php:434 (enqueue) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
285 | SELECT SQL_NO_CACHE location
FROM `ps_stock_available`
WHERE (id_product = 87927) AND (id_product_attribute = 0) AND (id_shop_group = 1) AND (id_shop = 0) LIMIT 1 | 0.039 ms | 1 | | | /classes/stock/StockAvailable.php:806 /classes/Product.php:7863 (getLocation) /classes/Product.php:751 (loadStockData) /override/classes/Product.php:9 (__construct) /modules/axoncreator/axoncreator.php:1426 (__construct) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
197 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 82 AND `id_shop` = 2 LIMIT 1 | 0.038 ms | 1 | | | /classes/module/Module.php:2109 /modules/axoncreator/includes/managers/widgets.php:120 (isEnabled) /modules/axoncreator/includes/managers/widgets.php:303 (init_widgets) /modules/axoncreator/includes/elements/column.php:1026 (get_widget_types) /modules/axoncreator/includes/base/element-base.php:911 (_get_default_child_type) /modules/axoncreator/includes/base/element-base.php:356 (get_child_type) /modules/axoncreator/includes/base/element-base.php:956 (add_child) /modules/axoncreator/includes/base/element-base.php:316 (init_children) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:124 (get_children) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/files/css/post.php:190 (render_styles) /modules/axoncreator/core/files/css/base.php:634 (render_css) /modules/axoncreator/core/files/base.php:152 (parse_content) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:82 (get_content) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/core/dynamic-tags/manager.php:434 (enqueue) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
203 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 19 AND `id_shop` = 2 LIMIT 1 | 0.038 ms | 1 | | | /classes/module/Module.php:2109 /modules/axoncreator/includes/managers/widgets.php:132 (isEnabled) /modules/axoncreator/includes/managers/widgets.php:303 (init_widgets) /modules/axoncreator/includes/elements/column.php:1026 (get_widget_types) /modules/axoncreator/includes/base/element-base.php:911 (_get_default_child_type) /modules/axoncreator/includes/base/element-base.php:356 (get_child_type) /modules/axoncreator/includes/base/element-base.php:956 (add_child) /modules/axoncreator/includes/base/element-base.php:316 (init_children) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:124 (get_children) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/files/css/post.php:190 (render_styles) /modules/axoncreator/core/files/css/base.php:634 (render_css) /modules/axoncreator/core/files/base.php:152 (parse_content) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:82 (get_content) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/core/dynamic-tags/manager.php:434 (enqueue) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
200 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "nrtwishlist" LIMIT 1 | 0.036 ms | 1 | | | /classes/module/Module.php:2636 /classes/module/Module.php:2108 (getModuleIdByName) /modules/axoncreator/includes/managers/widgets.php:128 (isEnabled) /modules/axoncreator/includes/managers/widgets.php:303 (init_widgets) /modules/axoncreator/includes/elements/column.php:1026 (get_widget_types) /modules/axoncreator/includes/base/element-base.php:911 (_get_default_child_type) /modules/axoncreator/includes/base/element-base.php:356 (get_child_type) /modules/axoncreator/includes/base/element-base.php:956 (add_child) /modules/axoncreator/includes/base/element-base.php:316 (init_children) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:124 (get_children) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/files/css/post.php:190 (render_styles) /modules/axoncreator/core/files/css/base.php:634 (render_css) /modules/axoncreator/core/files/base.php:152 (parse_content) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:82 (get_content) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/core/dynamic-tags/manager.php:434 (enqueue) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
307 | SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 82457 AND `id_group` = 8 LIMIT 1 | 0.036 ms | 0 | | | /classes/GroupReduction.php:156 /classes/Product.php:3990 (getValueForProduct) /override/classes/Product.php:117 (priceCalculation) /classes/Product.php:3737 (priceCalculation) /classes/Product.php:5688 (getPriceStatic) /override/classes/Product.php:184 (getProductProperties) /classes/Product.php:5984 (getProductProperties) /classes/Category.php:1074 (getProductsProperties) /src/Adapter/Category/CategoryProductSearchProvider.php:88 (getProducts) /src/Adapter/Category/CategoryProductSearchProvider.php:105 (getProductsOrCount) /modules/axoncreator/axoncreator.php:1442 (runQuery) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:167 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:226 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:419 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
206 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "revsliderprestashop" LIMIT 1 | 0.035 ms | 0 | | | /classes/module/Module.php:2636 /classes/module/Module.php:2108 (getModuleIdByName) /modules/axoncreator/includes/managers/widgets.php:140 (isEnabled) /modules/axoncreator/includes/managers/widgets.php:303 (init_widgets) /modules/axoncreator/includes/elements/column.php:1026 (get_widget_types) /modules/axoncreator/includes/base/element-base.php:911 (_get_default_child_type) /modules/axoncreator/includes/base/element-base.php:356 (get_child_type) /modules/axoncreator/includes/base/element-base.php:956 (add_child) /modules/axoncreator/includes/base/element-base.php:316 (init_children) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:124 (get_children) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/files/css/post.php:190 (render_styles) /modules/axoncreator/core/files/css/base.php:634 (render_css) /modules/axoncreator/core/files/base.php:152 (parse_content) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:82 (get_content) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/core/dynamic-tags/manager.php:434 (enqueue) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
205 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 69 AND `id_shop` = 2 LIMIT 1 | 0.033 ms | 1 | | | /classes/module/Module.php:2109 /modules/axoncreator/includes/managers/widgets.php:136 (isEnabled) /modules/axoncreator/includes/managers/widgets.php:303 (init_widgets) /modules/axoncreator/includes/elements/column.php:1026 (get_widget_types) /modules/axoncreator/includes/base/element-base.php:911 (_get_default_child_type) /modules/axoncreator/includes/base/element-base.php:356 (get_child_type) /modules/axoncreator/includes/base/element-base.php:956 (add_child) /modules/axoncreator/includes/base/element-base.php:316 (init_children) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:124 (get_children) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/files/css/post.php:190 (render_styles) /modules/axoncreator/core/files/css/base.php:634 (render_css) /modules/axoncreator/core/files/base.php:152 (parse_content) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:82 (get_content) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/core/dynamic-tags/manager.php:434 (enqueue) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
202 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "ps_emailsubscription" LIMIT 1 | 0.030 ms | 1 | | | /classes/module/Module.php:2636 /classes/module/Module.php:2108 (getModuleIdByName) /modules/axoncreator/includes/managers/widgets.php:132 (isEnabled) /modules/axoncreator/includes/managers/widgets.php:303 (init_widgets) /modules/axoncreator/includes/elements/column.php:1026 (get_widget_types) /modules/axoncreator/includes/base/element-base.php:911 (_get_default_child_type) /modules/axoncreator/includes/base/element-base.php:356 (get_child_type) /modules/axoncreator/includes/base/element-base.php:956 (add_child) /modules/axoncreator/includes/base/element-base.php:316 (init_children) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:124 (get_children) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/files/css/post.php:190 (render_styles) /modules/axoncreator/core/files/css/base.php:634 (render_css) /modules/axoncreator/core/files/base.php:152 (parse_content) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:82 (get_content) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/core/dynamic-tags/manager.php:434 (enqueue) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
204 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "nrtmegamenu" LIMIT 1 | 0.030 ms | 1 | | | /classes/module/Module.php:2636 /classes/module/Module.php:2108 (getModuleIdByName) /modules/axoncreator/includes/managers/widgets.php:136 (isEnabled) /modules/axoncreator/includes/managers/widgets.php:303 (init_widgets) /modules/axoncreator/includes/elements/column.php:1026 (get_widget_types) /modules/axoncreator/includes/base/element-base.php:911 (_get_default_child_type) /modules/axoncreator/includes/base/element-base.php:356 (get_child_type) /modules/axoncreator/includes/base/element-base.php:956 (add_child) /modules/axoncreator/includes/base/element-base.php:316 (init_children) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:124 (get_children) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/files/css/post.php:190 (render_styles) /modules/axoncreator/core/files/css/base.php:634 (render_css) /modules/axoncreator/core/files/base.php:152 (parse_content) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:82 (get_content) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/core/dynamic-tags/manager.php:434 (enqueue) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|
201 | SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 73 AND `id_shop` = 2 LIMIT 1 | 0.028 ms | 0 | | | /classes/module/Module.php:2109 /modules/axoncreator/includes/managers/widgets.php:128 (isEnabled) /modules/axoncreator/includes/managers/widgets.php:303 (init_widgets) /modules/axoncreator/includes/elements/column.php:1026 (get_widget_types) /modules/axoncreator/includes/base/element-base.php:911 (_get_default_child_type) /modules/axoncreator/includes/base/element-base.php:356 (get_child_type) /modules/axoncreator/includes/base/element-base.php:956 (add_child) /modules/axoncreator/includes/base/element-base.php:316 (init_children) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:124 (get_children) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:125 (render_styles) /modules/axoncreator/core/files/css/post.php:304 (add_controls_stack_style_rules) /modules/axoncreator/core/files/css/post.php:190 (render_styles) /modules/axoncreator/core/files/css/base.php:634 (render_css) /modules/axoncreator/core/files/base.php:152 (parse_content) /modules/axoncreator/core/dynamic-tags/dynamic-css.php:82 (get_content) /modules/axoncreator/core/files/css/base.php:217 (get_meta) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/core/dynamic-tags/manager.php:434 (enqueue) :undefined (after_enqueue_post_css) /modules/axoncreator/src/Wp_Helper.php:865 (call_user_func_array) /modules/axoncreator/core/files/css/base.php:281 (do_action) /modules/axoncreator/core/files/css/post.php:207 (enqueue) /modules/axoncreator/includes/frontend.php:891 (enqueue) /modules/axoncreator/axoncreator.php:1486 (get_builder_content) /modules/axoncreator/axoncreator.php:1466 (getWidgetVariables) /classes/Hook.php:1054 (renderWidget) /tools/profiling/Hook.php:64 (coreRenderWidget) /classes/Hook.php:1000 (coreRenderWidget) /config/smarty.config.inc.php:198 (exec) /classes/Smarty/SmartyLazyRegister.php:81 (smartyHook) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:93 (__call) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/79/f3/67/79f367a74e53f5be789d238285d110c6d69b1261_2.file.header.tpl.php:49 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053be1936_11303444) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:80 (_subTemplateRender) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:403 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/ea/14/62/ea14628e6ae373901c339a2767f98b079c50692c_2.file.layout-both-columns.tpl.php:34 (instanceBlock) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b9c524_78623426) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender) /var/cache/prod/smarty/compile/akiralayouts_layout_full_width_tpl/d7/41/c3/d741c30f58d92ec052dd6277273885e695973669_2.file.product.tpl.php:63 (endChild) /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_67719053b8fad9_07460013) /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render) /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute) /classes/controller/FrontController.php:760 (fetch) /classes/controller/FrontController.php:742 (smartyOutputContent) /tools/profiling/Controller.php:106 (display) /tools/profiling/Controller.php:83 (displayProfiling) /classes/Dispatcher.php:510 (run) /index.php:40 (dispatch)
|