-
Posts
132 -
Joined
-
Last visited
-
Days Won
1
Romeo.Tran last won the day on December 22 2019
Romeo.Tran had the most liked content!
About Romeo.Tran
- Birthday 11/22/1986
Profile Information
-
Activity
Agency
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
Romeo.Tran's Achievements
-
Cache problem with leotheme theme
Romeo.Tran replied to sfweb's topic in Configuring and using PrestaShop
You can contact us directly to [email protected] -
Cache problem with leotheme theme
Romeo.Tran replied to sfweb's topic in Configuring and using PrestaShop
PLease download latest version of module ap page builder we fixed it -
Hi, Today, we are strongly pleased to introduce about Leo Bicomart - one of the best PrestaShop Marketplace Multivendor Template. That is designed by Leotheme Team. Detail: Leo Bicomart PrestaShop Marketplace Template Download Demo: Leo Bicomart PrestaShop Marketplace Template Demo In order to provide a best PrestaShop Theme for Marketplace, that you can create your marketplace in few minutes, Leo Bicomart is integrated with Ap Marketplace - one of the best PrestaShop Marketplace Module - perfect module to help turn on your marketplace and allows sellers to upload their products and earn commission. Just $70 only! You can get both beautiful marketplace PrestaShop Template, together with Ap marketplace PRO If you are looking for the best PrestaShop Marketplace Theme for your big market digital online as big as Esty, Amazon marketplace? Don’t need to search anymore. Because you ‘ve come to right place. That’s an awesome theme which fit any marketplace requirements with features for sellers & admin management. Bicomart allows create multi vendors/sellers to upload products on the market and start to earn different commission. You can sell any kind of products as virtual product, digital product, downloadable products, … For examples: supermarket, electronics marketplace, Fashion, Clothes, Furniture & Home decor, electronics, service, ... What are special in Bicomart that any Online Marketplace Needs? Thanks to being well-integrated the most powerful Marketplace Module -Ap Marketplace PRO – in leo framework, you can build your market easily & quickly. You can create amazing versatile multi-sellers websites and earn more benefits from commissions. Of course, Bicomart is designed with 03+ different marketplace homepages in various layouts. In other words, it is a perfect theme for any marketplace websites. Create multiple vendors, upload unlimited products, intuitive seller dashboard, fast load checkout at once, … are all necessary features you need for marketplace. Of course, You can get all-in-one features for sellers & admin features in Bicomart: 03+ ready-to-use marketplace websites + #1 Marketplace Module Integration – Ap Marketplace PRO + Powerful Feature for sellers/vendor + Full Control & Marketplace Management for Admin + Hot Deal & Countdown Timer for Sale Season + UX optimized for Marketplace purpose + Easily Build/Edit Marketplace Content & Layouts with no-coding + 1 Click Installation for Marketplace + Mumerous Shopping Pages Layouts on market + Attractive Seller Product Page Layouts.
-
- marketplace
- marketplace theme
- (and 2 more)
-
Cache problem with leotheme theme
Romeo.Tran replied to sfweb's topic in Configuring and using PrestaShop
Hi Best solution is download version 2.2.8 Override folder modules/appagebuilder/ click on correct module in module config in version 2.2.8 you can set theme for mobile and tablets https://blog.leotheme.com/create-mobile-theme-tablet-theme-prestashop.html https://blog.leotheme.com/new-updates-ap-page-builder-module-version-2-2-7.html -
Cache problem with leotheme theme
Romeo.Tran replied to sfweb's topic in Configuring and using PrestaShop
Hi all. I update ap page builder to 2.2.8 I fixed speed function we have to override cacheid function protected function getCacheId($hookName = null, $shortcode_key = null) { $cache_array = array(); //if call function from shortcode return cache of shortcode if ($shortcode_key) { $cache_array[] = 'shortcodekey_'.$shortcode_key; } else { //process nomal cache for each hook //create folder cache for each home by id or buy home name $cache_array[] = $this->profile_data['id_appagebuilder_profiles']; //set cache for each hook in profile $cache_array[] = $hookName; //kiem tra xem module confg if ($this->profile_param && isset($this->profile_param[$hookName]) && $this->profile_param[$hookName]) { $current_page = apPageHelper::getPageName(); $iscached = 0; //check cache in sub page if (($current_page == "category" || $current_page == 'product')) { if (isset($this->profile_param[$hookName]['nocategory'])) { if (in_array(Tools::getValue('id_category'), $this->profile_param[$hookName]['nocategory'])) { $cache_array[] = Tools::getValue('id_category'); $iscached = 1; } } if (isset($this->profile_param[$hookName]['nocategoryproduct'])) { if (in_array(Tools::getValue('id_category'), $this->profile_param[$hookName]['nocategoryproduct'])) { $cache_array[] = Tools::getValue('id_category'); $iscached = 1; } } if (!$iscached && $current_page == "category" && isset($this->profile_param[$hookName]['categoryproduct'])) { if (in_array(Tools::getValue('id_category'), $this->profile_param[$hookName]['categoryproduct'])) { $cache_array[] = Tools::getValue('id_category'); $iscached = 1; } } if (!$iscached && $current_page == "category" && isset($this->profile_param[$hookName]['categoryproductmain'])) { if (in_array(Tools::getValue('id_category'), $this->profile_param[$hookName]['categoryproductmain'])) { $cache_array[] = Tools::getValue('id_category'); $iscached = 1; } } //product in no category if (!$iscached && $current_page == "product" && isset($this->profile_param[$hookName]['nocategoryproduct'])) { $procate = Product::getProductCategoriesFull(Tools::getValue('id_product')); $procheck = 0; foreach ($procate as $proc) { if (in_array($proc['id_category'], $this->profile_param[$hookName]['nocategoryproduct'])) { $procheck = 1; } } if ($procheck == 1) { $cache_array[] = 'product_'.Tools::getValue('id_product'); $iscached = 1; } } //product in category if (!$iscached && $current_page == "product" && isset($this->profile_param[$hookName]['categoryproduct'])) { $procate = Product::getProductCategoriesFull(Tools::getValue('id_product')); $procheck = 0; foreach ($procate as $proc) { if (in_array($proc['id_category'], $this->profile_param[$hookName]['categoryproduct'])) { $procheck = 1; } } if ($procheck == 1) { $cache_array[] = 'product_'.Tools::getValue('id_product'); $iscached = 1; } } //product in main category if (!$iscached && $current_page == "product" && isset($this->profile_param[$hookName]['categoryproduct'])) { $procate = new Product(Tools::getValue('id_product')); if (in_array($procate['id_category_default'], $this->profile_param[$hookName]['categoryproduct'])) { $cache_array[] = 'product_'.Tools::getValue('id_product'); $iscached = 1; } } } //cache big page if (!$iscached && isset($this->profile_param[$hookName][$current_page])) { $cache_array[] = $current_page; $iscached = 1; } //cache big page not show if (!$iscached && isset($this->profile_param[$hookName]['exception']) && in_array($cache_array, $this->profile_param[$hookName]['exception'])) { //show but not in controller $cache_array[] = $current_page; $iscached = 1; } //random in product carousel if (isset($this->profile_param[$hookName]['productCarousel'])) { $random = round(rand(1, max(Configuration::get('APPAGEBUILDER_PRODUCT_MAX_RANDOM'), 1))); $cache_array[] = "p_carousel_$random"; } if (isset($this->profile_param[$hookName][$current_page])) { $cache_array[] = $current_page; if ($current_page != 'index' && $cache_id = ApPageSetting::getControllerId($current_page, $this->profile_param[$hookName][$current_page])) { $cache_array[] = $cache_id; } } else if (isset($this->profile_param[$hookName]['nocategory']) || isset($this->profile_param[$hookName]['categoryproduct'])) { if (in_array(Tools::getValue('id_category'), $this->profile_param[$hookName]['nocategory'])) { $cache_array[] = Tools::getValue('id_category'); } } else if (isset($this->profile_param[$hookName]['categoryproduct']) && ($current_page == "category" || $current_page == 'product')) { if ($current_page == 'category') { if (!ApPageSetting::getControllerId($current_page, $this->profile_param[$hookName]['categoryproduct'])) { $cache_array[] = Tools::getValue('id_category'); } } else { $procate = Product::getProductCategoriesFull(Tools::getValue('id_product')); $procheck = 0; foreach ($procate as $proc) { if (in_array($proc['id_category'], $this->profile_param[$hookName]['categoryproduct'])) { $procheck = 1; } } if ($procheck == 0) { $cache_array[] = Tools::getValue('id_product'); } } } } if (Tools::getValue('plist_key')&& Tools::getIsset('leopanelchange')) { $cache_array[] = 'plist_key_'.Tools::getValue('plist_key'); } if (Tools::getValue('header') && Tools::getIsset('leopanelchange') && (in_array($hookName, ApPageSetting::getHook('header')) || $hookName == 'pagebuilderConfig|header')) { $cache_array[] = 'header_'.Tools::getValue('header'); } if (Tools::getValue('content')&& Tools::getIsset('leopanelchange') && (in_array($hookName, ApPageSetting::getHook('content')) || $hookName == 'pagebuilderConfig|content')) { $cache_array[] = 'content_'.Tools::getValue('content'); } if (Tools::getValue('product')&& Tools::getIsset('leopanelchange') && (in_array($hookName, ApPageSetting::getHook('product')) || $hookName == 'pagebuilderConfig|product')) { $cache_array[] = 'product_'.Tools::getValue('product'); } if (Tools::getValue('footer') && Tools::getIsset('leopanelchange') && (in_array($hookName, ApPageSetting::getHook('footer')) || $hookName == 'pagebuilderConfig|footer')) { $cache_array[] = 'footer_'.Tools::getValue('footer'); } } return parent::getCacheId().'|'.implode('|', $cache_array); } You can see, my module have function for landing page: - you can create landing page with my module with profile function, so in home page content hook will have diffirent content. - random product in carousel - you can create block for category and product only - other thing you can use shortcode. Many function in my module. currently, i can confirm we imporvement speed of module -
Romeo.Tran changed their profile photo
-
BonPresta started following Romeo.Tran
-
Webiarch started following Romeo.Tran
-
Store locater Google Map Not Displaying
Romeo.Tran replied to DisasterFaster's topic in Configuring and using PrestaShop
Hi You can use my module we have wiget for display map: https://www.prestashop.com/forums/topic/464537-free-module-all-in-one-free-ap-page-builder/?p=2128379 -
[bankwire] An error was found in config file
Romeo.Tran replied to connectcase's topic in Core developers
Hi mate maybe i can solver http://apollotheme.com/question/can-not-search-module-back-office-prestashop/ [bankwire] An error was found in config file: Start tag expected, ‘<‘ not found Please follow my guide: 1. Open folder config/xml 2. back up it first 3. rename all xml file in it blog-en.xml default_country_modules_list.xml modules_list.xml modules_native_addons.xml must_have_modules_list.xml tab_modules_list.xml trusted_modules_list.xml untrusted_modules_list.xml 4. Reload or click on module menu in left 5. Prestashop will generate this file again -
Daniel - PrestaBR started following Romeo.Tran
-
Bonjour, Le privilège HNE Bien présent;) Il Faut Cliquer sur "rules d'utilisation". Merci d'editer ton poste. Bonne journée! Salut les gars! Je veux partager à tout le monde à propos de prestashop gratuit simple, beau et parfait 1.6 thème, namley Leo Converse Thème Prestashop. Leo Converse est un thème prestashop grand pour ligne Fashion Shop, chaussures, Magasin de vêtements, sacs Store et plus. Une chose de spécial, c'est qu'il est GRATUIT Détail 1 Thème: - Un SENSIBLE Thème Prestashop TOTALEMENT GRATUIT Leo Converse est un thème prestashop grand pour ligne Fashion Shop, chaussures, Magasin de vêtements, sacs Store. Il est gratuit et compatible avec Prestashop 1.5.x et Prestashop 1.6x. Le thème de prestashop est 100% responsive design il ressemble beaucoup, non seulement dans Destop, mais aussi dans le mobile et la tablette. - Un FLEXIBLE et facile à utiliser Prestashop Theme Avec le Lion Gérer Widget version gratuite, vous pouvez construire un site sans codage. Surtout, Leo Converse utilise le module de commande du thème Leo qui comprend un panneau d'administration puissante de sorte que vous pouvez contrôler presque tous les aspects de Prestashop thème comme l': thème de direction, changement thème, la personnalisation de la largeur à thème ... Leo Converse est livré avec 3 magnifiques couleurs de thèmes, vous peut commuter les couleurs du thème en un seul clic. 2. Theme Télécharger: - Disponible à l'adresse: //www.leotheme....o-converse.html - Démo: http: //www.leotheme....te=leo_converse - Installez guide: http: //www.leotheme....6/leo-converse/ Si avez un problème concernant l'installation, S'il vous plaît suivez mon guide pour installer manuel: http: //www.leotheme....1-6-manual.html TELECHARGER MAINTENANT De plus, nous avons beaucoup thème libre sur notre site, vous pouvez voir plus d'informations à leotheme.com
- 1 reply
-
- sport theme
- sport responsive theme
- (and 3 more)
-
Salut les gars! Je veux partager à tout le monde à propos de prestashop gratuit simple, beau et parfait 1.6 thème, namley Leo Converse Thème Prestashop. Leo Converse est un thème prestashop grand pour ligne Fashion Shop, chaussures, Magasin de vêtements, sacs Store et plus. Une chose de spécial, c'est qu'il est GRATUIT Détail 1 Thème: - Un SENSIBLE Thème Prestashop TOTALEMENT GRATUIT Leo Converse est un thème prestashop grand pour ligne Fashion Shop, chaussures, Magasin de vêtements, sacs Store. Il est gratuit et compatible avec Prestashop 1.5.x et Prestashop 1.6x. Le thème de prestashop est 100% responsive design il ressemble beaucoup, non seulement dans Destop, mais aussi dans le mobile et la tablette. - Un FLEXIBLE et facile à utiliser Prestashop Theme Avec le Lion Gérer Widget version gratuite, vous pouvez construire un site sans codage. Surtout, Leo Converse utilise le module de commande du thème Leo qui comprend un panneau d'administration puissante de sorte que vous pouvez contrôler presque tous les aspects de Prestashop thème comme l': thème de direction, changement thème, la personnalisation de la largeur à thème ... Leo Converse est livré avec 3 magnifiques couleurs de thèmes, vous peut commuter les couleurs du thème en un seul clic. 2. Theme Télécharger: [Liens édités] [Lien édité] De plus, nous avons beaucoup thème libre sur notre site, vous pouvez voir plus d'informations à leotheme.com
-
Leo Decor - responsive prestashop 1.6 theme
Romeo.Tran replied to Romeo.Tran's topic in Modules et thèmes gratuits
Nous vous informons que nous avons upgrade 1.6 Decor theme et nous informons sur facebook leotheme.com et LeoTheme de crabe. -
Leo Converse Theme problems
Romeo.Tran replied to anson.c's topic in Configuring and using PrestaShop
Dear all! We updated leo converse to prestashop 1.6 http://www.prestasho...e/#entry1779463 if you have any problem about install please read my guide http://www.leotheme....1-6-manual.html -
Leo Decor - responsive prestashop 1.6 theme
Romeo.Tran replied to Romeo.Tran's topic in Modules et thèmes gratuits
Bonjour, co leotheme.com dessus de 4 thèmes originaux pour libre. Vous pouvez cliquer sur http://www.leotheme.com/download/prestashop-free-template.html