zerryxu Posted September 22, 2013 Share Posted September 22, 2013 I have 4 question, please help. 1 uniform doman name For unified website home page weight, I need to unify the home page domain name, for example, my domain name is http://www.123.com, when people type in www.123.com or 123.com it can jump to http://www.123.com, there need 301, but I don't know how to do that. 2 I want to delete the right column, there are 3 columns on the page, I want to delete the right column, only left the first 2 columns, but the second column should ocupy the right column place 3 Rss product feed, how to use it? 4 please tell me the sitemap place, I can't find it now in back office. who can help, thank you very much! Link to comment Share on other sites More sharing options...
vekia Posted September 22, 2013 Share Posted September 22, 2013 1. preferences > seo & urls, define "domain" settings with www like: www.mydomain.com 2. here is an tutorial: remove one column from prestashop - this tutorial is for left column, but follow all steps there - do the same for <div id="right_column"> 3. rss product feed is for your customers, it's a last added product list and then can add rss link to own rss readers (for example on smartphone, pc etc.) 4) everything depends on what module you use to create sitemap Link to comment Share on other sites More sharing options...
zerryxu Posted September 22, 2013 Author Share Posted September 22, 2013 1. preferences > seo & urls, define "domain" settings with www like: www.mydomain.com 2. here is an tutorial: remove one column from prestashop - this tutorial is for left column, but follow all steps there - do the same for <div id="right_column"> 3. rss product feed is for your customers, it's a last added product list and then can add rss link to own rss readers (for example on smartphone, pc etc.) 4) everything depends on what module you use to create sitemap thank you for your answer, but everything is not clear Link to comment Share on other sites More sharing options...
vekia Posted September 22, 2013 Share Posted September 22, 2013 if you've got any questions related to my answer - feel free to ask, i will shed some light on it Link to comment Share on other sites More sharing options...
zerryxu Posted September 22, 2013 Author Share Posted September 22, 2013 if you've got any questions related to my answer - feel free to ask, i will shed some light on it I can't find right column on header.tpl Link to comment Share on other sites More sharing options...
vekia Posted September 22, 2013 Share Posted September 22, 2013 okay, that was my bad, right column is located in footer.tpl file, sorry Link to comment Share on other sites More sharing options...
zerryxu Posted September 22, 2013 Author Share Posted September 22, 2013 okay, that was my bad, right column is located in footer.tpl file, sorry where can I modify the center column width? Link to comment Share on other sites More sharing options...
zerryxu Posted September 22, 2013 Author Share Posted September 22, 2013 okay, that was my bad, right column is located in footer.tpl file, sorry but featured products size is not ok, how to change it? Link to comment Share on other sites More sharing options...
vekia Posted September 22, 2013 Share Posted September 22, 2013 <div id="center_column" class=" grid_5"> change it to: <div id="center_column" class=" grid_7 omega"> Link to comment Share on other sites More sharing options...
zerryxu Posted September 22, 2013 Author Share Posted September 22, 2013 <div id="center_column" class=" grid_5"> change it to: <div id="center_column" class=" grid_7 omega"> featured products are not ok, 5 produts every line, and in disorder <div id="center_column" class=" grid_5"> change it to: <div id="center_column" class=" grid_7 omega"> 4 products every line before, I hope there is 4 products Link to comment Share on other sites More sharing options...
vekia Posted September 22, 2013 Share Posted September 22, 2013 if you change the width of the center column you have to modify homefeatured module, there is no other way to achieve what you want. you may need to change this module css styles and .tpl file too. what to change? width of <li> object and also image size (under preferences > images tab in back office) Link to comment Share on other sites More sharing options...
zerryxu Posted September 22, 2013 Author Share Posted September 22, 2013 if you change the width of the center column you have to modify homefeatured module, there is no other way to achieve what you want. you may need to change this module css styles and .tpl file too. what to change? width of <li> object and also image size (under preferences > images tab in back office) I don't understand sir, could you please tell me the detailed information , what i do? Link to comment Share on other sites More sharing options...
zerryxu Posted September 22, 2013 Author Share Posted September 22, 2013 if you change the width of the center column you have to modify homefeatured module, there is no other way to achieve what you want. you may need to change this module css styles and .tpl file too. what to change? width of <li> object and also image size (under preferences > images tab in back office) I opened the image tab, but I don't know what to change Link to comment Share on other sites More sharing options...
vekia Posted September 22, 2013 Share Posted September 22, 2013 ok, so you said that you want 4 products per line in homefeatured module, in this case you have to increase width of each "product" in this block (featured products). It's because you will have there free blank space: http://www.lovejewelrystore.com/modules/homefeatured/homefeatured.css in : #featured-products_block_center li { margin-right: 10px; padding: 10px 0; width: 126px; height: 240px; } change width: 126px to width: 181px; Link to comment Share on other sites More sharing options...
zerryxu Posted September 22, 2013 Author Share Posted September 22, 2013 ok, so you said that you want 4 products per line in homefeatured module, in this case you have to increase width of each "product" in this block (featured products). It's because you will have there free blank space: http://www.lovejewelrystore.com/modules/homefeatured/homefeatured.css in : #featured-products_block_center li { margin-right: 10px; padding: 10px 0; width: 126px; height: 240px; } change width: 126px to width: 181px; thank you, I have changed, but there is no change on my home page Link to comment Share on other sites More sharing options...
vekia Posted September 22, 2013 Share Posted September 22, 2013 do a hard refresh of your front office, press ctrl+f5 it's because your website remember old files. do it several times on your website homepage Link to comment Share on other sites More sharing options...
zerryxu Posted September 22, 2013 Author Share Posted September 22, 2013 do a hard refresh of your front office, press ctrl+f5 it's because your website remember old files. do it several times on your website homepage oh My God, thank you very very much !!! could you please tell how to change the width of the product page? Link to comment Share on other sites More sharing options...
vekia Posted September 22, 2013 Share Posted September 22, 2013 in http://www.lovejewelrystore.com/themes/default/css/product.css change: #pb-left-column { float: left; margin-left: 14px; width: 255px; } to: #pb-left-column { float: left; margin-left: 14px; width: 477px; } i increased width param to 477px 1 Link to comment Share on other sites More sharing options...
zerryxu Posted September 22, 2013 Author Share Posted September 22, 2013 in http://www.lovejewelrystore.com/themes/default/css/product.css change: #pb-left-column { float: left; margin-left: 14px; width: 255px; } to: #pb-left-column { float: left; margin-left: 14px; width: 477px; } i increased width param to 477px I am very happy it is done, thank you for your patient, thank you very much Link to comment Share on other sites More sharing options...
vekia Posted September 22, 2013 Share Posted September 22, 2013 you're welcome im glad that i could help you in this case im going to mark this topic as solved if you need any other help - feel free to create new threads with your questions! best regards 1 Link to comment Share on other sites More sharing options...
Recommended Posts