Closed (fixed)
Project:
Ubercart Google Merchant Integration
Version:
6.x-2.0
Component:
User interface
Priority:
Critical
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
24 May 2011 at 19:18 UTC
Updated:
22 Jun 2012 at 17:41 UTC
Comments
Comment #1
jasonabc commentedconfirmed. Marking as critical since if this doesn't work with Ubercart product classes it's pretty much unusable.
Comment #2
seancr commentedI fixed this for myself, but don't know how to commit the changes. The only content types that it was storing data for - or showing the edit form for, was hard coded. You need to open uc_gbase.module and change line 292, 301, and 159.
159 now look like:
if (in_array( $form['type']['#value'], array('copier', 'product'))) {
292, 301 now look like:
if(in_array($node->type, array('copier', 'product'))){
/* this just hard codes the problem for my install - but the right way to do this would be to query the database for the product classes - or provide through the admin the options for which product classes need to be allowed to be submitted */
Comment #3
compujohnny commentedFixed in latest dev branch
Comment #5
flyingyoda51 commentedI am having this problem. Works for regular products but not products in product classes. Using 6.x-2.2.
Comment #6
flyingyoda51 commentedComment #7
compujohnny commentedThis feature was implemented in the Drupal 7 version, it was not backported to Drupal 6 yet
Comment #8
flyingyoda51 commentedI am confused because you said it was fixed in the latest dev release this was back with 6-2.0, so shouldn't the fix be included in 6-2.2?
Comment #9
compujohnny commentedI added it to the latest dev in 6.x, please test and let me know if you fins any more issues
Comment #10
flyingyoda51 commentedI am now able to access uc_gbase within product classes with the latest dev release.
Thank you