Jump to content

share my my prestashop tips


Recommended Posts

below is my prestashop experiences when build online store.
prestashop is a very excellent b2c software, which is open source and free.


how to modify prestashop's TITLE, DESCRIPTOIN,KEYWORD
In Header.tpl you can modify homepage description
Is in table product_lang and category_lang you can modify title,description, keyword.
In prestashop\classes\Tools.php getMetaTags() you can modidy prestashop's title

how to modify select options length.
you can define yourself attribute group,but if the optins length is long. which can’t disply well under IE, you can modify it in prestashop\themes\prestashop\css\global.css
modify #primary_block form#buy_block label,#primary_block form#buy_block select{ display:block; width:47%; float:left;
}
to
#primary_block form#buy_block label,#primary_block form#buy_block{ display:block; float:left;
}
#primary_block form#buy_block select{ display:block; width:80%; float:left;
}

change button color, from grey to green:
you can modify
<input value="{l s='Search' mod='blocksearch'}"mso-bidi-font-weight: normal">button" />
to: <input value="{l s='Search' mod='blocksearch'}"mso-bidi-font-weight: normal">exclusive" />

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...