Home / Prestashop Module Tutorials / Ap Page Builder

Ap Page Builder

Ultimate Guides for Ap page Builder PrestaShop Module: How to Use, How to Install, Config, Create Layout, Create profile

The danger of iframe clickjacking and how to deal with it

Clickjacking It involves tricking a user into clicking something different from what they think it is. Let’s create a straightforward example with it. index.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>A malicious website</title> <link rel="stylesheet" href="style.css"> </head> <body> <button>Just a button</button> <iframe id="banking-site-iframe" src="https://your-bank.com"></iframe> </body> </html> Above, we have …

Read More »

How to fix leotheme schema error in prestashop 1.7.8.x

fix schema error leotheme

Hi In prestashop 1.7.8.x, prestashop use microdata to show schema. With builder of appagebuilder and review of leofeature You will get error with schema. Please follow my guide to fix: 1. update module appagebuilder to 2.4.5 2. Update moduel leo feature to 2.2.2 after copy module, please update or reset …

Read More »

Security issue with the module ApPageBuilder v.2.2.4

Hi When you got error This issue enables hackers to do SQL injections and it can be exploited because of PHP files in the module that are not secured. Please update ApPageBuilder to latest version If you have many edit you can follow my guide to fix open file modules/appagebuilder/appagebuilder.php …

Read More »

Advanced Search4 Module is not displaying results of filter with prestashop theme of leotheme

Hi Advanced Search4 Module is not displaying results of filter anymore. In category page you select any filter for layered navigation. You will see that result looks bad. Is not generating the page according to my setting from theme with 4 colons etc… Error like this image Please follow my …

Read More »

[Error] Try to acccess array offset on value of type null in apgencode.php line 106

Hi If you see error Try to acccess array offset on value of type null in apgencode.php line 106 please follow my guide to fix open file /modules/appagebuilder/classes/shortcodes/ApGenCode.php find code: $profile_data = $module->getProfileData(); $profile_folder = $profile_data[‘profile_key’]; remove it code: $file_url = apPageHelper::getConfigDir(‘theme_profiles’).$profile_folder.’/’.$file_name; replace it with $file_url = apPageHelper::getConfigDir(‘theme_profiles’).’/’.$file_name; find the …

Read More »

Fix error not show Texture in product list Ap Page builder

Hi I’m so sorry about my bug. Please follow my guide to fix: 1, open file module/apagebuilder/apagebuilder.php find code in line 1727 if (Tools::isEmpty($row['color']) && !@filemtime(_PS_COL_IMG_DIR_ . $row['id_attribute'] . '.jpg')) { continue; } elseif (Tools::isEmpty($row['color']) && @filemtime(_PS_COL_IMG_DIR_ . $row['id_attribute'] . '.jpg')) { $row['texture'] = _THEME_COL_DIR_ . $row['id_attribute'] . '.jpg'; } …

Read More »