Jump to content

kiran4prestashop

Members
  • Posts

    20
  • Joined

  • Last visited

Profile Information

  • Location
    Hyderabad
  • Activity
    Developer

Recent Profile Visitors

1,629,676 profile views

kiran4prestashop's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hi All, I have created multiple stores using multistore option. And also added different categories and products in each store. And also created different employees to maintain different stores with limited permissions(Similar to Logistician). Here my requirement is I need to give option like adding cart rules/price rules to employee who is responsible for the respected store(This employee can do this after login with his/her credentials). For this i have changed the permission and now he is able to add cart rules. But this cart rule is displaying other stores also and he is not having option to Restrict the Cart rule for the perticular store. And this option is having only admin(Super Admin) like Admin can restrict the cart rule for each store while creating the Cart Rule. But my doubt is why it is not restricting when employee created Cart Rule. Because I am selecting respected store while I am creating an employee, so cart rule should be limited to the perticular store to whome he belongs to. And it is working for when he creates categories and products, those limiting the perticular store and why the samething is not happening for Cart Rules. I need help. Thanks inadvance...
  2. Hi All, I have created multiple stores using multistore option. And also added different categories and products in each store. And also created different employees to maintain different stores with limited permissions(Similar to Logistician). Here my requirement is I need to give option like adding cart rules/price rules to employee who is responsible for the respected store(This employee can do this after login with his/her credentials). For this i have changed the permission and now he is able to add cart rules. But this cart rule is displaying other stores also and he is not having option to Restrict the Cart rule for the perticular store. And this option is having only admin(Super Admin) like Admin can restrict the cart rule for each store while creating the Cart Rule. But my doubt is why it is not restricting when employee created Cart Rule. Because I am selecting respected store while I am creating an employee, so cart rule should be limited to the perticular store to whome he belongs to. And it is working for when he creates categories and products, those limiting the perticular store and why the samething is not happening for Cart Rules. I need help. Thanks inadvance...
  3. Hi Friends, Even i am also having the same issue, actually category block is displaying in all pages except list of products page. If i open any category then products are displaying related to the category which i clicked but left side categories are not displaying. Even I am having the issue when I opened any subcategory page. Thanks Inadvance...
  4. Hi All, I have configured multi store in my localmachine Iand moved to Godaddy windows server. After moving the project i faced issue of SEO friendly URLs not working. For this i have configured web.config as attachment, please check once. And later it got worked. But when i tried to open my sub store it is not working and showing an issue like themes and images not working. Here I am sending links.. Main Store: http://pamtenlabs.com/indiasquare-php Sub Store: http://pamtenlabs.com/indiasquare-php/pamtenstore1 Please help in this. Thanks Inadvance... web.txt
  5. Hi Elpatron thanks for your reply. If we are created multistore for each country means, there is a chance to upload same products multiple times. I am sayiong because if there is product which is commonly available in US and UK means needs to add in both stores US and UK. But actually what i am thinking is while adding a product i want to give an option coutries list also, by this admin can select option to choose countries also. So i need to add code manually to work it. Please help me. Regards: Kiran
  6. Hi Thanks for your replay. Actually you are saying that we need to display products only for registered user? If so what i have to display in the home page of the site. Because as per your view, logic will works only users who are loged in but not before because we are differentiating products depends on user groups. Actually i want to display only country wise related products in each country not all the products in each country. So please help me. Regards: Kiran
  7. Hi All, Actually my requirement is to add store multiple values in database table with comma separated. Like there is a dropdown for countries list and i want to add a product for different countries while adding/editing a product from admin side. Please help me. Thanks Inadvance.. Regards: Kiran
  8. Actually my requirement is to add one countries dropdown field for each product Is there anybody know how to code for adding one extra field in product adding/editing page and adding that field content to database when product is submitted. I have tried myself but i am getting the below error. [PrestaShopDatabaseException] Unknown column 'countries' in 'field list'INSERT INTO `ps_product_lang` (`id_product`, `meta_description`, `meta_keywords`, `meta_title`, `countries`, `link_rewrite`, `name`, `description`, `description_short`, `available_now`, `available_later`, `id_lang`, `id_shop`) VALUES ('10', '', '', '', 'In', 'ipod-nano123', 'iPod Nano123', 'dadadasda', 'asdasda', '', '', '1', '1') at line 605 in file classes/db/Db.php I have the "countries" field in ps_product_lang but still it is saying that unknown column. I have added one extra field at admin products adding/editing page and i am trying to update that in Product.php in classes. /** @var enum Product countries */ public $countries; 'countries' => array('type' => self::TYPE_STRING, 'lang' => true, 'validate' => 'isString'), Here countries is a dropdown selections for selecting list of countries.. <table> <td class="col-left"><label>Countries</label></td> <td> <select name="countries" id="countries" size="2" multiple="multiple"> <option value="All">All</option> <option value="In">India</option> <option value="US">United States</option> <option value="UK">United Kingdom</option> </select> </td> </table> In seo.tpl page. Is the way i am coded correct please let me know Please see the below link. http://www.prestasho...%E2%84%A2-1531/ Please help me. Thanks Inadvance..
  9. Actually my requirement is to add one countries field for each product and i have sent you the code for which i have used for extra field, I am using Prestashop 1.5.3.1 version. Do you know how to code for adding one extra field in product adding/editing page and adding that field content to database when product is submitted. I have tried myself but i am getting the below error. [PrestaShopDatabaseException] Unknown column 'countries' in 'field list'INSERT INTO `ps_product_lang` (`id_product`, `meta_description`, `meta_keywords`, `meta_title`, `countries`, `link_rewrite`, `name`, `description`, `description_short`, `available_now`, `available_later`, `id_lang`, `id_shop`) VALUES ('10', '', '', '', 'In', 'ipod-nano123', 'iPod Nano123', 'dadadasda', 'asdasda', '', '', '1', '1') at line 605 in file classes/db/Db.php I have the "countries" field in ps_product_lang but still it is saying that unknown column. I have added one extra field at admin products adding/editing page and i am trying to update that in Product.php in classes. /** @var enum Product countries */ public $countries; 'countries' => array('type' => self::TYPE_STRING, 'lang' => true, 'validate' => 'isString'), Here countries is a dropdown selections for selecting list of countries.. <table> <td class="col-left"><label>Countries</label></td> <td> <select name="countries" id="countries" size="2" multiple="multiple"> <option value="All">All</option> <option value="In">India</option> <option value="US">United States</option> <option value="UK">United Kingdom</option> </select> </td> </table> In seo.tpl page. Is the way i am coded correct please let me know Please see the below link. http://www.prestashop.com/forums/topic/218266-cant-add-a-new-product-in-prestashop%E2%84%A2-1531/ Please help me. Thanks Inadvance..
  10. Actually my requirement is to add one countries field for each product and i have sent you the code for which i have used for extra fiel, i think there is no relation between versions. And the version which i am using is downloaded from the prestashop official portal only and it is using by many people. Do you know how to code for adding one extra field in product adding/editing page and adding that field content to database when product is submitted.
  11. I have added one field at admin products adding page and i am trying to update that in Product.php in classes. /** @var enum Product countries */ public $countries; 'countries' => array('type' => self::TYPE_STRING, 'lang' => true, 'validate' => 'isString'), Here countries is a dropdown selections for selecting list of countries.. <table> <td class="col-left"><label>Countries</label></td> <td> <select name="countries" id="countries" size="2" multiple="multiple"> <option value="All">All</option> <option value="In">India</option> <option value="US">United States</option> <option value="UK">United Kingdom</option> </select> </td> </table> In seo.tpl page. Is the way i am coded correct please let me know Don't know but i found this version in prestashop official site only. http://www.prestashop.com/
  12. Hi Elpatron, Actually i am having the same problem like same error [PrestaShopDatabaseException] Unknown column 'countries' in 'field list'INSERT INTO `ps_product_lang` (`id_product`, `meta_description`, `meta_keywords`, `meta_title`, `countries`, `link_rewrite`, `name`, `description`, `description_short`, `available_now`, `available_later`, `id_lang`, `id_shop`) VALUES ('10', '', '', '', 'In', 'ipod-nano123', 'iPod Nano123', 'dadadasda', 'asdasda', '', '', '1', '1') at line 605 in file classes/db/Db.php I have the "countries" field in ps_product_lang but still it is saying that unknown column. Please help me Thanks Inadvance..
×
×
  • Create New...