Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Multi-Stores Multiple Shops Support


hobbzilla

Recommended Posts

I have a client that has a bunch (50 or so) domain names that he wants to point to the same store.

 

So that when he adds products, changes prices etc - it only needs to be done once.

 

Does this Multi-store - multi shop contribution work this way for completely different domain names ?

 

Or only for subdirs ... like this ?

 

www.domain1.com/store -------------www.domain2.com/store (same store)

 

vs

 

www.domain.com/store1 ----------------www.domain.com/store2

 

all domains are on the same dedicated server if that matters.

 

thanks

Donna

==========

DBK Web Development

www.DBKWebDevelopment.com

Link to comment
Share on other sites

okay, after reading every single relevant post concerning logging in and the configure.php file... I still haven't figured this one out.

 

Like others, when I attempt to login using the multi-stores contribution, I get locked in a loop.

 

Here's the facts:

 

After logging in, the following URL is displayed in the browser... http://www.xxxdomainxxx.com/members/admin/...bers%2Fadmin%2F

 

When mousing over the Administration link the following URL is displayed in the status bar...

http://www.xxxdomainxxx.com/members/admin/...f68a82d36723b68

 

When mousing over the Online Catalog link the following URL is displayed in the status bar...

http://www.xxxdomainxxx.com/members/

 

here is my configure.php file with the domain XXXDOMAINXXX in place of the domain and XXXUSERXXX in place of the /user/ in the actual paths.

 

<?php
/*
$Id: configure.php,v 1.14 2003/02/21 16:55:24 dgw_ Exp $

osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com

Copyright (c) 2002 osCommerce

Released under the GNU General Public License
*/

// define our webserver variables
// FS = Filesystem (physical)
// WS = Webserver (virtual)
define('HTTP_SERVER', 'http://www.xxxdomainxxx.com/members'); // eg, http://localhost or - https://localhost should not be NULL for productive servers
define('HTTP_CATALOG_SERVER', 'http://www.xxxdomainxxx.com/members');
define('HTTPS_CATALOG_SERVER', 'https://www.xxxdomainxxx.com/members');
define('ENABLE_SSL_CATALOG', true); // secure webserver for catalog module
define('DIR_FS_DOCUMENT_ROOT', '/home/xxxuserxxx/public_html/members'); // where your pages are located on the server. if $DOCUMENT_ROOT doesnt suit you, replace with your local path. (eg, /usr/local/apache/htdocs)
define('DIR_WS_ADMIN', '/admin/');
define('DIR_FS_ADMIN', DIR_FS_DOCUMENT_ROOT . DIR_WS_ADMIN);
define('DIR_WS_CATALOG', '/');
define('DIR_FS_CATALOG', DIR_FS_DOCUMENT_ROOT . DIR_WS_CATALOG);
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
define('DIR_WS_CATALOG_IMAGES', DIR_WS_CATALOG . 'images/');
define('DIR_WS_INCLUDES', 'includes/');
define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');
define('DIR_WS_CATALOG_LANGUAGES', DIR_WS_CATALOG . 'includes/languages/');
define('DIR_FS_CATALOG_LANGUAGES', DIR_FS_CATALOG . 'includes/languages/');
define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/');
define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/');
define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/');



// define our database connection
define('DB_SERVER', 'localhost'); // eg, localhost - should not be empty for productive servers
define('DB_SERVER_USERNAME', 'mydbusername');
define('DB_SERVER_PASSWORD', 'mydbpassword');
define('DB_DATABASE', 'mydatabase');
define('USE_PCONNECT', 'false'); // use persistent connections?
define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql'
?>

 

I'm going NUCKING FUTZ here!!! Can someone PLEASE, PLEASE, PLEASE help me get a handle on what's going on here?

 

Many thanks. You can rest assured that by assisting me with this little SNAFU... the gods will ensure that all of your children are born naked.

Link to comment
Share on other sites

Hi all,

 

I have a question about this contrib to see if it'll do what I am looking for. Basically my situation is this I have one shop www.domainname.com that I have been running for about 9 months now. I have created a subdomain that would basically be a copy of my www.domainname.com store. I would like my www.subdomain.domainname.com store to share the same database and if at all possible the same admin as the www.domainname.com store. But I'd just be happy if they would share just the same database. Does this contrib do that?

 

If it does do I follow the instructions I have listed below which basically just says you install this contrib on the first (original store).

 

