Using this space to add a few bugs that still exist or are new to the 6.1.1 system
[BUG/FIX] 6.1.1 intel in one thread.
-
- Site Admin
- Posts: 1854
- Joined: Wed Jun 17, 2009 6:30 pm
- Location: South Yorkshire UK
- Contact:
Re: [BUG/FIX] 6.1.1 intel in one thread.
The breadcrumbs fix to show only one breadcrumb is now no longer required..
Ref: http://www.interspire.com/forum/showpos ... stcount=26
Ref: http://www.interspire.com/forum/showpos ... stcount=26
-
- Site Admin
- Posts: 1854
- Joined: Wed Jun 17, 2009 6:30 pm
- Location: South Yorkshire UK
- Contact:
[6.x] Where have product reviews gone?
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.
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.
-
- Site Admin
- Posts: 1854
- Joined: Wed Jun 17, 2009 6:30 pm
- Location: South Yorkshire UK
- Contact:
Re: [BUG/FIX] 6.1.1 intel in one thread.
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..
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.
Did all of the above, but I still can't bulk edit my products. not the right permissions
Any solution for this??



ISC v6
-
- Site Admin
- Posts: 1854
- Joined: Wed Jun 17, 2009 6:30 pm
- Location: South Yorkshire UK
- Contact:
Admin inventory shows ALL possible combinations
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:
After, Add:
This will ensure that only the combinations that are active will show up for inventory adjustment and not every possible combination there 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."'";
Code: Select all
// MOD fix unexpected combinations from appearing
$query .= " AND vcenabled = 1";
// MOD END