Thanks for the heads-up....it seems that EP is good for basic importing and updating but does not handle additional items like attributes, add'l images and extra fields with any degree of usefulness. Does save a little time for the basics.... : )
C
This is a discussion on EP Problem in 2.5 - Any Ideas?? within the osCmax v2 Installation issues forums, part of the osCmax v2.0 Forums category; Thanks for the heads-up....it seems that EP is good for basic importing and updating but does not handle additional items ...
Thanks for the heads-up....it seems that EP is good for basic importing and updating but does not handle additional items like attributes, add'l images and extra fields with any degree of usefulness. Does save a little time for the basics.... : )
C
See a recent post in the 'Max 1.7 section (I know!) - EP handles attributes well enough, in my experience, when used with version 'i' and OpenOffice.
Additional images are not required, when using Dynamic MoPics - hence inappropriate for 'Max.
EJ
Last edited by ridexbuilder; 11-27-2010 at 04:00 PM.
Hosting plans with installation, configuration, contributions, support and maintenance.
I see this thread is almost a year old, but I'm a new user/learner with osCMax and just today learned the difference in EPF and PEF (thanks EJ for the quick lesson).
I'm using extra fields in my listings and can't see to figure out anyway to export/import them using Easy Populate or another method.
Any suggestions on where to look/read or what to do?
Thanks for everyone that has been part of this project!
just deleting dup post... not sure how I did that.
Last edited by dare197; 11-04-2011 at 10:44 AM. Reason: deleting dup.
The easiest way is to replace line 301 of easypopulate:
$custom_fields[TABLE_PRODUCTS_DESCRIPTION] = array('tab1' => 'tab1', 'tab1' => 'tab1', 'tab2' => 'tab2', 'tab3' => 'tab3', 'tab4' => 'tab4', 'tab5' => 'tab5', 'tab6' => 'tab6'); // this line is used if you have no custom fields to import/export
with this one:
$custom_fields[TABLE_PRODUCTS_DESCRIPTION] = array('tab1' => 'tab1', 'tab1' => 'tab1', 'tab2' => 'tab2', 'tab3' => 'tab3', 'tab4' => 'tab4', 'tab5' => 'tab5', 'tab6' => 'tab6', 'extra_value_id1' => 'epf1'); // this line is used if you have no custom fields to import/export
This way you will have new fields in the csv file v_extra_value_id1_1, v_extra_value_id1_2 and v_extra_value_id1_3, in which you will have to enter the number of the extra_value_id (you can look into the DB). If you want more extra fields, you can add them to the line like 'extra_value_id2' => 'epf2' and so on...
Bookmarks