The implementation plan is to take stock 2.2MS2 and overwrite all files in the contribution. So now you have an updated catalog & updated admin.

 

Simply take the updated catalog and copy it. Move it to another domain account or rename it if you are planing on using it on the same server

 

for example if you are using this to accomplish a distributor separation such as http://domain.com/europe http://domain.com/usa

 

You set the STORE_ID in each stores configuration table (you can open catalog/install/oscommerce.sql and copy the all the INSTALL INTO configuration and modify configuration to europe_configuration, etc. etc.)

 

i.e. europe_configuration, usa_configuration

 

The STORE_ID is not stored in TABLE_STORES, it is stored in the configuration table for the store in question. This is important. This is what allows you to have different shipping/payment options for each store.

 

Also of note is that the stores_url is currently not being used for and is for future use.

 

This contribution doesn't solve the problem of multiple sites the maintenence that ensues. That is where the planned template system comes in.

 

HTH

 

Thanks,

 

DefelRadar

Link to comment
Share on other sites

I have a client that has a bunch (50 or so) domain names that he wants to point to the same store.

 

So that when he adds products, changes prices etc - it only needs to be done once.

 

Does this Multi-store - multi shop contribution work this way for completely different domain names ?

 

Or only for subdirs ... like this ?

 

www.domain1.com/store -------------www.domain2.com/store (same store)

 

vs

 

www.domain.com/store1 ----------------www.domain.com/store2

 

all domains are on the same dedicated server if that matters.

 

thanks

Donna

==========

DBK Web Development

www.DBKWebDevelopment.com

 

 

It works both ways as long as you understand it requires different catalog's for each store. If you are wanting all 50 domains to point to the same store, and have a different look and feel, then you will have to have a different catalog installs, I'm sure with some effort you could use one of the templating systems and dynamically call which configuration table to use.

Link to comment
Share on other sites

okay, after reading every single relevant post concerning logging in and the configure.php file... I still haven't figured this one out.

 

Like others, when I attempt to login using the multi-stores contribution, I get locked in a loop.

 

Here's the facts:

 

After logging in, the following URL is displayed in the browser... http://www.xxxdomainxxx.com/members/admin/...bers%2Fadmin%2F

 

When mousing over the Administration link the following URL is displayed in the status bar...

http://www.xxxdomainxxx.com/members/admin/...f68a82d36723b68

 

When mousing over the Online Catalog link the following URL is displayed in the status bar...

http://www.xxxdomainxxx.com/members/

 

here is my configure.php file with the domain XXXDOMAINXXX in place of the domain and XXXUSERXXX in place of the /user/ in the actual paths.

Try this and report back:

 

...

define('HTTP_SERVER', 'http://www.xxxdomainxxx.com'); 
define('HTTP_CATALOG_SERVER', 'http://www.xxxdomainxxx.com');
define('HTTPS_CATALOG_SERVER', 'https://www.xxxdomainxxx.com');
define('ENABLE_SSL_CATALOG', true); // secure webserver for catalog module
define('DIR_FS_DOCUMENT_ROOT', '/home/xxxuserxxx/public_html/members/');
define('DIR_WS_ADMIN', '/members/admin/');
define('DIR_FS_ADMIN', '/home/xxxuserxxx/public_html/members/admin/');
define('DIR_WS_CATALOG', '/members/');
define('DIR_FS_CATALOG', '/home/xxxuserxxx/public_html/members/');
...

Link to comment
Share on other sites

Try this and report back:

 

...

define('HTTP_SERVER', 'http://www.xxxdomainxxx.com'); 
define('HTTP_CATALOG_SERVER', 'http://www.xxxdomainxxx.com');
define('HTTPS_CATALOG_SERVER', 'https://www.xxxdomainxxx.com');
define('ENABLE_SSL_CATALOG', true); // secure webserver for catalog module
define('DIR_FS_DOCUMENT_ROOT', '/home/xxxuserxxx/public_html/members/');
define('DIR_WS_ADMIN', '/members/admin/');
define('DIR_FS_ADMIN', '/home/xxxuserxxx/public_html/members/admin/');
define('DIR_WS_CATALOG', '/members/');
define('DIR_FS_CATALOG', '/home/xxxuserxxx/public_html/members/');
...

 

EUREKA, ZILLA!!!! IT WORKED!!!!! YOU ARE THE MAN!!!!!

 

