Post by Xsecrets » Sat May 08, 2010 1:44 am

This Module adds extra fields or text attributes to your products.

Demo available HERE

Features
  • Unlimited fields
    Unlimited values
    Multi-language fields and values.
    Values can be saved as list to avoid typos.
    Integrates with the Layered Navigation mod. Selectable by field.
    Will integrate with my forthcoming Product Comparison mod. Selectable by field.
Note: This module requires edits to several core files. If you are running a modified store and are not comfortable with editing php scripts it would be best to purchase the installation.

OpenCart commercial mods and development http://spotonsolutions.net
Layered Navigation
Shipment Tracking
Vehicle Year/Make/Model Filter


Guru Member

Posts

Joined
Sun Oct 25, 2009 3:51 am
Location - FL US

Post by i2Paq » Sat May 08, 2010 4:14 pm

Nice work!

Norman in 't Veldt
Moderator OpenCart Forums

_________________ READ and Search BEFORE POSTING _________________

Our FREE search: Find your answer FAST!.

[How to] BTW + Verzend + betaal setup.


User avatar
Global Moderator

Posts

Joined
Mon Nov 09, 2009 7:00 pm
Location - Winkel - The Netherlands

Post by leimener » Sun May 09, 2010 3:16 am

Is it possible to expand the standard search to the extra fields? I tested your demo site,it seems not. ???

Newbie

Posts

Joined
Tue Apr 13, 2010 2:43 am

Post by Xsecrets » Sun May 09, 2010 3:57 am

leimener wrote:Is it possible to expand the standard search to the extra fields? I tested your demo site,it seems not. ???
Well anything is possible, but no It is not included in the contribuion. That would be more core file edits, and it has way to many edited core files as it is.

OpenCart commercial mods and development http://spotonsolutions.net
Layered Navigation
Shipment Tracking
Vehicle Year/Make/Model Filter


Guru Member

Posts

Joined
Sun Oct 25, 2009 3:51 am
Location - FL US

Post by winbackgo » Fri May 21, 2010 4:08 am

How to test admin functionality?

Newbie

Posts

Joined
Fri May 21, 2010 4:06 am

Post by Xsecrets » Fri May 21, 2010 6:11 am

winbackgo wrote:How to test admin functionality?
you mean a demo so you can see the admin stuff?
I've been meaning to create a demo login for the admin, but I don't really want to put it out there till I lock down the permissions on the folders, and create a cron job to automatically restore the database every so often, cause I know from experience if you put out an admin demo of any software people will try their best to screw it up.

OpenCart commercial mods and development http://spotonsolutions.net
Layered Navigation
Shipment Tracking
Vehicle Year/Make/Model Filter


Guru Member

Posts

Joined
Sun Oct 25, 2009 3:51 am
Location - FL US

Post by winbackgo » Fri May 21, 2010 5:50 pm

Now I need to fulfill one order and I need this plugin, I'm faced with the choice to implement it me, or use your. I want to see what's in the admin, if you want to give me access to privately. I'm not going there is nothing to break.
by google/translate

Newbie

Posts

Joined
Fri May 21, 2010 4:06 am

Post by legend717 » Wed Mar 23, 2011 5:18 pm

Warning: This Extra Field cannot be deleted as it is currently assigned to products!

No products in store!!!!!!!!!!!!!

Help!

User avatar
New member

Posts

Joined
Tue Sep 21, 2010 2:57 pm

Post by Xsecrets » Wed Mar 23, 2011 8:40 pm

legend717 wrote:Warning: This Extra Field cannot be deleted as it is currently assigned to products!

No products in store!!!!!!!!!!!!!

Help!
you will need to empty the product_extra_field_value table.

This is a bug I put in the check, but forgot to modify the deleteproduct function to remove the stuff. I'll get an updated version up later today. I have made vqmods for it that I haven't added to the downloads yet anyways.

OpenCart commercial mods and development http://spotonsolutions.net
Layered Navigation
Shipment Tracking
Vehicle Year/Make/Model Filter


Guru Member

Posts

Joined
Sun Oct 25, 2009 3:51 am
Location - FL US

Post by davey c » Wed Apr 20, 2011 6:28 pm

Is there a way to make the product extra fields display in the category page?

I can make stock status etc appear, but am struggling with Product Extra Fields.

Thanks
Last edited by davey c on Wed Apr 20, 2011 8:24 pm, edited 2 times in total.

New member

Posts

Joined
Fri Aug 07, 2009 10:52 pm

Post by Xsecrets » Wed Apr 20, 2011 8:16 pm

davey c wrote:Is there a way to make the product extra fields display in the category page?

I can make stock status etc appear, but am struggling with Product Extra Fields.

Thanks
in catalog/controller/product/category.php

