Multi-Stores Multiple Shops Support
#1521
Posted 01 December 2010, 15:19
I'm newbie here. I appreciate your help to me..
#1522
Posted 10 December 2010, 20:41
Is it possible to chance the product details per shop?
The same product has an other name and/or description on site1 then site2 ?
And still working with the same stock?
Thx!
#1523
Posted 11 December 2010, 14:22
Regard
#1524
Posted 13 December 2010, 20:07
stubbsy, on 29 November 2010, 09:59, said:
does anyone know how to change the amount of time you can be idle before you are logged out of the admin?
Thanks
Dave
I believe the answer might be in the admin add-on forums, I remember reading it somewhere.
My quest to make RC2a & Multi-store work together, click below:
http://forums.oscommerce.com/topic/349161-multi-store-with-rc2a/page__p__1459234#entry1459234
#1525
Posted 13 December 2010, 20:16
ninjakip, on 10 December 2010, 20:41, said:
Is it possible to chance the product details per shop?
The same product has an other name and/or description on site1 then site2 ?
And still working with the same stock?
Thx!
It will not work with same stock. You can only choose which store(site) the product would be active.
To work with different names/descriptions, you will have to create a copy of original product.
But you will have to maintain "double-copied" products.
Example:
-- apple = [x]site1, [x]site2, [ ]site3
-- appleZ = [ ]site1, [ ]site2, [x]site3
My quest to make RC2a & Multi-store work together, click below:
http://forums.oscommerce.com/topic/349161-multi-store-with-rc2a/page__p__1459234#entry1459234
#1526
Posted 13 December 2010, 20:26
ogwinilo, on 11 December 2010, 14:22, said:
Regard
I have not used SEO or FCK.
It may have to do with (store_id = 1, store_id = 2, etc....) You probably need to modify SEO or FCK code to accomodate the multiple sites?
Check sonic.trip's modification for his "Report" add-on, I think it's on page 74 of this forum.
My quest to make RC2a & Multi-store work together, click below:
http://forums.oscommerce.com/topic/349161-multi-store-with-rc2a/page__p__1459234#entry1459234
#1527
Posted 14 December 2010, 08:44
sputniknet, on 13 December 2010, 20:26, said:
It may have to do with (store_id = 1, store_id = 2, etc....) You probably need to modify SEO or FCK code to accomodate the multiple sites?
Check sonic.trip's modification for his "Report" add-on, I think it's on page 74 of this forum.
#1529
Posted 27 January 2011, 11:08
I kind of posted this yesterday but in the wrong thread
I have found that the 'Enable/Disable store to ALL sub-categories and sub-products?' doesn't work if a product is linked to more than one category.
It will update all the categories to add them to another store but the products remain enabled to the store that it was originally assigned to. It works fine if the products in the category arent linked to another category.
I've been looking through the code in categories and this code appears to be the culprit but I cant see whats wrong
//rmh M-S_multi-stores begin
case 'category_to_store':
if ($admin_allowed_stores[0] == '*' || in_array($current_category_id, tep_get_allowed_categories()) ) {
$heading[] = array('text' => '<b>' . TEXT_INFO_HEADING_CATEGORY_TO_STORE . '</b>');
$contents = array('form' => tep_draw_form('categories_to_store', FILENAME_CATEGORIES, 'action=category_to_stores_confirm&cPath=' . $cPath) . tep_draw_hidden_field('categories_id', $cInfo->categories_id));
$contents[] = array('text' => sprintf(TEXT_CATEGORIES_TO_STORE, $cInfo->categories_name));
$stores_query_raw = "select stores_id, stores_name from " . TABLE_STORES . ($admin_allowed_stores[0] == '*' ? " " : " where stores_id in(" . implode(',' , $admin_allowed_stores) . ") ") . "order by stores_id";
$stores_query = tep_db_query($stores_query_raw);
while ($stores = tep_db_fetch_array($stores_query)) {
$categories_to_stores_query_raw = "select stores_id from " . TABLE_CATEGORIES_TO_STORES . " where stores_id = '" . $stores['stores_id'] . "' and categories_id ='" . $cID . "'";
$categories_to_stores_query = tep_db_query($categories_to_stores_query_raw);
$categories_to_stores = tep_db_fetch_array($categories_to_stores_query);
if ($categories_to_stores['stores_id'] == $stores['stores_id']) {
$contents[] = array('text' => tep_draw_checkbox_field('stores_id[]', $stores['stores_id'], 'true') . ' ' . $stores['stores_name']);
} else {
$contents[] = array('text' => tep_draw_checkbox_field('stores_id[]', $stores['stores_id']) . ' ' . $stores['stores_name']);
}
}
if ($login_id == 1) $contents[] = array('text' => '<br>' . tep_draw_checkbox_field('rolldown_store') . ' ' . TEXT_ROLLDOWN_STORE);
$contents[] = array('align' => 'center', 'text' => '<br>' . tep_image_submit('button_save.gif', IMAGE_SAVE) . ' <a href="' . tep_href_link(FILENAME_CATEGORIES, 'cPath=' . $cPath . '&cID=' . $cInfo->categories_id) . '">' . tep_image_button('button_cancel.gif', IMAGE_CANCEL) . '</a>');
}
break;
Any ideas?
Thanks
Dave
#1530
Posted 31 January 2011, 23:27
Thanks
#1531
Posted 04 February 2011, 17:54
How do I add a new shop? And one of my shops doesn't have a left-hand navigation, anyone know a reason for that?
Thanks
#1532
Posted 04 February 2011, 20:43
#1533
Posted 06 February 2011, 00:33
#1534
Posted 10 February 2011, 20:03
what seo url addon is anyone using?
The one im using seems to have issues with products linked from one store to another in that the URL it gives on the store it was copied to is the url that the product is in in the original store.
e.g the original path for the product is
store1.com/a1/a2/a3/product
then it is copied to another folder in store2 which is
store2.com/b1/b2/b3/product
but the url when the product is viewed on store2 is
store2.com/a1/a2/a3/product
so the 2 are getting mixed up
anyone ever have the same issues?
cheers
Dave
#1535
Posted 15 March 2011, 12:10
anyone is using MultiStore Multishop with 2.3 Osc installation?
I'm planning to use it for a new multistore shop, but I wanna try it using 2.3 instead of 2.2?
Hints? Tricks?
Thanx in advance
Linus
#1536
Posted 10 April 2011, 15:36
I am looking to do same as you to use with 2.3.1
I am will to pay for some to do this for me
any out there will to get me quote please
regards
steve
#1537
Posted 07 September 2011, 21:16
Been busy. But I will try to check this forum page more often.
Remember, your OTHER sites can look totally different than your main site.
Certain features on ONE site, you may not want on another site, etc.....
But keep in mind your checkout pages are consistent.
Example:
- main site = all it shows is links to your other webstore sites
- site #1 = clothes
- site #2 = shoes
- site #3 = school supplies
- site #4 = jewelry
etc....etc....
I am waiting for OSC version 3.0 and hopefully the original author can port it to the new version.
Edited by sputniknet, 07 September 2011, 21:17.
My quest to make RC2a & Multi-store work together, click below:
http://forums.oscommerce.com/topic/349161-multi-store-with-rc2a/page__p__1459234#entry1459234
#1538
Posted 27 January 2012, 12:17
If i change the status from a order in Store2 the customer gets an email from store2 but the URL to track the order status is from Store!
Before i send the customer a new order status i change my admin to the right store like: configuration.php?store_config_table=9 If i don't do that the emails are send from store1 and the URL in the email is also store1. I want my orders from store2 to be checked on store2/account_history_info......... and not on store1/account_history_info.........
Can some one help me with this problem? I have compared my files with the original M-S addon, but i see no differences :(
When a customer placed a order the URL to track the order is the right one, but if i send updates/changes from my admin the URL is always from store1.....
Edited by freaknet, 27 January 2012, 12:18.
#1539
Posted 17 April 2012, 10:59
In any case, is there any alternative other than a commercial product?