I've never seen such an easy fix cause such a headache!!!

 

:blink: Many props on a great contribution!!!!

 

I'll go one better than thanks.... PM me w/ you contact info and I'll hook you up w/ a few freebies I'm going to be selling in my storefront!!! Just my way of giving back to someone who has created such a KILLER CONTRIBUTION!!!!!!!!!

 

:thumbsup:

Link to comment
Share on other sites

Customer Group Discounts by Percentage for M-S

 

Get it here: http://www.oscommerce.com/community/contributions,1730

 

This is not a full package but a single install.html file with needed code additons.

 

Allows Customer Groups to be based on % discount (or % increase with a negative (-) discount) upto (99.9)% discount and 999% increase (-999)% OR based on the pre-existing price-schedule. The Customer group cannot be both. When you create a customer group if you enter in anything in the % discount textbox, it will use that. If you want to use the price schedule for a group leave that field blank. You can switch back and forth between the customer group typ with the green/red button under admin->customer->customer groups

Link to comment
Share on other sites

Ryan, when you're going to inplant group discounts, will you use an existing contribution or will you do something new from scratch?

 

Will it be based on the on price schedule from the loaded version?

If it will be, I'm happy to give you some feedback regarding the layout (if you dont already know how you want it to be).

 

// Fredrik

 

 

Feedback is welcome now that this has been completed.

Link to comment
Share on other sites

Customer Group Discounts by Percentage for M-S

 

Get it here: http://www.oscommerce.com/community/contributions,1730

 

This is not a full package but a single install.html file with needed code additons.

Nice, but whatever hapened to "FIND", "ADD AFTER", and "REPLACE" :)

Either I'm stupid or the install file is a bit difficult.

I did not get it to work, I think I missed something in includes\classes\price_schedule.php. When I make a discount in admin and set it to be shown for all customers (visitors and logged in), it still shows the original price. Any idea?

 

Also, I think there is some ting wrong with the command for update the database. I'm not sure, bit I think

ALTER TABLE customers_groups ADD customers_groups_discount DEFAULT NULL varchar(4) AFTER customers_groups_type;

should be

ALTER TABLE customers_groups ADD customers_groups_discount varchar(4) DEFAULT NULL AFTER customers_groups_type;

 

// Fredrik

Link to comment
Share on other sites

I have just signed up for Paypal's website payments pro. I have created and installed their API as instructed in OSC. I have configured OSC as per the instructions. I have turned on paypal's API authorization for the account.

 

I have shared SSL and have OSC pointed to the right server for my hosts shared SSL.

 

As near as I can tell I have done everything as instructed to make website payments pro work with OSC and keep getting this error when trying to test with direct pay on the checkout screen (the Checkout with Paypal button).

 

 

MODULE_PAYMENT_PAYPAL_EC_TEXT_PROCESS_ERROR

 

 

And when I go through and try to process a credit card order with the shopping cart I keep getting this generic error...

 

There has been an error processing your credit card. Please try again.

 

 

There have been a few other posts concerning these errors and no response or resolution. Is the problem something very basic? Is private SSL required to make it work? I tried looking for some kind of error logs in the administration panel in OSC and couldn't find one.

 

 

I am new to OSC, please help

 

Thanks,

 

Jonathan

Link to comment
Share on other sites

Feedback is welcome now that this has been completed.

If you have a lot of products it is a bit difficult and extremely boring to update this thru the droplist in /admin/products_price_schedules.php.

It is also a bit tricky to seperate the products from each others.

 

My idea is to change the layout so it lists the products a bit more like it does when products are listed in catalog>categories/products.

So you can select a category and then all products are listed whit thier name, a thumbnail and original price and all the other stuff you need.

On each line there is also a form field to fill in the new price. And at the botom there is a update button.

 

So when you click the update button, all the products whit a value in the price field gets updated/inserted, and all the empty field does not get updated/inserted in the PRODUCTS_PRICE_SCHEDULES table in the database.

 

If it helps I will be happy to do something in photoshop so you can see what I have in mind, just let me know.

 

// Fredrik

Link to comment
Share on other sites

Hello all,

 

I installed the multi-store contrib (Multi Stores v1.7) quite easily ... (thank you for that Hobzilla !)

 

I'm trying now to install the Article Manager v1.2, and I was wondering if anyone has already done that ??

I actualy need some help :)

 

I installed it correctly on admin side, I actualy can add content.

