Jump to content

How to set Features in Oaeva Export Module as column


cooz_man

Recommended Posts

Hi

 

I have a problem . I use module as is in topic title to export porducts. This module is very good but i don't know what to do to set Features as Column.

 

Now it's look like that:

'features'                  => array('label' => 'Feature (Name:Value:Position:Customized)'),

 

and

 

case 'features':
                                $line['features'] = '';
                                $features = $p->getFrontFeatures($id_lang);
                                $position = 1;

                                foreach ($features as $feature)
                                {
                                    $line['features'] .= $feature['name'] . ':' . $feature['value'] . ':' . $position;
                                    $position++;
                                }

                                break;

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...