Follow us on Twitter X-Cart on Facebook Wiki
Shopping cart software Solutions for online shops and malls
 

Manufacturers Module - Option box need it

 
Reply
   X-Cart forums > X-Cart 4 > Dev Questions > Changing design
 
Thread Tools Search this Thread
  #1  
Old 02-16-2008, 06:43 AM
  ADDISON's Avatar 
ADDISON ADDISON is offline
 

X-Man
  
Join Date: Jan 2008
Posts: 2,613
 

Default Manufacturers Module - Option box need it

Hi Folks,

I have around 30 Brands (Manufacturers) inserted in my store. I have a problem with Manufacturers Module. All the Brands are listed there. The list is very long and takes a lot of space in my layout.

1. Did anyone create a form with an drop down for choosing a Manufacturer? I need a solution with Select button and without select button (automatically selection).

2. I need to have Sort by the Brand (Manufacturer) selector in Categories and Search page. In this moment there are only Product Name, Price, Default. Did anyone find a solution for this issue?

Thanks.
__________________
X-Cart Next: Business 5.2 (learning and testing)
X-Cart Classic: Gold and Gold Plus 4.7
Lots of Modules and Customizations
OS in use: Red Hat Enterprise, Fedora, CentOS, Debian, Ubuntu, Linux Mint, Kali Linux
Ideas for Server configuration (basicaly): Nginx/Pound (reverse proxy), Apache/Nginx (webserver), Squid/Varnish (cache server), HHVM or (PHP-FPM + PHP 5.6 + opcache), MariaDB/Percona MySQL Server, Redis (storing sessions)

You can catch my ideas here: http://ideas.x-cart.com
Reply With Quote
  #2  
Old 02-16-2008, 07:19 AM
  TelaFirma's Avatar 
TelaFirma TelaFirma is offline
 

X-Adept
  
Join Date: Nov 2002
Location: North Carolina USA
Posts: 930
 

Default Re: Manufacturers Module - Option box need it

Quote:
Originally Posted by am2003

2. I need to have Sort by the Brand (Manufacturer) selector in Categories and Search page. In this moment there are only Product Name, Price, Default. Did anyone find a solution for this issue?

Thanks.