My problem is on the public side as I can view my articles only on the default store.

 

Nothing works in my different stores ...

 

Thanks in advance !

Link to comment
Share on other sites

Hello all,

 

I installed the multi-store contrib (Multi Stores v1.7) quite easily ... (thank you for that Hobzilla !)

 

I'm trying now to install the Article Manager v1.2, and I was wondering if anyone has already done that ??

I actualy need some help :)

 

I installed it correctly on admin side, I actualy can add content.

My problem is on the public side as I can view my articles only on the default store.

 

Nothing works in my different stores ...

 

Thanks in advance !

Have you uploaded your modified code for the for the front store to the sub-shops?

 

// Fredrik

Link to comment
Share on other sites

Yes, I've done that for one of the shops to test ...

 

In the shop where I uploaded my files, I can view the articles box on the right column. But when I click on one the links (all, subject, new), I have a completly blank page

Edited by jodar
Link to comment
Share on other sites

Same problem as redrum I'm afriad...

 

Customer Group Discounts by Percentage for M-S

 

Get it here: http://www.oscommerce.com/community/contributions,1730

 

This is not a full package but a single install.html file with needed code additons.

 

 

This is my fourth attempt. Gone through it line by line. Just cant get the update to work.

 

Update instructions are just not clear enough.

 

Too many errors.

 

latest is

 

Parse error: parse error in /var/www/html/catalog/includes/classes/price_schedule.php on line 309

 

Fatal error: Cannot instantiate non-existent class: priceformatter in /var/www/html/catalog/includes/application_top.php on line 255

 

Simpler instructions would be appreciated.

Link to comment
Share on other sites

Same problem as redrum I'm afriad...

This is my fourth attempt. Gone through it line by line. Just cant get the update to work.

 

Update instructions are just not clear enough.

 

Too many errors.

 

latest is

 

Parse error: parse error in /var/www/html/catalog/includes/classes/price_schedule.php on line 309

 

Fatal error: Cannot instantiate non-existent class: priceformatter in /var/www/html/catalog/includes/application_top.php on line 255

 

Simpler instructions would be appreciated.

 

 

Instructions say L is modified code and R is original code.

If references to L=R means the new code is same as old code, L means new code..... where does R on its own come in ?? Does this line need to be delecte???

Admin green/red switches not working either.....

Very confused!

Link to comment
Share on other sites

Yes, I've done that for one of the shops to test ...

 

In the shop where I uploaded my files, I can view the articles box on the right column. But when I click on one the links (all, subject, new), I have a completly blank page

Ok, I just wanted to make sure you didn't miss that.

Unfortunately I can't help you any more in this issue, I haven't been into Article Manager at all.

 

// Fredrik

Link to comment
Share on other sites

hai, i am testing the contrib from hobbzilla. looks nice. i am testing it with 2 shops. now i was wondering, if it's possible that the admin of shop1 only administer the orders of the customers of shop1. and the admin of shop2 only administer the orders of the customers of shop2. but the admin of shop1 cannot administer the orders of the customers of shop1, and vice versa. i would be very thankful for any help.

 

TIA

 

Felidae (Lat.:family of cats)

Link to comment
Share on other sites

Hi guys.

 

After a year developping with other tools, I've just came back to PHP and OsCommerce a few days ago in order to figure out if they would be suitable for a problem I have in mind but haven't started developping yet.

 

I've been looking around the different contributions and forums for two days now, and I have found loads of usefull information on the possibilities of OsCommerce, but no real answer to my problem. I'm pretty confident that the "Multi-Stores Multiple Shops" contribution is very close to be that answer, but unfortunately I am not sure yet if that's the case.

 

There might be a place where this problem has been discussed already, but I'm still not used to find my way through all these contributions and forums so if any of you could help me here or redirect me to an existing thread that would be great.

 

Basically, my problem is that I need to run two stores with the same products but with a different design for each store and different prices for these products on these two stores. I've read in a post from 2004 that this was possible using the "Multi-Stores Multiple Shops" contribution and the "Special prices" core feature for each store, but nothing recent on that problem. The thing is that I would like to be able to have these "Special prices" available for special prices, not for standard prices on different stores.

 

I thought to use or modify the "Seperate price per customer 4.1" contribution to do that, but as far as I understood, this contribution will only display different prices when a user logs in to a store, not by default. I thought of the "Different Supplier prices for each Product" contribution then, but I don't know if it is possible to integrate this contribution with the "Multi-Stores Multiple Shops" contribution so that the prices for a specific supplier are shown in one store and the prices for a second supplier are shown in a second store.

 

