Zen Cart Logo

Template Fluorspar

Views: 135,981

Results 101 to 120 of 298
12 Jun 2021, 5:50 PM
#101
helenewallis avatar

helenewallis

Totally Zenned

Join Date:
Jun 2016
Location:
Suffolk VA
Posts:
625
Plugin Contributions:
0

Template Fluorspar

One more issues--it appears that multiple product images are not supported in this theme? Or is that true for all the responsive themes? I can live with that but I do like the multiple product images available in the Classic theme I'm using now.

12 Jun 2021, 6:25 PM
#103
helenewallis avatar

helenewallis

Totally Zenned

Join Date:
Jun 2016
Location:
Suffolk VA
Posts:
625
Plugin Contributions:
0

Re: Template Fluorspar

Thanks, I'll have another look. I know I have image names formatted correctly, because they're the same ones I use on my current website.

And it is indeed working. Not sure what I was doing wrong, but thanks for prodding me to take a second look.

29 Jun 2021, 3:24 PM
#104
g2ktcf avatar

g2ktcf

Totally Zenned

Join Date:
Feb 2011
Location:
Lumberton, TX
Posts:
636
Plugin Contributions:
0

Re: Template Fluorspar

I have an issue with the Grid format for products. I have some product descriptions that are longer than the others. The wrapped text causes that one product view to be larger vertically than all the others. Is there a way to make this a common height?

29 Jun 2021, 8:36 PM
#105
dbltoe avatar

dbltoe

Totally Zenned

Join Date:
Jan 2004
Location:
N of San Antonio TX
Posts:
9,768
Plugin Contributions:
9

Re: Template Fluorspar

Are you speaking of the actual product's page or the all products listing?

29 Jun 2021, 9:48 PM
#106
g2ktcf avatar

g2ktcf

Totally Zenned

Join Date:
Feb 2011
Location:
Lumberton, TX
Posts:
636
Plugin Contributions:
0

Re: Template Fluorspar

dbltoe:

Are you speaking of the actual product's page or the all products listing?

all products listing

30 Jun 2021, 12:37 AM
#108
g2ktcf avatar

g2ktcf

Totally Zenned

Join Date:
Feb 2011
Location:
Lumberton, TX
Posts:
636
Plugin Contributions:
0

Re: Template Fluorspar

dbltoe:

How does yours differ from https://www.zenofobe.com/demos/index.php?main_page=products_all?

that is the same thing I get. Its the design of the template itself. I would like to have them all be the same. Certainly it is more visually appealing.

30 Jun 2021, 1:13 AM
#109
dbltoe avatar

dbltoe

Totally Zenned

Join Date:
Jan 2004
Location:
N of San Antonio TX
Posts:
9,768
Plugin Contributions:
9

Re: Template Fluorspar

