Page 1 of 1

[BUG/FIX] 6.1.1 intel in one thread.

Posted: Mon Dec 06, 2010 10:42 pm
by Martin
Using this space to add a few bugs that still exist or are new to the 6.1.1 system

Re: [BUG/FIX] 6.1.1 intel in one thread.

Posted: Tue Dec 07, 2010 3:28 pm
by Martin
The breadcrumbs fix to show only one breadcrumb is now no longer required..

Ref: http://www.interspire.com/forum/showpos ... stcount=26

[6.x] Where have product reviews gone?

Posted: Tue Dec 07, 2010 5:07 pm
by Martin
I had to do a bit searching to figure out what the heck had happened to reviews today but the problem you're having is that Interspire have re-coded the review system to allow the use of other third party review services as well as the internal system that was there before.

To get your old review functionality back you need to go to:

Admin > Settings > Comment Settings
Tick the "Built-in" option
Click on "Save"
When the page has re-loaded choose the "Built-in" tab and make sure the "Product reviews" box is ticked (if not, tick it and save).

You should now find the reviews system is working again.

Re: [BUG/FIX] 6.1.1 intel in one thread.

Posted: Thu Dec 09, 2010 3:16 am
by Martin
Wondering why you can't see the email integration functionality, able to change the 301 redirect, take store down for maintenance, etc.. ?

For some bizarre reason the upgrade has not upgraded the standard admin account to include access to all the new functionality so you need to create a new account and give that store admin permissions.

Hopefully I'll figure a fix for this soon but it's an "interesting" bug to say the least..

Re: [BUG/FIX] 6.1.1 intel in one thread.

Posted: Sat Jan 29, 2011 10:03 pm
by meules
Did all of the above, but I still can't bulk edit my products. not the right permissions :?: :?: :( Any solution for this??

Admin inventory shows ALL possible combinations

Posted: Wed Feb 02, 2011 11:54 pm
by Martin
This bug may not exist for everyone as I have a custom code module hooked into the file affected but in case it is..

Open: /admin/includes/classes/class.remote.php

Find:

Code: Select all

					// Fetch out the variation combinations for this product
					$query = "SELECT * FROM [|PREFIX|]product_variation_combinations WHERE vcproductid='".$prodId."'";
After, Add:

Code: Select all

					// MOD fix unexpected combinations from appearing
					$query .= " AND vcenabled = 1";
					// MOD END
This will ensure that only the combinations that are active will show up for inventory adjustment and not every possible combination there is...