osCommerce and osCMax shopping cart software forums

Shopping Cart Software

osCommerce with teeth!

 

Is there A Product Attribute Option Type Mod for MS2-MAX?

This is a discussion on Is there A Product Attribute Option Type Mod for MS2-MAX? within the osCMax v1.7 General Mods Discussion forums, part of the osCMax v1.7 Forums category; Howdy! Is there a mod available specifically for MS2-MAX 1.5 that will instruct me on how to add Product Attribute ...



Find us on Facebook
Go Back   osCommerce and osCMax shopping cart software forums > osCMax v1.7 Forums > osCMax v1.7 General Mods Discussion

Connect with Facebook Register FAQDonate Members List Calendar Mark Forums Read


Closed Thread

 

LinkBack Thread Tools
  #1  
Old 12-03-2003, 12:21 PM
Lurker
 
Join Date: Oct 2003
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
klyder
Default Is there A Product Attribute Option Type Mod for MS2-MAX?

Howdy!
Is there a mod available specifically for MS2-MAX 1.5 that will instruct me on how to add Product Attribute Options such as text boxes and radio buttons(instead of just having option-list selections as in the initial installation)?

I know that there is a contribution for MS2 (non-Max) that does this, but I'm a newbie to osCommerce and so, before I go hacking code, I want to be sure that there isn't already a better way to accomplish this.

Here's the name and URL of that contribution:

Product Attributes - Option Type Feature
http://www.OpenStoreSolutions.com/op...ntribution.php

Thanks in advance,
klyder
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #2  
Old 01-17-2004, 01:37 AM
michael_s's Avatar
osCMax Developer


 
Join Date: Jul 2002
Location: Phoenix, AZ
Posts: 15,694
Thanks: 139
Thanked 606 Times in 519 Posts
Rep Power: 10
michael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond repute
Default

klyder, Just finished this mod update. You can get it here:

http://oscdox.com/index.php?name=PNp...pic&t=1907
__________________
Michael Sasek
osCMax Developer

*** Do not PM me requesting paid help. The only paid work I do is for AABox Web Hosting customers ***

Stay Up To Date with everything osCMax:
Free osCMax Newsletters - Security notices, New Releases, osCMax News
osCMax on Twitter - Up to the minute info as it happens. Know it first.

osCMax User Manual - osCMax Templates - Advanced Template Tutorial

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #3  
Old 03-05-2004, 01:42 AM
red_fraggle's Avatar
Active Member
 
Join Date: Feb 2004
Location: wilmington, NC
Posts: 343
Thanks: 0
Thanked 3 Times in 3 Posts
Rep Power: 7
red_fraggle is on a distinguished road
Default

does this work with easypopulate?


Cliff...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #4  
Old 03-05-2004, 07:27 AM
michael_s's Avatar
osCMax Developer


 
Join Date: Jul 2002
Location: Phoenix, AZ
Posts: 15,694
Thanks: 139
Thanked 606 Times in 519 Posts
Rep Power: 10
michael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond repute
Default

red_fraggle, AFAIK easypopulate does not handle attributes at all.
__________________
Michael Sasek
osCMax Developer

*** Do not PM me requesting paid help. The only paid work I do is for AABox Web Hosting customers ***

Stay Up To Date with everything osCMax:
Free osCMax Newsletters - Security notices, New Releases, osCMax News
osCMax on Twitter - Up to the minute info as it happens. Know it first.

osCMax User Manual - osCMax Templates - Advanced Template Tutorial

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #5  
Old 07-06-2004, 11:15 AM
Member
 
Join Date: Aug 2003
Location: Southampton UK
Posts: 63
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
NickW
Default

The "Option Type Feature v1.6 for MS2-MAX v1.5.5" has been so useful! I did extend the function tep_draw_checkbox_field in html_output.php to handle disabled and checked checkboxes for fixed additional charges. I found that they don't post their values so I extended the function to also draw a hidden text field with the same name and value, and that does post ok.
Code:
  function tep_draw_checkbox_field($name, $value = '', $checked = false, $parameters = '', $required = false) {

   	$field = tep_draw_selection_field($name, 'checkbox', $value, $checked, $parameters, $required);

	// disabled checked checkboxes do not post values therefore need an associated hidden text field.
   	if ($checked == true && $parameters == 'disabled') {
   		$field.= tep_draw_hidden_field($name, $value);
   	}

	return $field;
  }
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #6  
Old 07-07-2004, 02:28 AM
New Member
 
Join Date: Feb 2004
Posts: 20
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
robroymedia
Default

I don't seem to be able to get this mod to work, I've followed the instructions (twice!) and when I add anything but a select type option it always shows as a select type??

Any clues as to where to start looking for the problem please.

Thanks in advance
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #7  
Old 07-07-2004, 03:34 AM
New Member
 
Join Date: Feb 2004
Posts: 20
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
robroymedia
Default

Ok, managed to get it working (well almost) - slight typo in the config file , now when I have two radio buttons against a product they are both selected and I can't de-select either of them??

Any clues folks
Thanks again in advance
Rob.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #8  
Old 07-07-2004, 04:16 AM
Anonymous
Guest
 
Posts: n/a
Default

All working OK now, setting up the options incorrectly! AGAIN!

Thanks to all
Rob.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #9  
Old 07-08-2004, 07:51 AM
Anonymous
Guest
 
Posts: n/a
Default

Help robroy, ive been having the same problem (select type always showing up) what did you do to fix??
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #10  
Old 07-10-2004, 10:44 AM
Anonymous
Guest
 
Posts: n/a
Default

same here, any chance you could put together a read_me_fix for this issue??

Thanks a ton!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Closed Thread

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads

Thread Thread Starter Forum Replies Last Post
Product Attributes - Option Type Feature adam71o osCMax v2 Customization/Mods 21 08-10-2006 03:19 PM
Contribution Product Attributes - Option Type Features a1designs osCommerce 2.2 Modification Help 2 03-16-2005 12:30 PM
Flat fee product option / attribute JonThePromoGuy osCommerce 2.2 Modification Help 0 01-04-2005 07:51 PM
Set order to option in product attribute knullhund osCMax v1.7 Installation 2 12-01-2004 07:04 PM
Product Attributes - Option Type Feature flypie osCMax v1.7 Discussion 1 09-15-2003 09:47 PM


All times are GMT -8. The time now is 11:35 AM.


Powered by vBulletin®
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
SEO by vBSEO
Copyright 2009 osCMax
Inactive Reminders By Icora Web Design