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 ...


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

Register FAQ Members List Calendar Mark Forums Read


Free community membership! Fast easy FREE membership
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: 10,329
Thanks: 68
Thanked 322 Times in 305 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


  • osCMax Templates - Hundreds of premium quality templates. New designs every month!

  • xShop for osCMax - Windows Based osCMax administration. Improved workflow, security, speed and convenience.

  • osCMax Hosting - From basic hosting to High Availability, Load Balanced arrays, the most experienced osCMax host.

  • osCMax Template Tutorial - Learn how to make your own custom templates and how to use the powerful features of the osCMax template system.
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: 319
Thanks: 0
Thanked 1 Time in 1 Post
Rep Power: 0
red_fraggle
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: 10,329
Thanks: 68
Thanked 322 Times in 305 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


  • osCMax Templates - Hundreds of premium quality templates. New designs every month!

  • xShop for osCMax - Windows Based osCMax administration. Improved workflow, security, speed and convenience.

  • osCMax Hosting - From basic hosting to High Availability, Load Balanced arrays, the most experienced osCMax host.

  • osCMax Template Tutorial - Learn how to make your own custom templates and how to use the powerful features of the osCMax template system.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #5  
Old 07-06-2004, 10: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, 01: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, 02: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, 03: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, 06: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, 09: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 02: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 08:47 PM


All times are GMT -8. The time now is 12:00 PM.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO
http://www.oscmax.com/forums/
Copyright 2008 osCMax