Install: 1 2 3 4 php bin/magento setup:upgrade php bin/magento index:reindex php bin/magento cache:clean php bin/magento setup:di:compile
0、#parallax 上传图片文件名不能带有中文#,如果不小心上传了带有中文的,直接操作数据库,清空parallax_block、、parallax_block_item、parallax_block_store 的三个表的数据。重新登陆后台。 1、logo、title、keywords、description 设置 1 Stores->Configuration->Templatemonster->Theme Option->General
2、shop by brand 设置 1 Stores->Configuration->Templatemonster->Shop by Brand
3、产品地区Product manufacturer 设置 1 2 Stores->Product Attributes->country_of_manufacturer->Storefront Properties->use in search Stores->Product Attributes->manufacturer->Storefront Properties->use in search
4、导航栏样式bug,(二级导航没有padding):
需要开启 stores->templatemonster->megamenu->megamenu conifg->enable/disable->enable
5、magento 2.3.3 templatemonster->sliders->上传图片bug: 1 /vendor/magento/framework/App/Filesystem/Directory Resolver.php:56
#需要先上传一张产品图片可以解决此bug
1 2 3 4 5 6 <ul class ="list-icon" > <li > <a target ="_blank" href ="https://www.facebook.com/gogo" > <i class ="fa fa-facebook" > </i > </a > </li > <li > <a target ="_blank" href ="https://twitter.com/gogo" > <i class ="fa fa-twitter" > </i > </a > </li > <li > <a target ="_blank" href ="https://www.instagram.com/gogoo/" > <i class ="fa fa-instagram" > </i > </a > </li > <li > <a target ="_blank" href ="https://www.youtube.com/channel/UCa1rPny7EUJGgVx6MEc7oog" > <i class ="fa fa-pinterest" > </i > </a > </li > </ul >
1 2 3 4 5 6 7 <ul class ="list-footer" > <li > <a target ="_blank" href ="#" > <i class ="fa fa-cc-visa" > </i > </a > </li > <li > <a target ="_blank" href ="#" > <i class ="fa fa-cc-mastercard" > </i > </a > </li > <li > <a target ="_blank" href ="#" > <i class ="fa fa-cc-paypal" > </i > </a > </li > <li > <a target ="_blank" href ="#" > <i class ="fa fa-cc-discover" > </i > </a > </li > <li > <a target ="_blank" href ="#" > <i class ="fa fa-cc-stripe" > </i > </a > </li > </ul >
7、自定义js文件不加载
本地安装2.3.2+theme 没有问题。在服务器 2.3.3 + theme 出现requirejs-config.js 已经包含自定义js文件并编译成功,但是没加载自定js文件。 解决方法:直接在theme自带的theme.js文件添加js…
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 define([ 'jquery.countdown' ], function ($ ) { 'use strict' ; var $date = $("#clock" ).attr('data-id' ); var $current = new Date (); var $old = new Date ($date); if ($current.getTime()>$old.getTime()){ $("#clock" ).css("display" ,"none" ); }else { $('#clock' ).countdown($date, function (event ) { $(this ).html(event.strftime('%D days %H:%M:%S' )); }); } });