Product Reviews Ablecommerce 7.05

For general questions and discussions specific to the AbleCommerce 7.0 Asp.Net product.
Post Reply
User avatar
edinos
Lieutenant, Jr. Grade (LT JG)
Lieutenant, Jr. Grade (LT JG)
Posts: 44
Joined: Sun May 18, 2008 10:52 pm

Product Reviews Ablecommerce 7.05

Post by edinos » Wed Dec 01, 2010 12:19 pm

With the new upgrade to 7.05 you have to manually enable product reviews for every product. Not easy when you have thousands of products. Our webhosting company says enabling this was not part of the deal with our upgrade. Just curious does anybody know why they changed this?

Thanks

User avatar
compunerdy
Admiral (ADM)
Admiral (ADM)
Posts: 1283
Joined: Sun Nov 18, 2007 3:55 pm

Re: Product Reviews Ablecommerce 7.05

Post by compunerdy » Wed Dec 01, 2010 12:28 pm

I upgraded and all of mine already have allow reviews checked.

User avatar
edinos
Lieutenant, Jr. Grade (LT JG)
Lieutenant, Jr. Grade (LT JG)
Posts: 44
Joined: Sun May 18, 2008 10:52 pm

Re: Product Reviews Ablecommerce 7.05

Post by edinos » Wed Dec 01, 2010 11:12 pm

hmm, thats interesting. My hosting company told me i need to go manually check all 4,000 of my products. To me thats crazy. I think they should have them alreaddy checked but they are disagreeing with me.

User avatar
mazhar
Master Yoda
Master Yoda
Posts: 5084
Joined: Wed Jul 09, 2008 8:21 am
Contact:

Re: Product Reviews Ablecommerce 7.05

Post by mazhar » Thu Dec 02, 2010 5:48 am

If you want to turn on the reviews for all products where they are turned off you can run following query to do that

Code: Select all

UPDATE [ac_Products]
   SET [AllowReviews] = 1
WHERE AllowReviews = 0

User avatar
jmestep
AbleCommerce Angel
Posts: 8164
Joined: Sun Feb 29, 2004 8:04 pm
Location: Dayton, OH
Contact:

Re: Product Reviews Ablecommerce 7.05

Post by jmestep » Thu Dec 02, 2010 7:29 am

On 7.0.5 sites I've worked on, you have to enable reviews on the product level. On upgrades, the current reviews are still visible after the upgrade, but there is no link to allow the customer to add a review unless the Allow Reviews box is checked on the product page.
Info from Able's change log at http://help.ablecommerce.com/upgrades/a ... _7.0.5.htm
8043 enhancement Store Template Allow individual product reviews
8669 normal Admin UI Update product batch edit module for editing of AllowReviews field
Here is a quote from bugzilla about 8043:
There is a database field for allow reviews, I think it's Product.AllowReviews.
Add somewhere on the add/edit product form to allow this value to be toggled.
The toggle switch should only appear if reviews are enabled for the site. Also
update the product review forms - product review forms should only appear for
customers to use if product reviews are enabled for the site AND for the
product.
Judy Estep
Web Developer
jestep@web2market.com
http://www.web2market.com
708-653-3100 x209
New search report plugin for business intelligence:
http://www.web2market.com/Search-Report ... -P154.aspx

macromark
Lieutenant, Jr. Grade (LT JG)
Lieutenant, Jr. Grade (LT JG)
Posts: 30
Joined: Fri Feb 18, 2011 2:39 pm

Re: Product Reviews Ablecommerce 7.05

Post by macromark » Tue Mar 08, 2011 11:11 am

mazhar wrote:If you want to turn on the reviews for all products where they are turned off you can run following query to do that

Code: Select all

UPDATE [ac_Products]
   SET [AllowReviews] = 1
WHERE AllowReviews = 0
Mazhar - Where is this "query" done? Do you execute it from within the admin area somewhere?

User avatar
mazhar
Master Yoda
Master Yoda
Posts: 5084
Joined: Wed Jul 09, 2008 8:21 am
Contact:

Re: Product Reviews Ablecommerce 7.05

Post by mazhar » Wed Mar 09, 2011 3:43 am

I used SQL Server Management Studio to do this via connecting directly to Database. So if you can connect to database using SQL Management Studio then its good otherwise go to your hosting and hopefully you will find some sort of Query tool in Database options.

Post Reply