find the products array. just before it add

Code: Select all

$extra_fields = $this->model_catalog_product->getExtraFields($result['product_id']); 
then change the array to look like this

Code: Select all

$this->data['products'][] = array(
                        'name'    => $result['name'],
                        'model'   => $result['model'],
                        'rating'  => $rating,
                        'stars'   => sprintf($this->language->get('text_stars'), $rating),
                        'thumb'   => $this->model_tool_image->resize($image, $this->config->get('config_image_product_width'), $this->config->get('config_image_product_height')),
                        'price'   => $price,
                        'options' => $options,
                        'special' => $special,
                        'href'    => $this->model_tool_seo_url->rewrite(HTTP_SERVER . 'index.php?route=product/product&path=' . $this->request->get['path'] . '&product_id=' . $result['product_id']),
                        'add'      => $add,
                                                'extra_fields'   => $extra_fields
                      );
 
then in the category view you can do something like

Code: Select all

if($products[$j]['extra_fields']){
 foreach($products[$j]['extra_fields'] as $extra_field){
    echo $extra_field['name'] . ': ' . $extra_field['value'] . '<br />';
  }
}
 

OpenCart commercial mods and development http://spotonsolutions.net
Layered Navigation
Shipment Tracking
Vehicle Year/Make/Model Filter


Guru Member

Posts

Joined
Sun Oct 25, 2009 3:51 am
Location - FL US

Post by davey c » Wed Apr 20, 2011 8:26 pm

I got it working.

Thanks for the super fast reply!

New member

Posts

Joined
Fri Aug 07, 2009 10:52 pm

Post by triapos » Sat Jun 18, 2011 4:42 am

Hi,
i use PEF and Layered navigation together.
My request if it possible to disable both of home and category pages
how can i set to modules disable on home and top category pages
i wan to show modules on sub category
Could you help me please

Newbie

Posts

Joined
Sat Jun 18, 2011 4:35 am

Post by legend717 » Wed Aug 03, 2011 7:13 pm

updated to 1.5.
Error in admin HTTP 500...

User avatar
New member

Posts

Joined
Tue Sep 21, 2010 2:57 pm

Post by Xsecrets » Wed Aug 03, 2011 10:19 pm

yes extra fields has not been updated to 1.5.x and probably never will be because attributes do basically the same thing.

OpenCart commercial mods and development http://spotonsolutions.net
Layered Navigation
Shipment Tracking
Vehicle Year/Make/Model Filter


Guru Member

Posts

Joined
Sun Oct 25, 2009 3:51 am
Location - FL US

Post by legend717 » Mon Aug 08, 2011 1:02 am

In 1.5 they are not comfortable.

User avatar
New member

Posts

Joined
Tue Sep 21, 2010 2:57 pm

Post by legend717 » Thu Oct 06, 2011 7:59 pm

Is there a way to make the product extra fields display in the category page?
Xsecrets wrote: in catalog/controller/product/category.php
find the products array. just before it add
 
Version 1.5.
Tell way to make?

Code: Select all

  <?php  if ($product['extra_fields']){ ?>
  
 <?php foreach($product['extra_fields'] as $extra_field){ ?>
 
    <?php echo $extra_field['name'] . ': ' . $extra_field['value'] . '<br />'; ?>
<?php } ?>
<?php } ?>
Error: Undefined index: extra_fields in

P.S. module on the product page works.
--------------------
UPD:
I corrected. Good works on 1.5 O0

User avatar
New member

Posts

Joined
Tue Sep 21, 2010 2:57 pm

Post by Xsecrets » Thu Oct 06, 2011 11:54 pm

I never updated extra fields for 1.5 because attributes provide mostly the same functionality.

OpenCart commercial mods and development http://spotonsolutions.net
Layered Navigation
Shipment Tracking
Vehicle Year/Make/Model Filter


Guru Member

Posts

Joined
Sun Oct 25, 2009 3:51 am
Location - FL US

Post by cwswebdesign » Fri Dec 30, 2011 7:19 am

Xsecrets wrote:I never updated extra fields for 1.5 because attributes provide mostly the same functionality.
Hi,

I think there would be a demand for this option in 1.5.x. I'm not sure how many customers know to flip through the tabs to find this sort of information. For myself, I'd love to be able to add gender and model year, right in line with availability, rewards points, etc. Because I'm not sure viewers know to switch through the tabs, I'm cluttering up my Title area with this info.

What do you think?? Am I the only one?

Thanks!

D

This account is inactive. Look for us under the name 'EvolveWebHosting' and contact us under that username.

Thanks!


User avatar
Active Member

Posts

Joined
Sun Dec 11, 2011 12:26 am
Location - USA
Who is online

Users browsing this forum: Ahrefs [Bot] and 74 guests