osCommerce and osCMax shopping cart software forums

Shopping Cart Software

osCommerce with teeth!

 
 

A few basic newbie questions

This is a discussion on A few basic newbie questions within the osCommerce 2.2 Modification Help forums, part of the osCommerce 2.2 Forums category; Hi, I just installed osCmax, and have a few basic questions. I would like to either remove or edit the ...


Go Back   osCommerce and osCMax shopping cart software forums > osCommerce 2.2 Forums > osCommerce 2.2 Modification Help

Register FAQ Members List Calendar Mark Forums Read


Free community membership! Fast easy FREE membership
Closed Thread

 

LinkBack Thread Tools
  #1  
Old 02-10-2007, 03:34 PM
osCMax Testing Team
 
Join Date: Feb 2007
Posts: 53
Thanks: 13
Thanked 1 Time in 1 Post
Rep Power: 2
minuteman1970 is on a distinguished road
Question A few basic newbie questions

Hi,
I just installed osCmax, and have a few basic questions.
I would like to either remove or edit the "Top" link in the upper left hand corner, as it is pointing to a non-existant url. What file(s) need to be edited to do this?

Also, I need to know if Easy Populate allows for the importation of product attributes. I sell many items (clothing, etc..) which use multiple size / color options. Perhaps someone would be able to email me a sample Easy Populate import file with a few products on it, to use as an example.
Thanks in advance,
Ray
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Sponsored Links
Advertisement
  #2  
Old 02-11-2007, 05:56 AM
michael_s's Avatar
osCMax Developer

 
Join Date: Jul 2002
Location: Phoenix, AZ
Posts: 10,992
Thanks: 80
Thanked 345 Times in 324 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 Re: A few basic newbie questions

1. Documented here:
osCommerce Documentation by OSCdox :: osCommerce and osCMax installation and users manual, discussion forums (phpWiki)


2. No, EP does not handle attributes without being modified.
__________________
Michael Sasek
osCMax Developer


  • osCMax Templates - Hundreds of premium quality templates designed for osCMax 2. Loyalty discounts up to 30% off!
    Each purchase supports the osCMax project with much needed funds!

  • 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. Default multi server configuration for exceptional performance!

  • 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!
The Following User Says Thank You to michael_s For This Useful Post:
technewbie (04-24-2007)
  #3  
Old 02-11-2007, 06:29 AM
osCMax Testing Team
 
Join Date: Feb 2007
Posts: 53
Thanks: 13
Thanked 1 Time in 1 Post
Rep Power: 2
minuteman1970 is on a distinguished road
Default Re: A few basic newbie questions

Michael,
Thanks for the reply and the link. I assume I need to remove or comment out the 'Top' line in both the application_top.php and english.php files.

With regards to Easy Populate, how do most people without the extra attributes mod handle adding them in? I am using the stock v2.2 for my live shop right now, and have added each one individually. Does Max have any built-in functionality to ease this process?

In looking at the sample file from the Easy Populate v2.76d download, there are many columns which relate to attributes. Their headers look similar to this:
v_attribute_options_id_1
v_attribute_options_name_1_1

Is it safe to assume that without the extra attributes mod, I should remove these columns from my EP import file?

How complicated is adding the extra attributes mod, and has a contribution been created already for this purpose?

Thanks.

Last edited by minuteman1970; 02-11-2007 at 06:31 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #4  
Old 02-11-2007, 07:57 AM
michael_s's Avatar
osCMax Developer

 
Join Date: Jul 2002
Location: Phoenix, AZ
Posts: 10,992
Thanks: 80
Thanked 345 Times in 324 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 Re: A few basic newbie questions

There are a couple of options to add attributes. I have not used them in a long time, and forgot about them.

See the easypopulate.php file for where to set them.

The specific code is:
PHP Code:
// VJ product attributes begin
// **** Product Attributes ****
// change this to false, if do not want to download product attributes
global $products_with_attributes;
$products_with_attributes true

// change this to true, if you use QTYpro and want to set attributes stock with EP.
global $products_attributes_stock;
$products_attributes_stock false
// change this if you want to download selected product options
// this might be handy, if you have a lot of product options, and your output file exceeds 256 columns (which is the max. limit MS Excel is able to handle)
global $attribute_options_select;
//$attribute_options_select = array('Size', 'Model'); // uncomment and fill with product options name you wish to download // comment this line, if you wish to download all product options
// VJ product attributes end 
You can experiment with these settings, but it may actually do what you want. I suggest creating a test product, with attributes. Then, export the ep file to see how they are added to it. Then mimic this when adding your own attributes.
__________________
Michael Sasek
osCMax Developer


  • osCMax Templates - Hundreds of premium quality templates designed for osCMax 2. Loyalty discounts up to 30% off!
    Each purchase supports the osCMax project with much needed funds!

  • 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. Default multi server configuration for exceptional performance!

  • 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 02-11-2007, 10:32 AM
osCMax Testing Team
 
Join Date: Feb 2007
Posts: 53
Thanks: 13
Thanked 1 Time in 1 Post
Rep Power: 2
minuteman1970 is on a distinguished road
Default Re: A few basic newbie questions

Thanks for the info; I will take a close look at it and give it a shot.

On the official OSc Contribution website, I recall seeing one or more enhancements to the "official" EP Contribution. Generally speaking, should these work with EP & Max?
Thanks.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #6  
Old 02-11-2007, 12:36 PM
michael_s's Avatar
osCMax Developer

 
Join Date: Jul 2002
Location: Phoenix, AZ
Posts: 10,992
Thanks: 80
Thanked 345 Times in 324 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 Re: A few basic newbie questions

Yes, EP is pretty much a standalone app anyway, so all you need to do is merge in the new code and you should be good to go. Keep a backup copy of the osCMax version just in case you run into trouble.
__________________
Michael Sasek
osCMax Developer


  • osCMax Templates - Hundreds of premium quality templates designed for osCMax 2. Loyalty discounts up to 30% off!
    Each purchase supports the osCMax project with much needed funds!

  • 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. Default multi server configuration for exceptional performance!

  • 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!
The Following User Says Thank You to michael_s For This Useful Post:
minuteman1970 (02-11-2007)
Sponsored Links
Advertisement
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
a list of newbie questions,thanks.... soundworker osCMax v1.7 Discussion 5 08-24-2005 06:34 AM
BTS 1.2a Basic Template System - questions stevensdesign osCMax v1.7 General Mods Discussion 1 04-13-2005 01:18 PM
Newbie questions on CC processing and Multiple Prices giyer osCMax v1.7 Installation 5 10-18-2004 11:42 AM
Basic UK Shipping redefine osCommerce 2.2 Modification Help 0 11-26-2003 01:34 PM
Basic Template editing-Newbie question--reg., Anonymous osCMax v1.7 Discussion 0 10-11-2003 07:27 AM


All times are GMT -8. The time now is 06:26 AM.


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