Is it that you want the "boxes" to all be the same size regardless of their content? Normally, if grid were used, you would just add a css call of {max-height:###px;} to make all the boxes in the grid a standard height.

Not familiar with the template but looking at the css doesn't look like grid was setup in the stylesheet.

Doesn't look like peejay has been on in a while. Hope all is well. And, hope someone knows the template a little better to point you in the right direction.

30 Jun 2021, 9:44 AM
#110
g2ktcf avatar

g2ktcf

Totally Zenned

Join Date:
Feb 2011
Location:
Lumberton, TX
Posts:
636
Plugin Contributions:
0

Re: Template Fluorspar

dbltoe:

Is it that you want the "boxes" to all be the same size regardless of their content? Normally, if grid were used, you would just add a css call of {max-height:###px;} to make all the boxes in the grid a standard height.

Not familiar with the template but looking at the css doesn't look like grid was setup in the stylesheet.

Doesn't look like peejay has been on in a while. Hope all is well. And, hope someone knows the template a little better to point you in the right direction.

I can look at adding max-height. I am not super familiar with css. I can work with it but I am not fully competent in knowing what all the "options" are for each element/div.

30 Jun 2021, 9:50 PM
#111
dbltoe avatar

dbltoe

Totally Zenned

Join Date:
Jan 2004
Location:
N of San Antonio TX
Posts:
9,768
Plugin Contributions:
9

Re: Template Fluorspar

I don't have an available play spot right now so I can't download and see. Hoping the author will pop in.

The things I would expect to see in the CSS don't seem to be there.

4 Jul 2021, 5:19 PM
#112
g2ktcf avatar

g2ktcf

Totally Zenned

Join Date:
Feb 2011
Location:
Lumberton, TX
Posts:
636
Plugin Contributions:
0

Re: Template Fluorspar

I need to remove "Brands" from this Megamenu. However, it seems to be built up from the database. I have looked through all the mega menu code and even surfed the database entries but I just cannot find that one item.

Attachment 19663

4 Jul 2021, 6:16 PM
#113
g2ktcf avatar

g2ktcf

Totally Zenned

Join Date:
Feb 2011
Location:
Lumberton, TX
Posts:
636
Plugin Contributions:
0

Re: Template Fluorspar

g2ktcf:

I need to remove "Brands" from this Megamenu. However, it seems to be built up from the database. I have looked through all the mega menu code and even surfed the database entries but I just cannot find that one item.

Attachment 19663

Oh, removing all the manufacturer's from the Configuration side works! However, we do have a couple of manufacturer's that I would like to add to the products, I just do not want that menu item.

4 Jul 2021, 10:24 PM
#114
dbltoe avatar

dbltoe

Totally Zenned

Join Date:
Jan 2004
Location:
N of San Antonio TX
Posts:
9,768
Plugin Contributions:
9

Re: Template Fluorspar

You've taken them out but, the easy way is to view with inspect while the brands is showing. Then you can see the class of the <li> that's presenting the data styling in includes/templates/fluorspar/css/stylesheet_header_menu.css.

.brands is a guess since it appears in the aforementioned stylesheet.

Adding li.brands {display:none;} where it will load last in the css chain will keep the menu item from displaying. We recommend creating a stylesheet_zcustom.css for such additions. Makes it easier at upgrade/change.

4 Jul 2021, 11:29 PM
#115
g2ktcf avatar

g2ktcf

Totally Zenned

Join Date:
Feb 2011
Location:
Lumberton, TX
Posts:
636
Plugin Contributions:
0

Re: Template Fluorspar

dbltoe:

You've taken them out but, the easy way is to view with inspect while the brands is showing. Then you can see the class of the <li> that's presenting the data styling in includes/templates/fluorspar/css/stylesheet_header_menu.css.

.brands is a guess since it appears in the aforementioned stylesheet.

Adding li.brands {display:none;} where it will load last in the css chain will keep the menu item from displaying. We recommend creating a stylesheet_zcustom.css for such additions. Makes it easier at upgrade/change.

I will have to go back and look again but I do not remember seeing that class.

5 Jul 2021, 6:48 PM
#116
dbltoe avatar

dbltoe

Totally Zenned

Join Date:
Jan 2004
Location:
N of San Antonio TX
Posts:
9,768
Plugin Contributions:
9

Re: Template Fluorspar

Now that you have Brands back, the entry to make it go away is:

li.manufacturers-li.fullwidth {display: none;}
5 Jul 2021, 6:52 PM
#117
g2ktcf avatar

g2ktcf

Totally Zenned

Join Date:
Feb 2011
Location:
Lumberton, TX
Posts:
636
Plugin Contributions:
0

Re: Template Fluorspar

dbltoe:

Now that you have Brands back, the entry to make it go away is:

li.manufacturers-li.fullwidth {display: none;}


Ha!  I did an upload with EP4 earlier and accidentally put the Manf back in! lol  That was the element that I was looking for though.  Thanks!
5 Jul 2021, 7:35 PM
#118
g2ktcf avatar

g2ktcf

Totally Zenned

Join Date:
Feb 2011
Location:
Lumberton, TX
Posts:
636
Plugin Contributions:
0

Re: Template Fluorspar

I do not know if this is the right place for this question. I am getting the following warning....

[05-Jul-2021 19:31:33 UTC] Request URI: /index.php?main_page=product_info&products_id=293, IP address: 167.114.158.215
#1 getimagesize() called at [/includes/templates/fluorspar/templates/tpl_modules_main_product_image.php:23]
#2 require(/includes/templates/fluorspar/templates/tpl_modules_main_product_image.php) called at [/includes/templates/fluorspar/templates/tpl_product_info_display.php:51]
#3 require(/includes/templates/fluorspar/templates/tpl_product_info_display.php) called at [/includes/modules/pages/product_info/main_template_vars.php:153]
#4 require(/includes/modules/pages/product_info/main_template_vars.php) called at [/includes/templates/fluorspar/common/tpl_main_page.php:315]
#5 require(/includes/templates/fluorspar/common/tpl_main_page.php) called at [/index.php:94]
--> PHP Warning: getimagesize(images/medium/no_picture_MED.gif): failed to open stream: No such file or directory in /includes/templates/fluorspar/templates/tpl_modules_main_product_image.php on line 23.

This appears to be telling me that no_picture_MED.gif exists. This used to happen in pairs with the LRG image until I created these images and placed them in the appropriate folders. The LRG error has now gone away...but this one persists?

5 Jul 2021, 9:16 PM
#119
g2ktcf avatar

g2ktcf

Totally Zenned

Join Date:
Feb 2011
Location:
Lumberton, TX
Posts:
636
Plugin Contributions:
0

Re: Template Fluorspar

This is happening on every product that does not have a product image. Once I create a load a base, Medium and Large product image, the problem goes away.

15 Jul 2021, 10:00 AM
#120
g2ktcf avatar

g2ktcf

Totally Zenned

Join Date:
Feb 2011
Location:
Lumberton, TX
Posts:
636
Plugin Contributions:
0

Re: Template Fluorspar

dbltoe:

Now that you have Brands back, the entry to make it go away is:

li.manufacturers-li.fullwidth {display: none;}


Finally got around to doing this.  Worked like a champ!  Thanks!!