Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Search the Community

Showing results for tags 'attributes'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • News and Announcements
    • News and Announcements
  • osCommerce v4.x
    • General Support
    • Migration from old osCommerce
    • Design and Templates
    • Apps / Add-ons
    • Translations
    • API and import/export
    • Marketplace integration
    • Manuals and How-to
    • Blog's discussion
  • osCommerce Online Merchant v2.x
    • General Support
    • osCommerce Online Merchant Community Bootstrap Edition
    • Add-Ons
  • Development
  • General
    • General Discussions
    • Live Shop Reviews
    • Security
    • Commercial Support Inquiries
    • Developer Feedback

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Real Name


Location


Interests


Website

Found 9 results

  1. This addon is meant as a replacement for the Product Attributes section in admin, for any version of oscommerce. The main advantages of it are: Ability to add/edit/delete attributes quickly (very quickly). A multi-select list that allows adding attributes to many products at once. Ability to search attributes. For those of you with a large number of attributes, you will probably be amazed at how quickly this responds when compared to the existing attributes code. Please note that all of the sections are not completed. The basic attributes and search code is complete, I think, and the Options code is close to complete, if not complete. But the Values and Settings sections still need to be worked on. The old attributes section, or any addon for attributes that is installed, will still function so these unfinished parts won't cause any problems. I wanted to get it uploaded as it is now to start getting feedback on it to better know what to work on. So if anyone tries it, please let me know of any problems, suggestions or questions.
  2. Hello, friends. We have many customers from different countries but we also want to hear their and your feedback about our work. We want to become much better ;) Here is our partner page, our site, and our envato page Thank you!
  3. Child Attributes for Osc 2.3.1 Released under GNU GPL By FNZB This contribution will allow you to assign child attributes to product attribute values. For example, if you have 3 Shirt types and each one has different colour options: Shirt Type: (Option Name) - Shirt 1 (Option value) - Colour:(Option Name) - White (Option value) - Black (Option value) - Shirt 2 - Colour: - Red - White - Blue - Shirt 3 - Colour: -Green I have only taken this to one sub level as that is all I required it for. It could probably be modified to allow multiple sub levels if required. This contribution can be found here
  4. I need to find code to properly pass product "Attributes" as a merchant defined field in the authorize.net payment module. In my authorizenet_aim.php file I have the following already which passes the products themselves, I just need to figure out the fields / code to use to pass the attributes... // Add items ordered to merchants email as merchant defined fields Order - Product model, Product name and Qty ordered MC if (MODULE_PAYMENT_AUTHORIZENET_AIM_EMAIL_MERCHANT == 'True' && MODULE_PAYMENT_AUTHORIZENET_AIM_ADD_ITEMS == 'True') { for ($i=0, $n=sizeof($order->products); $i<$n; $i++) { $x = $i + 1; $data .= '&item' . $x . '=' . urlencode($order->products[$i]['model']) . ' -|- ' . urlencode(substr($order->products[$i]['name'], 0, 255)) . ' -|- ' . urlencode($order->products[$i]['qty']); } } My intended use is that I have 1 product that has 5 different attributes (like 'color', 'size' , 'material' , 'somethingelse ' ,,,) I know I can't be the first person with this issue, but my buddy Google has not helped so far so I'm looking for actual people to help :) !
  5. My store is for shoes. So every procusts need the same attributes (Size) Is there some way or some add-on for me to copy the attributes. As add the attributes for all products one by one is too arroying. Notice: my OSC is 2.31
  6. Option Value Functions for Osc 2.3.1 Released under GNU GPL By FNZB This contribution will allow you to populate attribute values by running a function. As an example I used it to obtain childrens names from the DB that were saved by each customer. As these values are dynamic I wanted to populate a select box to allow the customer to assign a product to their children. This contribution can be found here
  7. Hi, Can anyone tell me if there is an attribute add-on that would cascade the attributes. So if someone choose item B from the main attribute, a group of sub-attributes would then show up with other options exclusive to the main attribute B. Hope this makes sense! Just wondering if something like this already exists. Thanks
  8. Hi. Is it possible to show my product attributes in a table just beneath my product description and image, instead of a select dropdown? I want to sell a item, but this item has 5 different colours, in some cases different price, i want a table like this: Colour 1 price add to cart Colour 2 price add to cart Colour 3 price add to cart Do you guys know a contribution, og a solution? I'm using v2.2 rc2. Best Regards Claus Fischer
  9. I tried to install the AJAX Attribute Manager. I placed the folder in the admin directory as instructed and made the stated code changes. When I open a new product entry page I see the following message. Fatal error: Call to undefined function amsessionisregistered() in /home/totalw8/public_html/clippityclipcoupons.com/admin/attributeManager/classes/attributeManagerConfig.class.php on line 141 What does this mean and how do I correct it? Also, in the download folder is an update text file titled "update_2.8.9.2_to_2.8.9.3.txt It states: in admin/attributeManager.php: Find: <input type="image" <?php if($attributeManager->getTemplateOrder()=='123'){echo 'style="border:1px solid #DDDDDD;"';} ?> src="attributeManager/images/icon_123.png" onclick="return amTemplateOrder('123');" border="0" title="" /> <input type="image" <?php if($attributeManager->getTemplateOrder()=='abc'){echo 'style="border:1px solid #DDDDDD;"';} ?> src="attributeManager/images/icon_abc.png" onclick="return amTemplateOrder('abc');" border="0" title="" /> REPLACE WITH: <input type="image" <?php if($attributeManager->getTemplateOrder()=='123'){echo 'style="border:1px solid #DDDDDD;"';} ?> src="attributeManager/images/icon_123.png" onclick="return amTemplateOrder('123');" border="0" title="AM_AJAX_SORT_NUMERIC" /> <input type="image" <?php if($attributeManager->getTemplateOrder()=='abc'){echo 'style="border:1px solid #DDDDDD;"';} ?> src="attributeManager/images/icon_abc.png" onclick="return amTemplateOrder('abc');" border="0" title="AM_AJAX_SORT_ALPHABETIC" /> IN admin/attributeManager/languages/english/attributeManager.php: ADD BEFORE FINAL ?>: define('AM_AJAX_SORT_NUMERIC', 'Sort Numerically'); define('AM_AJAX_SORT_ALPHABETIC', 'Sort Alphabetically'); However when I open the stated .php file it contains ONLY the following: <?php /* $Id: attributeManager.php,v 1.0 21/02/06 Sam West$ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Released under the GNU General Public License Copyright What do I do now? Any help would be greatly appreciated. Thanks, Ed
×
×
  • Create New...