Search the Community
Showing results for tags 'Group'.
-
I have several different products without combinations that are the 'same' but with some little differences , I mean that in DB the products are different but they are really the same product but with different capacity, size, color, price, ... The optimum way to group them will be using one product and combinations, but this is not possible to do because I have many products and they are imported automatically from another third parti site. So I would like to know if already exists an addon or module that is capable to do this, or if it should be needed to create a custom development to be able to get that. The idea is to have in DB a couple of fields that group the products and indicate which product to show on view. The places where we would like to do this is when listing products and over the product page. For instance, imagine we have 3 products that they all are a soda but with one with 20cl and 1 euro price, another with 50cl and 2 euro price and another with 1 liter and 3 euro price. When viewing products in a list should appear only 1 instead of 3 with the images and caracteristics of the chosen one according to a DB field. And when clicking to the product, will appear the product page with the chosen one selected and the possibility to choose the other 2 in a select being able to add them into shopping cart. Does exist an addon or module capable to do this? If not, is it viable to develop one? Will be lost SEO? Thanks in advanced.
-
Hola amigos, Tengo un problema con prestashop 1.7. Actualmente tengo varias categorías con subcategorías dentro de una. Cuando creo un grupo de clientes nuevo, este grupo no se habilita "por defecto" dentro de estas categorías y para habilitarlo, tengo que ir 1 en 1 para darle visibilidad. ¿Hay alguna opción más rápida para habilitar esto? Esto es muy desastroso tener que recorrerme 200 categorías y habilitar una a una.
-
Bonjour, J'ai un bug concernant les remises par groupe de client spécifique. Pour un groupe de client appelé "TARIF INTEGRATOR" Bug N°1 : Lorsque j'attribue une "Réduction sur une catégorie" sur ce groupe "TARIF INTEGRATOR" ou un autre groupe spécifique, la remise s'applique sur le site pour tout le monde (visiteur, client.....) Bug N°2 : Lorsque dans une fiche produit, je veux ajouter un prix spécifique pour un groupe de client, même problème la remise s'applique à tous... Version de PrestaShop : 1.7.6.1 URL de la boutique : http://immersive-display.com/ Thème actif : JHP_ps_electronics_ericssion_1016 Version de PHP : 7.0.33 cordialement
- 1 reply
-
- prestashop 1.7.6.1
- réductions
-
(and 1 more)
Tagged with:
-
Hello everyone, I have a problem regarding categories and groups of customers. In a "Pack" category, I want to display two products (1 and 2): product 1 for a customer group (A) and the other product (2) for another customer group (B). Group A should not visualize product 2 and Group B should not see product 1. Only a product must be visible when the customer clicks on the "Pack" category. When I set up Product 1, I only associate the category "Category for Group A", which is a sub-category of "Pack". In the same way, I associate only the category "Category for group B", which is a subcategory of "Pack" for product 2. The category "Category for group A" is only visible by customer group A, and in the same way "Category for Group B" is only visible for Group B. The category "Pack" is visible to both groups. I do not associate the category "Pack" with both products, otherwise both groups will see the two products. However, neither group views a product when I am on the category page "Pack". It would seem that the products associated with one of the subcategories are not displayed if the product is not associated with the parent category (here "Pack"). Do you have a solution (or advices) to this problem?
-
Hi, We need to show or hide clients by group in backoffice. For example, if we log in like admin we see all clients, but if we change our account we only see certain group of clients. We check in Advanced parameters > Team > Permits, but we found nothing. Any idea if this is possible? We have prestashop 1.7.5.2 Thanks.
-
Hello, I need your help, my problem is that I want to show in product page the Basic price and the Specific price of the product (Im using Prestashop 1.7.5.1), in exemple : my product price is : 30 € and I have one group that can buy the product at 20 € (I added it in spécific price) When the user is not connected, the price shown is 30€, and when connected, the price shown for users from the group is 20 €. but I want to show for the users of the group the original price of the product (30€) and the specific price (20€). how can I do this in "product-prices.tpl" ? Thanks in advance for your help
-
Hello guys im having a little problem that i cant find a solution to it: We have special clients with special pricess and we dont want to show them the disscount. For expample if i add a special price to one client it shows the original price cutted with a line and than shows the disscounted price. Is it posible to show only the disscounted price for the group-(The price without tax) without seeing the disscount and the original price. .
-
Hallo zusammen Prestashop Version: 1.7.4.3 Unter "Benutzerdefinierte Einstellungen" --> "Gruppen" kann man eine Gruppe erstellen und Mitglieder hinzufügen. Diese Gruppe kann man so einrichten, dass nur sie Rabatte haben. Nun wird wenn man sich mit einem Benutzer dieser Gruppe anmeldet, überall schon der Preis inkl. Rabatt angezeigt. Unser Kunde möchte jedoch, dass der Preis inkl. Rabatt erst im Warenkorb zu sehen ist. Kann mir da jemand weiterhelfen? Ich hoffe ich habe mein Problem verständlich geschildert. Vielen Dank im Voraus. Grüsse Visar
-
Is there any way to restrict employees (for example representatives in differen countries) to different group of customers to create orders for them in the backoffice?
-
Hello! Customers' groups in my store have different discounts for different categories (set in groups' properties). Now I want to add some quantity discounts for certain products (e.g. if customer gets more than 30 pcs of product, the price for one piece changes to some specific value). The thing is... the group reductions are still applied to these lowered prices. And I don't want them to. I tried editting: - Product.php class (around line 3160) changed this: // Group reduction if ($use_group_reduction) { $reduction_from_category = GroupReduction::getValueForProduct($id_product, $id_group); if ($reduction_from_category !== false) { $group_reduction = $price * (float)$reduction_from_category; } else { // apply group reduction if there is no group reduction for this category $group_reduction = (($reduc = Group::getReductionByIdGroup($id_group)) != 0) ? ($price * $reduc / 100) : 0; } $price -= $group_reduction; } to that: // Group reduction if ($quantity_discount != 0 || $specific_price_reduction) { } else { if ($use_group_reduction) { $reduction_from_category = GroupReduction::getValueForProduct($id_product, $id_group); if ($reduction_from_category !== false) { $group_reduction = $price * (float)$reduction_from_category; } else { // apply group reduction if there is no group reduction for this category $group_reduction = (($reduc = Group::getReductionByIdGroup($id_group)) != 0) ? ($price * $reduc / 100) : 0; } $price -= $group_reduction; } } - ProductController.php controller (around line 950) changed this: $group_reduction = GroupReduction::getValueForProduct($this->product->id, (int) Group::getCurrent()->id); if ($group_reduction === false) { $group_reduction = Group::getReduction((int) $this->context->cookie->id_customer) / 100; } $product_full['customer_group_discount'] = $group_reduction; to that: if ($quantity_discounts) { $group_reduction = 0; } else { $group_reduction = GroupReduction::getValueForProduct($this->product->id, (int) Group::getCurrent()->id); if ($group_reduction === false) { $group_reduction = Group::getReduction((int) $this->context->cookie->id_customer) / 100; } } $product_full['customer_group_discount'] = $group_reduction; but none of these operations seem to work. How can I fix my problem? Thanks for help
-
Hey, So here is my question. I'm currently connecting our ERP system to PrestaShop threw modules. I was able to transfert our products, customers and I'm able to change the order id state. Now I'm having a bit of struggle with the Customer groups(create and update) and modifying the quantities of an order(the reason for this is some of our clients sell products that are weight variable so if the client asks for 1kg but we can only sell that item with 900g then we need to change it in the order). As anyone ever done this or can link me to a topic that talks about this? Thank you in advance.
-
Hello Is there any chance to program when customer has checked newsletter then is in customer group 3 f.e. and when hasn´t is in group 2 f.e. (automatic)? Sorry for my english Peter
-
Hello First of all, sorry for my English, I try to explain my question the best I can. I want to program a solution, when customer check checkbox "partner offers" he/she will be group 3 in customer group and when NOT, he/she will be in customer 2 f.e. It is a possible? Thank you for you help. Peter from Slovakia PS 1.6
-
Hello, I would be so grateful if you could help me for a moment. I´m looking for the file with is called when I select a new group for a customer and I press "Save" button. That´s because I would like to automatically send an email to the customer notifying of the change. Thank you very much, Best regards.
-
Hi, My shop has two groups, one for B2C (regular customers) and one for B2B (shops). B2C I don't want out of stock products to be ordered. B2B I want out of stock products to be pre-ordered. Do you know if there is a way or a plugin to allow orders on out of stock products only for a group? Thanks in advance
-
- out of stock
- group
-
(and 1 more)
Tagged with:
-
Hi Zusammen, ich hoffe ihr könnt mir helfen. Google konnte es bisher nicht Ich möchte in meinem Shop Produkte anbieten, die nur für bestimmte Kundengruppen sichtbar sind. Ich habe eine Sub-Kategorie ("Special Edition") angelegt und diese nur einer Kundengruppe ("Test") zugewiesen. Ich habe Produkte angelegt die nur dieser Kategorie zugewiesen sind. Die "Special Edition" Kategorie wird nun auch nur den "Test" Kunden angezeigt. Aber alle Produkte, die nur in der exklusiven Special Edition Kategorie angezeigt werden sollen, werden nun auch in der Listview der Elternkategorie (Merchandise) für alle sichtbar angezeigt. Klickt nun jemand auf ein Produkt, bekommt er die Meldung, dass er keinen Zugriff auf das Produkt hat. Gibt es eine Möglichkeit zu verhindern, dass die Produkte gar nicht erst angezeigt werden?
- 2 replies
-
- exklusive produkte
- kundengruppen zugang
-
(and 2 more)
Tagged with:
-
I got 2 products in my shop that cannot be seen by customers who are in group 'customers' . If this customer is in groep 'visitors', the products are visible. The 2 specific products are in the same category as other products that are visible by customers in each group. So I was thinking, this should be a 'product-setting' . But I cannot find a product setting which will define in What group a product is shown. So its a bug?
-
Hi, Version used PS: 1.6.1.17 I notice a strange behavior with the method Group::getCurrent() in core class GroupCore that retrieve the current default group of the user context. To reproduce the issue : Create a category, and assign to only default group (means only users with account) Browse the boutique as unidentified user, category doesn't appear in menu => good Browse the boutique as identified user, category appears in menu => good Disconnect and browse the boutique as unidentified user, category doesn't appear in menu => good Now go directly to url of the category, the page is displayed => bad (according to default group only users with account should access this category, we should have an error message: you cannot access this category) When I analyse the method in class th problem comes from this part of code : if (!$groups[$id_group]->isAssociatedToShop(Context::getContext()->shop->id)) { $id_group = (int)$ps_customer_group; if (!isset($groups[$id_group])) { $groups[$id_group] = new Group($id_group); } Before this test, the $id_group is well assigned to Configuration::get('PS_UNIDENTIFIED_GROUP'). Why this test force to Configuration::get('PS_CUSTOMER_GROUP') ? I think it's a bug isn't it ? John
-
Hi all, we have New Products Block on 1.63. We noticed that on the homepage that products from all categories are being shown. We have private Groups attached to private Categories, so we don't want products in these categories to show up for the general public. How to prevent this?
-
- new products block
- group
-
(and 1 more)
Tagged with:
-
Hello, It is possible to change addresses of all group customers to one specific address ? for example I have 4 customers with different addresses and when they associate in one group, they will have only 1 specific address ? And address can be pre-created in database with specific ID but how to connect it to the group and in order/checkout rewrite all customer addresses to the one associated with group ID ? Thank you.
-
Hi, I am building a website for a jewelry company and my attributes are not working. When I add a new attribute group to the site through the back office, it is not shown up in either the combination generator or in the "add attribute" group list. I seem to remember having this issue before and finding a fix online but I cannot for the life of me figure it out this time. The prestashop version is 1.4.10.0 At current there is a Size Attribute Group which is working fine but when I add another group for Colour or Stone Type they do not show in the drop down box on the Add Attribute page. Please Help! Thanks!
-
Hello everyone, I'm looking a way to make my life easier when a new user registered on my website. I want when a new user is creating an account on my website the system will automatically add him on the proper group. Now the new customer is waiting my approve in order to use the website. I'made this because i have to check his address and add him in the appropriate group. This process now i want to make it to be automatically. For example if the customer contains the keyword "king" in his address then add him on the Group A and if his address contains the word "queen" add him on the Group B. Does anyone know how i can do it? Thank you
- 6 replies
-
- registration
- customer
-
(and 2 more)
Tagged with:
-
I recently upgraded to 1.6.1.1 from 1.5 and enabled multistore. Problem: For the new stores, certain payment methods (bankwire, check) are not appearing at checkout. These modules are authorised for specific customer groups only. For the original (default) shop, the payment methods appear correctly for customers in the specific groups. When I edit the customer groups, I see that the two payment modules are enabled for these customer groups. I have also checked the database, and confirm that the access is correctly set for each customer group/module/shop combo. Any ideas why these payment methods are not showing for the new shops?
-
Dear all, Would it be possible to automatically add a new customer to a group, when (s)he registers, depending on the value of a query string in the URL that (s)he used to reach prestashop ? In other words, I would like to be able to give URLs such as: domaine.tld/?group=foo domaine.tld/?group=bar Let the customer browse the website, eventually fill the cart and when (s)he registers, get this "group" value back and automatically add the customer to the corresponding prestashop group. Thank you in advance for you precious help ! Marc