Ultimately, the goal is to have one user that can add, remove or edit products, and assign the different prices for the different stores on the same control panel without having to use the "Special prices". Therefore the same products will be displayed on both stores with different prices, pretty much like if a company was manufacturing products that are then branded for different stores and sold at a different price for each stores.

 

Any idea how to do this? Is it something that the "Multi-Stores Multiple Shops" supports by default or together with another contribution?

 

Cheers

SEB

Link to comment
Share on other sites

Nice, but whatever hapened to "FIND", "ADD AFTER", and "REPLACE" :)

Either I'm stupid or the install file is a bit difficult.

I did not get it to work, I think I missed something in includes\classes\price_schedule.php. When I make a discount in admin and set it to be shown for all customers (visitors and logged in), it still shows the original price. Any idea?

 

Also, I think there is some ting wrong with the command for update the database. I'm not sure, bit I think

ALTER TABLE customers_groups ADD customers_groups_discount DEFAULT NULL varchar(4) AFTER customers_groups_type;

should be

ALTER TABLE customers_groups ADD customers_groups_discount varchar(4) DEFAULT NULL AFTER customers_groups_type;

 

// Fredrik

 

Updated for those of you that require the over-write-and-run approach versus manually editing files.

The sql statement has been updated in the instructions. Thanks.

 

 

I have just signed up for Paypal's website payments pro. I have created and installed their API as instructed in OSC. I have configured OSC as per the instructions. I have turned on paypal's API authorization for the account.

 

I have shared SSL and have OSC pointed to the right server for my hosts shared SSL.

 

As near as I can tell I have done everything as instructed to make website payments pro work with OSC and keep getting this error when trying to test with direct pay on the checkout screen (the Checkout with Paypal button).

MODULE_PAYMENT_PAYPAL_EC_TEXT_PROCESS_ERROR

And when I go through and try to process a credit card order with the shopping cart I keep getting this generic error...

 

There has been an error processing your credit card. Please try again.

There have been a few other posts concerning these errors and no response or resolution. Is the problem something very basic? Is private SSL required to make it work? I tried looking for some kind of error logs in the administration panel in OSC and couldn't find one.

I am new to OSC, please help

 

Thanks,

 

Jonathan

 

 

Jonathan,

 

Welcome to oscommerce! This is the support forum for Multi-Stores. If you are needing questions answered about another contribution, I would suggest either posting a new thread or adding a new entry to an existing support forum.

 

 

 

If you have a lot of products it is a bit difficult and extremely boring to update this thru the droplist in /admin/products_price_schedules.php.

It is also a bit tricky to seperate the products from each others.

 

My idea is to change the layout so it lists the products a bit more like it does when products are listed in catalog>categories/products.

So you can select a category and then all products are listed whit thier name, a thumbnail and original price and all the other stuff you need.

On each line there is also a form field to fill in the new price. And at the botom there is a update button.

 

So when you click the update button, all the products whit a value in the price field gets updated/inserted, and all the empty field does not get updated/inserted in the PRODUCTS_PRICE_SCHEDULES table in the database.

 

If it helps I will be happy to do something in photoshop so you can see what I have in mind, just let me know.

 

// Fredrik

 

I agree completely. Unforunately, I just lack the time to make the GUI as user-friendly and efficent and am more worried about functionality. I do try to balance both, but in my book form follows function. I am just one person. I would be more than happy to include any code in my releases that adds additional functionality or inhances visually or productivitity, etc. etc. This would be a great time for you to learn a little php and join the development community! I certainly hope I'm not coming across like a jack@$$.. just busy that's all! :D

Link to comment
Share on other sites

.. possible that the admin of shop1 only administer the orders of the customers of shop1. and the admin of shop2 only administer the orders of the customers of shop2..

 

There should be in the admin section under Administrators the ability to assign administrator's to specific stores.

 

I've been looking around the different contributions and forums for two days now, and I have found loads of usefull information on the possibilities of OsCommerce, but no real answer to my problem. I'm pretty confident that the "Multi-Stores Multiple Shops" contribution is very close to be that answer, but unfortunately I am not sure yet if that's the case.

 