We have a Narrow by Manufacturer module (http://forum.x-cart.com/showthread.php?t=35108)
Reply With Quote
  #3  
Old 02-16-2008, 07:20 AM
  ADDISON's Avatar 
ADDISON ADDISON is offline
 

X-Man
  
Join Date: Jan 2008
Posts: 2,613
 

Default Re: Manufacturers Module - Option box need it

Thanks but I am looking for some free stuff.
__________________
X-Cart Next: Business 5.2 (learning and testing)
X-Cart Classic: Gold and Gold Plus 4.7
Lots of Modules and Customizations
OS in use: Red Hat Enterprise, Fedora, CentOS, Debian, Ubuntu, Linux Mint, Kali Linux
Ideas for Server configuration (basicaly): Nginx/Pound (reverse proxy), Apache/Nginx (webserver), Squid/Varnish (cache server), HHVM or (PHP-FPM + PHP 5.6 + opcache), MariaDB/Percona MySQL Server, Redis (storing sessions)

You can catch my ideas here: http://ideas.x-cart.com
Reply With Quote
  #4  
Old 02-16-2008, 07:27 AM
  TelaFirma's Avatar 
TelaFirma TelaFirma is offline
 

X-Adept
  
Join Date: Nov 2002
Location: North Carolina USA
Posts: 930
 

Default Re: Manufacturers Module - Option box need it

Quote:
Originally Posted by am2003
Thanks but I am looking for some free stuff.

There are some people that have been talking about it in this thread: http://forum.x-cart.com/showthread.php?t=31168
Reply With Quote
  #5  
Old 02-16-2008, 07:31 AM
  ADDISON's Avatar 
ADDISON ADDISON is offline
 

X-Man
  
Join Date: Jan 2008
Posts: 2,613
 

Default Re: Manufacturers Module - Option box need it

Thanks for this link.

I checked your website. You have very nice interesting mods. I will think about for the future to buy all/some of them.
__________________
X-Cart Next: Business 5.2 (learning and testing)
X-Cart Classic: Gold and Gold Plus 4.7
Lots of Modules and Customizations
OS in use: Red Hat Enterprise, Fedora, CentOS, Debian, Ubuntu, Linux Mint, Kali Linux
Ideas for Server configuration (basicaly): Nginx/Pound (reverse proxy), Apache/Nginx (webserver), Squid/Varnish (cache server), HHVM or (PHP-FPM + PHP 5.6 + opcache), MariaDB/Percona MySQL Server, Redis (storing sessions)

You can catch my ideas here: http://ideas.x-cart.com
Reply With Quote
  #6  
Old 02-20-2008, 03:21 AM
 
twinster twinster is offline
 

Advanced Member
  
Join Date: May 2007
Posts: 68
 

Default Re: Manufacturers Module - Option box need it

Hi am2003
have you been able to work out a simple solution as it might help me too.

Thanks
Twinster
__________________
Thanks
Twinster
X-Cart Gold v4.1.9
Reply With Quote
  #7  
Old 12-07-2008, 11:22 AM
  ADDISON's Avatar 
ADDISON ADDISON is offline
 

X-Man
  
Join Date: Jan 2008
Posts: 2,613
 

Default Re: Manufacturers Module - Option box need it

Almost 10 months from my post. As you may already informed Telefirma is gone from the desk.

Anybody made this happened for a noble cause?
__________________
X-Cart Next: Business 5.2 (learning and testing)
X-Cart Classic: Gold and Gold Plus 4.7
Lots of Modules and Customizations
OS in use: Red Hat Enterprise, Fedora, CentOS, Debian, Ubuntu, Linux Mint, Kali Linux
Ideas for Server configuration (basicaly): Nginx/Pound (reverse proxy), Apache/Nginx (webserver), Squid/Varnish (cache server), HHVM or (PHP-FPM + PHP 5.6 + opcache), MariaDB/Percona MySQL Server, Redis (storing sessions)

You can catch my ideas here: http://ideas.x-cart.com
Reply With Quote
  #8  
Old 12-09-2008, 04:29 AM
  JWait's Avatar 
JWait JWait is offline
 

X-Man
  
Join Date: Nov 2005
Location: California
Posts: 2,440
 

Default Re: Manufacturers Module - Option box need it

We have dozens of manufacturers. While not exactly what you want, here is our solution....
skin1/modules/Manufacturers/menu_manufacturers.tpl
Code:
{if $manufacturers_menu ne ''} {capture name=menu} <form name="form_manuf" method="get" action="manufacturers.php"> <select size="12" name="manufacturerid" onchange="document.form_manuf.submit()"> {section name=mid loop=$manufacturers_menu} <option value="{$manufacturers_menu[mid].manufacturerid}">{$manufacturers_menu[mid].manufacturer|truncate:18:"...":true}</option> {/section} </select> </form> {/capture} {include file="menu.tpl" dingbats="dingbats_categorie.gif" menu_title=$lng.lbl_manufacturers menu_content=$smarty.capture.menu} {/if}

What it does is makes a "scroll box" that lists your manufacturers.

The <select size="12".. specifies how many manufacturers are displayed at one time. In this case it is 12 manufacturers high.

The {$manufacturers_menu[mid].manufacturer|truncate:18:"...":true} specifies how long the displayed name is (so it will fit in your column and not wrap). In this case it is 18 characters long.
__________________
Two Separate X-Cart Stores
Version 4.4.4 Gold - X-AOM - Vivid Dreams Aquamarine (modified) - Linux
Mods - Newest Products - View All -, and a few others. Numerous upgrades from 4.0.x series.
Integrated with Stone Edge Order Manager + POS

Version 4.1.12 Gold (fresh install) - X-AOM - Linux
Mods - XCSEO free
Reply With Quote
  #9  
Old 12-12-2008, 11:31 AM
  ADDISON's Avatar 
ADDISON ADDISON is offline
 

X-Man
  
Join Date: Jan 2008
Posts: 2,613
 

Default Re: Manufacturers Module - Option box need it

JWait I have 28 manufacturers and I would like to create a form to chose one of them with one click. Listing all 28 it takes a lot of space. Hope it is clear for you.

Did you solution solve this issue?
__________________
X-Cart Next: Business 5.2 (learning and testing)
X-Cart Classic: Gold and Gold Plus 4.7
Lots of Modules and Customizations
OS in use: Red Hat Enterprise, Fedora, CentOS, Debian, Ubuntu, Linux Mint, Kali Linux
Ideas for Server configuration (basicaly): Nginx/Pound (reverse proxy), Apache/Nginx (webserver), Squid/Varnish (cache server), HHVM or (PHP-FPM + PHP 5.6 + opcache), MariaDB/Percona MySQL Server, Redis (storing sessions)

You can catch my ideas here: http://ideas.x-cart.com
Reply With Quote
  #10  
Old 12-12-2008, 02:01 PM
 
jr_halli2 jr_halli2 is offline
 

Member
  
Join Date: Aug 2007
Posts: 12
 

Default Re: Manufacturers Module - Option box need it

Jwait - i have a similar issue and would like to see how your solution looks. Can you post a link?
__________________
JR
X-Cart 4.1.9
Reply With Quote
Reply
   X-Cart forums > X-Cart 4 > Dev Questions > Changing design



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -8. The time now is 07:11 PM.

   

 
X-Cart forums © 2001-2020