Comments Vladyslav started the conversationMarch 11, 2016 at 3:55pmhi, where i can change columns width in footer ( new york theme) ? 1,593Criss repliedMarch 12, 2016 at 8:26amHi Vladyslav,We receive your ticket but we're going to have 2 weekend days off. We'll be back on Monday. Sorry for our delay!Best Regards,Criss - FieldThemes 1,593Criss repliedMarch 14, 2016 at 7:23amHi Vladyslav,We are using "Bootstrap 3" to split the footer columnhttp://www.awesomescreenshot.com/image/1077158/a25e0d4fa6145a47d5e81a99b87bbdadEx: col-md-3, col-md-2, ... You can resize columns 1, 4, 5 in BO> Fieldthemes> Manage StaticfooterColumn 2 in file: root/themes/newyork/modules/blockcontactinfo/blockcontactinfo.tplColumn 3 in file: root/themes/newyork/modules/blockcms/blockcms.tplBest Regards,Criss - FieldThemesVladyslav repliedMarch 14, 2016 at 11:14amhi, thanks.and where I can change columns width in header? 1,593Criss repliedMarch 14, 2016 at 11:26amWhat's the Newyork home page you're using? You can find in:-/root/themes/newyork/header.tpl-/root/themes/newyork/modules/blockcart/blockcart.tpl-/root/modules/fieldblocksearch/fieldblocksearch-top.tplBest Regards,Criss - FieldThemesVladyslav repliedMarch 14, 2016 at 11:46amhomepage №1 1,593Criss repliedMarch 14, 2016 at 11:51am- In "/root/modules/fieldblocksearch/fieldblocksearch-top.tpl" <div id="search_block_top" class=" col-md-6 clearfix">- In "/root/themes/newyork/header.tpl" <div class="logo_img col-md-3 col-sm-12">- In "/root/themes/newyork/modules/blockcart/blockcart.tpl" <div class="shopping_cart_right col-md-3 clearfix{if $PS_CATALOG_MODE} header_user_catalog{/if}">Best Regards,Criss - FieldThemes1 LikeVladyslav repliedMarch 14, 2016 at 3:29pmand when its module update, i lost my changes?Vladyslav repliedMarch 14, 2016 at 3:42pmcan i override templates?Vladyslav repliedMarch 14, 2016 at 7:53pmand i find bug, i can't wrap div with content in tag <a> 1,593Criss repliedMarch 15, 2016 at 6:30am- Yes, when any module update, the modify'll be lost.- <div> isn't valid inside <a>You should add <a> tag for each element in <div>Best Regards,Criss - FieldThemesVladyslav repliedMarch 15, 2016 at 10:26amHi, this is my code <div class="banner-static"> <div class="container"> <div class="row"> <div class="banner-center"> <div class="col1 col-xs-12 col-sm-12 col-md-8"> <div class="row1"> <div class="img1"> <a href="#"> <img class="top" src="http://laboutiquedemarius.dev/img/cms/b-banner1.jpg" alt="" width="770" height="227" /> <div class="img-content img-content-1"> <h4 class="title">Un moment délicieux</h4> <p class="text-content">Un moment délicieux</p> <p class="link">voir la gamme</p> </div> </a> </div> </div> <div class="row2"> <div class="col-md-6 col-sm-6"> <div class="img1"> <a href="#"> <img class="top" src="http://laboutiquedemarius.dev/img/cms/b-banner3.jpg" alt="" width="370" height="227" /> <div class="img-content img-content-2"> <h4 class="title">Pimentez vos recettes</h4> <p class="link">l’univers des épices</p> </div> </a> </div> </div> <div class="col-md-6 col-sm-6"> <div class="img1"> <a href="#"> <img class="top" src="http://laboutiquedemarius.dev/img/cms/b-banner4.jpg" alt="" width="370" height="227" /> <div class="img-content img-content-3"> <h4 class="title">A chacun son huile</h4> <p class="link">A chacun son huile</p> </div> </a> </div> </div> </div> </div> <div class="col2 col-xs-12 col-sm-12 col-md-4"> <div class="img3"> <div class="around"> <a href="#"> <img class="top" src="http://laboutiquedemarius.dev/img/cms/b-banner2.jpg" alt="" width="370" height="484" /> <div class="img-content img-content-4"> <p class="text-content">Tous les petits plaisir</p> <h4 class="title">Tous les petits plaisir</h4> <p class="link">Tous les petits plaisir2</p> </div> </a> </div> </div> </div> </div> </div> </div> </div> and this what i have in the DOM ( i cant wrap into link (tag <a></a>) custom content in the div). please see the image 1,593Criss repliedMarch 15, 2016 at 10:44amYou can use: <div class="img1"> <a href="#"><img class="top" src="http://laboutiquedemarius.dev/img/cms/b-banner1.jpg" alt="" width="770" height="227" /></a> <div class="img-content img-content-1"> <h4 class="title">Un moment délicieux</h4> <p class="text-content">Un moment délicieux</p> <p class="link">voir la gamme</p> </div> </div>Or: <div class="img1"> <img class="top" src="http://laboutiquedemarius.dev/img/cms/b-banner1.jpg" alt="" width="770" height="227" /> <div class="img-content img-content-1"> <h4 class="title"><a href="#">Un moment délicieux</a></h4> <a href="#" class="text-content">Un moment délicieux</a> <a href="#" class="link">voir la gamme</a> </div> </div> Or: <div class="img1"> <a href="#"><img class="top" src="http://laboutiquedemarius.dev/img/cms/b-banner1.jpg" alt="" width="770" height="227" /></a> <div class="img-content img-content-1"> <h4 class="title"><a href="#">Un moment délicieux</a></h4> <a href="#" class="text-content">Un moment délicieux</a> <a href="#" class="link">voir la gamme</a> </div> </div> Best Regards,Criss - FieldThemesVladyslav repliedMarch 15, 2016 at 10:56amthanks, but your's variants unsuitable (( i cant wrap any block into link in this editor? 1,593Criss repliedMarch 15, 2016 at 11:04amWe think don't have any solution.Best Regards,Criss - FieldThemesVladyslav repliedMarch 15, 2016 at 12:01pmcan i add fieldmegamenu into footer? and new york theme has a social links module? thanks. 1,593Criss repliedMarch 15, 2016 at 12:09pmNo, Module fieldmegamenu have many TPL & JS & it can display in header only, we're sorry.Best Regards,Criss - FieldThemesVladyslav repliedMarch 15, 2016 at 12:09pmhow i can add some custom menu with categories into footer?Vladyslav repliedMarch 15, 2016 at 12:16pmhow can i add social links into nav_block 1.2 thanks. 1,593Criss repliedMarch 15, 2016 at 12:20pmYou can use column "EXTRAS" to add links to your categories. Best Regards,Criss - FieldThemesVladyslav repliedMarch 17, 2016 at 5:21pmhi, can i add some custom block like banner-home1 to the product page? 1,593Criss repliedMarch 18, 2016 at 5:30amyes, you can. If you know how to use prestashop "hook". You can add $HOOK_BLOCKPOSITION1, $HOOK_BLOCKPOSITION2, $HOOK_BLOCKPOSITION3, $HOOK_BLOCKPOSITION4 to any page you want.Best Regards,Criss - FieldThemes Sign in to reply ...
hi, where i can change columns width in footer ( new york theme) ?
Hi Vladyslav,
We receive your ticket but we're going to have 2 weekend days off. We'll be back on Monday. Sorry for our delay!
Best Regards,
Criss - FieldThemes
Hi Vladyslav,
We are using "Bootstrap 3" to split the footer column
http://www.awesomescreenshot.com/image/1077158/a25e0d4fa6145a47d5e81a99b87bbdad
Ex: col-md-3, col-md-2, ...
You can resize columns 1, 4, 5 in BO> Fieldthemes> Manage Staticfooter
Column 2 in file: root/themes/newyork/modules/blockcontactinfo/blockcontactinfo.tpl
Column 3 in file: root/themes/newyork/modules/blockcms/blockcms.tpl
Best Regards,
Criss - FieldThemes
hi, thanks.
and where I can change columns width in header?
What's the Newyork home page you're using? You can find in:
-/root/themes/newyork/header.tpl
-/root/themes/newyork/modules/blockcart/blockcart.tpl
-/root/modules/fieldblocksearch/fieldblocksearch-top.tpl
Best Regards,
Criss - FieldThemes
homepage №1
- In "/root/modules/fieldblocksearch/fieldblocksearch-top.tpl"
- In "/root/themes/newyork/header.tpl"
- In "/root/themes/newyork/modules/blockcart/blockcart.tpl"
Best Regards,
Criss - FieldThemes
and when its module update, i lost my changes?
can i override templates?
and i find bug, i can't wrap div with content in tag <a>
- Yes, when any module update, the modify'll be lost.
- <div> isn't valid inside <a>
You should add <a> tag for each element in <div>
Best Regards,
Criss - FieldThemes
Hi, this is my code
and this what i have in the DOM ( i cant wrap into link (tag <a></a>) custom content in the div). please see the image
You can use:
Or:
Or:
Best Regards,
Criss - FieldThemes
thanks, but your's variants unsuitable (( i cant wrap any block into link in this editor?
We think don't have any solution.
Best Regards,
Criss - FieldThemes
can i add fieldmegamenu into footer?
and new york theme has a social links module?
thanks.
No, Module fieldmegamenu have many TPL & JS & it can display in header only, we're sorry.
Best Regards,
Criss - FieldThemes
how i can add some custom menu with categories into footer?
how can i add social links into nav_block 1.2
thanks.
You can use column "EXTRAS" to add links to your categories.
Best Regards,
Criss - FieldThemes
hi, can i add some custom block like banner-home1 to the product page?
yes, you can. If you know how to use prestashop "hook". You can add $HOOK_BLOCKPOSITION1, $HOOK_BLOCKPOSITION2, $HOOK_BLOCKPOSITION3, $HOOK_BLOCKPOSITION4 to any page you want.
Best Regards,
Criss - FieldThemes