There might be a place where this problem has been discussed already, but I'm still not used to find my way through all these contributions and forums so if any of you could help me here or redirect me to an existing thread that would be great.

 

Basically, my problem is that I need to run two stores with the same products but with a different design for each store and different prices for these products on these two stores. I've read in a post from 2004 that this was possible using the "Multi-Stores Multiple Shops" contribution and the "Special prices" core feature for each store, but nothing recent on that problem. The thing is that I would like to be able to have these "Special prices" available for special prices, not for standard prices on different stores.

 

I thought to use or modify the "Seperate price per customer 4.1" contribution to do that, but as far as I understood, this contribution will only display different prices when a user logs in to a store, not by default. I thought of the "Different Supplier prices for each Product" contribution then, but I don't know if it is possible to integrate this contribution with the "Multi-Stores Multiple Shops" contribution so that the prices for a specific supplier are shown in one store and the prices for a second supplier are shown in a second store.

 

Ultimately, the goal is to have one user that can add, remove or edit products, and assign the different prices for the different stores on the same control panel without having to use the "Special prices". Therefore the same products will be displayed on both stores with different prices, pretty much like if a company was manufacturing products that are then branded for different stores and sold at a different price for each stores.

 

Any idea how to do this? Is it something that the "Multi-Stores Multiple Shops" supports by default or together with another contribution?

 

Cheers

SEB

 

Welcome back! I don't think any one contribution will ever be the end-all-be-all for all users. But hopefully M-S will fit the bill for most of your requirements. Yes you can use MS to have 2 stores running of the same catalog and database with different looks and feels. That is why I created it! And yes, using price_schedule's you can set up pricing based on stores, groups, and products. In addition you can have specials per store. (although not currently specials per store per group). All I can suggest is to setup a test site and start playing around. Good luck!

Link to comment
Share on other sites

I agree completely. Unforunately, I just lack the time to make the GUI as user-friendly and efficent and am more worried about functionality. I do try to balance both, but in my book form follows function. I am just one person. I would be more than happy to include any code in my releases that adds additional functionality or inhances visually or productivitity, etc. etc. This would be a great time for you to learn a little php and join the development community! I certainly hope I'm not coming across like a jack@$$.. just busy that's all! :D

Hey Hobbzilla, your'e not coming across like a jack@$$.. at all ;) You doing tremendous work with this contribution.

Acctually I have looked into this abit a while ago, but with no luck. But I will find the time and see if I can make any progress in this matter and work on my PHP skills (which could be usefull).

 

Btw, thanks for the last update.

 

// Fredrik

Link to comment
Share on other sites

Thank you hobbzilla. The new update files worked perfectly.

 

Just one problem ... (Maybe its me..I dont know how to set things up properly). Iv'e created groups, put customers in, and created price breaks in the price schedules. Everyone logging in sees their price breaks reletive to their group. Everything works. Brilliant.

 

BUT I ALSO WANT TO OFFER ADDITIONAL STANDARD PRICE BREAKS TO EVERYONE ELSE WHO JUST BROWSE THE SITE WITHOUT LOGGING IN. How can I do that ? Is there a special customer group i need to create for the general public with a price break BOX visible to everyone in the product info?

 

Thanks for any advice.

 

Best regards.

Link to comment
Share on other sites

Thank you hobbzilla. The new update files worked perfectly.

 

Just one problem ... (Maybe its me..I dont know how to set things up properly). Iv'e created groups, put customers in, and created price breaks in the price schedules. Everyone logging in sees their price breaks reletive to their group. Everything works. Brilliant.

 

BUT I ALSO WANT TO OFFER ADDITIONAL STANDARD PRICE BREAKS TO EVERYONE ELSE WHO JUST BROWSE THE SITE WITHOUT LOGGING IN. How can I do that ? Is there a special customer group i need to create for the general public with a price break BOX visible to everyone in the product info?

 

Thanks for any advice.

 

Best regards.

 

Just to make sure I understand you correctly. You have product "widget" that has a price of $100. You want special pricing for widget to be $85. So you create a customer group 'special' and using price schedules you assign widget for some_store for group special to be 85. You assign specific customers to special. When the log in they see $85. It works fine... BUT before anyone logs in, you want them to see a different price than $100 ??

 

Why not just set the price of the product up to that price you want them to see? Perhaps that is too simple...

 

Oh well... you should be able to do this by setting the visitor pricing group option under Admin->Configuration->Customer Details.

 

Enjoy!

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...