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 ...
| |||||||
| Register | FAQ | Donate | Members List | Calendar | Mark Forums Read |
|
#1
| |||
| |||
| 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 |
|
#2
| ||||
| ||||
| 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 |
|
#3
| ||||
| ||||
| does this work with easypopulate? Cliff...
__________________ Clifton Murphy CEO/CTO Hyperactive Inc. osCommerce hosting, OSCMAX hosting, osCommerce modification, and OSCMAX modification specialists! |
|
#4
| ||||
| ||||
| 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 |
|
#5
| |||
| |||
| 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;
}
|
|
#6
| |||
| |||
| 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 |
|
#7
| |||
| |||
| Ok, managed to get it working (well almost) - slight typo in the config file Any clues folks Thanks again in advance Rob. |
|
#8
| |||
| |||
| All working OK now, setting up the options incorrectly! Thanks to all Rob. |
|
#9
| |||
| |||
| Help robroy, ive been having the same problem (select type always showing up) what did you do to fix?? |
|
#10
| |||
| |||
| same here, any chance you could put together a read_me_fix for this issue?? Thanks a ton! |
![]() |
| Thread Tools | |
| |
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 |