Zen Cart Logo
Forums / Addon Templates / Westminster New

Westminster New

Views: 494,259

Results 1,041 to 1,060 of 1,865
18 Jun 2015, 6:06 AM
#1041
lruskauff avatar

lruskauff

Totally Zenned

Join Date:
Sep 2008
Location:
WA
Posts:
559
Plugin Contributions:
0

Westminster New

Forgive me, I was looking at wrong color number. Compare to 6c2624 and you might want to look at my checkout page to make sure we are talking about the same area.

[COD
Line #42 : .messageStackWarning, .messageStackError {background-color:#6c2624;color:#fff;}

Line #43 : .messageStackSuccess {background-color:#6c2624;color:#fff;}

Line #44 : .messageStackCaution {background-color:#6c2624;color:#fff;}

Line #69 : #top-wrapper{width:100%;height:30px;background:#6c2624;color:#fff;text-align:left;padding-top:10px;padding-bottom:5px;}

Line #123 : .tableHeading TH {background:#6c2624;height:30px;color:#fff;}

Line #124 : .tableHeading{background-color:#6c2624;color:#fff;}

Line #216 : TR.tableHeading {background-color:#6c2624;height:35px;font-weight:normal;text-transform:uppercase;}

Line #223 : .seDisplayedAddressLabel {background-color:#6c2624;text-align:center;color:#fff;}

Line #262 : #productsListingListingBottomLinks a:hover, #productsListingListingTopLinks a:hover{background:#6c2624;color:#fff;}

Line #263 : .current{padding:8px;background:#6c2624;color:#fff;border:1px solid #dbdbce;}

Line #310 : .collapse-button {position: absolute;right: 8px;top: 50%;width: 40px;background: #6c2624;box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, 0 1px 0 rgba(255, 255, 255, 0.075);padding: 7px 10px;text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);cursor: pointer;font-size: 14px;text-align: center;transform: translate(0, -50%);-o-transform: translate(0, -50%);-ms-transform: translate(0, -50%);-moz-transform: translate(0, -50%);-webkit-transform: translate(0, -50%);box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box}

Line #321 : ul.slimmenu li a:hover, ul.slimmenu1 li a:hover {background:#6c2624;text-decoration: none;color:#fff;}

Line #326 : ul.slimmenu li ul li, ul.slimmenu1 li ul li {background:#6c2624;width:190px;padding-left:20px;font-size:95%;}

Line #392 : #flex-navSupp {display: table; width: 100%; background: #6c2624;color:#fff;}

Line #398 : .ffCcol4 i:hover{background:#6c2624;color:#fff;}

Line #411 : .cssButtonHover {color:#fff;background:#6c2624;text-decoration: none;} E][/CODE]

18 Jun 2015, 6:19 AM
#1042
lruskauff avatar

lruskauff

Totally Zenned

Join Date:
Sep 2008
Location:
WA
Posts:
559
Plugin Contributions:
0

Re: Westminster New

Checkout line 123 and 124

18 Jun 2015, 1:40 PM
#1043
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Westminster New

missesbeehaven:

Hello Anne,

I have begun adding products to the shop and I thought I had done customising the store look and feel until I noticed today that when I add a product to the shopping cart the black / white header for the cart contents is not showing correctly.

There is a grey background with white text however in the css it has #333 background and #fff text.

The table headings works for the other areas on the shopping cart page which call upon the same code from the CSS file as you will see and this is why I am stumped as to why this is displayed in this manner :blink: I really want to fix this as right now the heading table of the cart contents can not be read.

I've spent the morning using Firefox debug and web developer to try and find the source of the problem, but have had not luck. I also tried searching for instances of the #f4f4f4 code (this seems to be what I think the colour is of that incorrectly displayed table heading colour) and the css class names within the zencart admin development tools but nothing here either that shows a conflict or problem :-(

I would be so grateful Anne if you could please take a peek at my shop to help me with what I am over looking that needs to be adjust if you have a moment? http://www.beehavendesignz.com/shop

Thank you in advance Anne

I would be happy to help you out with this, but you need to turn off your css minify before I can give you a line number

Thanks,

Anne

18 Jun 2015, 6:44 PM
#1044
cyberfolli avatar

cyberfolli

New Zenner

Join Date:
Sep 2010
Posts:
64
Plugin Contributions:
0

Re: Westminster New

Specials are still not showing up and I think I am choosing the wrong numbers for them to display. All I want is specials on the main page.

19 Jun 2015, 2:16 PM
#1045
reetp avatar

reetp

New Zenner

Join Date:
Nov 2008
Posts:
46
Plugin Contributions:
0

Re: Westminster New

flexible_footer_menu.php

Not sure if this is a bug but when I look at the flexible footer admin menu I noticed that unless there was an image attached to a menu entry it shows something like this :

http://www.zimagez.com/zimage/screenshot-190615-160037.php

It seems no check is made for an image field. I am not sure the best way to sort this out (assuming it is an issue)

I did a quick hack so if there is no image it doesn't show anything like this :

--- files/myadmin/flexible_footer_menu.php 2015-06-19 15:31:40.000000000 +0200
+++ files_mods/myadmin/flexible_footer_menu.php 2015-06-19 16:11:59.000000000 +0200
@@ -291,7 +291,17 @@
echo ' <tr class="dataTableRow" onmouseover="rowOverEffect(this)" onmouseout="rowOutEffect(this)" onclick="document.location.href=\'' . zen_href_link(FILENAME_FLEXIBLE_FOOTER_MENU, 'flexfooter=' . $_GET['page'] . '&bID=' . $flexfooter->fields['page_id']) . '\'">' . "\n";
}
?>
-<td class="dataTableContent"><?php echo $flexfooter->fields['page_title'] . $flexfooter->fields['col_header'] . zen_image(DIR_WS_CATALOG_IMAGES . $flexfooter->fields['col_image']); ?></td>
+
+<td class="dataTableContent">
+<?php +if (($flexfooter->fields['col_image']) <> "" ) { +echo $flexfooter->fields['page_title'] . $flexfooter->fields['col_header'] . zen_image(DIR_WS_CATALOG_IMAGES . $flexfooter->fields['col_image']); +} +else { +echo $flexfooter->fields['page_title'] . $flexfooter->fields['col_header']; +} +?>
+</td>

<td class="dataTableContent"><?php echo $flexfooter->fields['col_id']; ?></td> <td class="dataTableContent"><?php echo $flexfooter->fields['col_sort_order']; ?></td>

Not sure if that is any good, but it works for me :-)

19 Jun 2015, 3:07 PM
#1046
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Westminster New

reetp:

flexible_footer_menu.php

Not sure if this is a bug but when I look at the flexible footer admin menu I noticed that unless there was an image attached to a menu entry it shows something like this :

http://www.zimagez.com/zimage/screenshot-190615-160037.php

It seems no check is made for an image field. I am not sure the best way to sort this out (assuming it is an issue)

I did a quick hack so if there is no image it doesn't show anything like this :

--- files/myadmin/flexible_footer_menu.php 2015-06-19 15:31:40.000000000 +0200
+++ files_mods/myadmin/flexible_footer_menu.php 2015-06-19 16:11:59.000000000 +0200
@@ -291,7 +291,17 @@
echo ' <tr class="dataTableRow" onmouseover="rowOverEffect(this)" onmouseout="rowOutEffect(this)" onclick="document.location.href=\'' . zen_href_link(FILENAME_FLEXIBLE_FOOTER_MENU, 'flexfooter=' . $_GET['page'] . '&bID=' . $flexfooter->fields['page_id']) . '\'">' . "\n";
}
?>
-<td class="dataTableContent"><?php echo $flexfooter->fields['page_title'] . $flexfooter->fields['col_header'] . zen_image(DIR_WS_CATALOG_IMAGES . $flexfooter->fields['col_image']); ?></td>
+
+<td class="dataTableContent">
+<?php +if (($flexfooter->fields['col_image']) <> "" ) { +echo $flexfooter->fields['page_title'] . $flexfooter->fields['col_header'] . zen_image(DIR_WS_CATALOG_IMAGES . $flexfooter->fields['col_image']); +} +else { +echo $flexfooter->fields['page_title'] . $flexfooter->fields['col_header']; +} +?>
+</td>

<td class="dataTableContent"><?php echo $flexfooter->fields['col_id']; ?></td> <td class="dataTableContent"><?php echo $flexfooter->fields['col_sort_order']; ?></td>

Not sure if that is any good, but it works for me :-)

Thank you for posting your solution.

This bug has already been noted for a future template update.

Thanks,

Anne

23 Jun 2015, 1:59 AM
#1047
racingtech avatar

racingtech

New Zenner

Join Date:
Nov 2012
Location:
US
Posts:
61
Plugin Contributions:
0

Re: Westminster New

I'm not sure if this is the correct way to do this but.
I installed the Westminster Responsive template with the sample data.
If I deactivate the Hardware category, the site no longer shows featured, special or new products in the body of the main page.
I done this both on an active site as well as on 2 installs on my home computer.
Is the template meant to be installed in a clean database? If so then it will work correctly.

Also if I delete that category, I lose the slider and the homead altogether and I was unable to get them back. Nothing had changed in the configuration of them.

Something is corrupted at lease in my install and I'm getting ready to reload (with an empty database) and don't want the same problem to occur.

Thanks

23 Jun 2015, 12:41 PM
#1048
reetp avatar

reetp

New Zenner

Join Date:
Nov 2008
Posts:
46
Plugin Contributions:
0

Re: Westminster New

Quick question - I wanted to add a Back button on the EZ-Pages I have.

Is that function of the template, or Zencart in general and does anyone know how I could add such a thing so that the EZ Pages match others ?

I can see there is a function zenCssButton in includes/functions/html_output.php but now sure how it would get called. I have had a good troll around and there are lots of old suggestions on doing this but I am not sure they are relevant now.

My main reason for asking is that I have a set of EZ-Pages that you get to from links in the About Us page. However, when you click on a page, instead of the breadcrumb showing

Home > About Us > MyEZPage

it shows Home > MyEZPage

I am not sure how I would change that so guessed a back button may be easier :-)

Any assistance appreciated.

B. Rgds
John

23 Jun 2015, 2:58 PM
#1049
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Westminster New

reetp:

Quick question - I wanted to add a Back button on the EZ-Pages I have.

Is that function of the template, or Zencart in general and does anyone know how I could add such a thing so that the EZ Pages match others ?

I can see there is a function zenCssButton in includes/functions/html_output.php but now sure how it would get called. I have had a good troll around and there are lots of old suggestions on doing this but I am not sure they are relevant now.

My main reason for asking is that I have a set of EZ-Pages that you get to from links in the About Us page. However, when you click on a page, instead of the breadcrumb showing

Home > About Us > MyEZPage

it shows Home > MyEZPage

I am not sure how I would change that so guessed a back button may be easier :-)

Any assistance appreciated.

B. Rgds
John

The back button is a core zen cart functionality. If you do a forum search you will find other posts that have the same question answered already.

Thanks,

Anne

25 Jun 2015, 6:05 AM
#1050
wwwd avatar

wwwd

Inactive

Join Date:
Nov 2012
Posts:
100
Plugin Contributions:
0

Re: Westminster New

What would be the easiest way to add a filter bar horizontally across the top? I need to filter by attributes but do not find an easy way to do it.

25 Jun 2015, 1:12 PM
#1051
racingtech avatar

racingtech

New Zenner

Join Date:
Nov 2012
Location:
US
Posts:
61
Plugin Contributions:
0

Re: Westminster New

I've just loaded the Westminter New template.

http://www.bikerschrome.com/

I'm having a some problems that you might find to be simple problems, having dealt with more issues than I have.

  1. The pages load but the images for the products sometimes do and sometimes don't. Usually if I refresh the page, the images will load but sometimes I have to refresh a second time.

  2. I looked enough to know that the Specials not showing isn't a problem specific to the template, but are you aware of a fix for this that I may not have stumbled upon.

Thanks in advance for taking a look.

25 Jun 2015, 2:47 PM
#1052
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Westminster New

WWWD:

What would be the easiest way to add a filter bar horizontally across the top? I need to filter by attributes but do not find an easy way to do it.

I would check the plugins section to see if something has already been written for this. If not, it will take custom programming.

Thanks,

Anne

25 Jun 2015, 2:53 PM
#1053
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Westminster New

racingtech:

I've just loaded the Westminter New template.

http://www.bikerschrome.com/

I'm having a some problems that you might find to be simple problems, having dealt with more issues than I have.

  1. The pages load but the images for the products sometimes do and sometimes don't. Usually if I refresh the page, the images will load but sometimes I have to refresh a second time.

  2. I looked enough to know that the Specials not showing isn't a problem specific to the template, but are you aware of a fix for this that I may not have stumbled upon.

Thanks in advance for taking a look.

  1. This is not template related. All of the template images are loading. Only your product images are having problems. Have you tried installing image handler?

  2. Try removing the includes/modules/westminster_new/specials_index.php file

Thanks,

Anne

25 Jun 2015, 3:03 PM
#1054
racingtech avatar

racingtech

New Zenner

Join Date:
Nov 2012
Location:
US
Posts:
61
Plugin Contributions:
0

Re: Westminster New

picaflor-azul:

  1. This is not template related. All of the template images are loading. Only your product images are having problems. Have you tried installing image handler?

  2. Try removing the includes/modules/westminster_new/specials_index.php file

Thanks,

Anne

Thanks for looking.

I'll try the specials removal.

Am I better of uploading the images to the main directory or into subdirectories based on the first 2 digits of the model number. I thought this would aid in page load speed, but I'm afraid it contributing to this problem.

So how do you handle images with alot of model numbers?

By the way, changing the specials_index.php to specials_index.php.bak worked. Thank you!

25 Jun 2015, 4:29 PM
#1055
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Westminster New

racingtech:

Thanks for looking.

I'll try the specials removal.

Am I better of uploading the images to the main directory or into subdirectories based on the first 2 digits of the model number. I thought this would aid in page load speed, but I'm afraid it contributing to this problem.

So how do you handle images with alot of model numbers?

By the way, changing the specials_index.php to specials_index.php.bak worked. Thank you!

I am happy that the specials are fixed.

I don't know if the numbered sub folders are causing a problem or if it is something else with your install. Have you tried installing image handler?

Thanks,

Anne

29 Jun 2015, 3:14 AM
#1056
wwwd avatar

wwwd

Inactive

Join Date:
Nov 2012
Posts:
100
Plugin Contributions:
0

Re: Westminster New

I tried loading the Variable Filter plug in and it failed miserably. I have now uninstalled the entire plug in and restored the pre-modified files but I am still getting the following code, it's done something to the template query files, apparently:

[28-Jun-2015 23:09:44 EST5EDT] [client 64.7.70.206 ] PHP Fatal error: 1054:Unknown column 'm.manufacturers_name' in 'field list' :: SELECT DISTINCT p.products_image, m.manufacturers_name, p.products_quantity, p.products_id, p.products_type, p.master_categories_id,
p.manufacturers_id, p.products_price, p.products_tax_class_id, pd.products_description, IF(s.status = 1,
s.specials_new_products_price, NULL) as specials_new_products_price, IF(s.status =1, s.specials_new_products_price,
p.products_price) as final_price, p.products_sort_order, p.product_is_call, p.product_is_always_free_shipping,
p.products_qty_box_status FROM cy6s_products p LEFT JOIN cy6s_specials s on p.products_id = s.products_id LEFT JOIN cy6s_products_description pd on p.products_id = pd.products_id JOIN cy6s_products_to_categories p2c on p.products_id = p2c.products_id WHERE p.products_status = 1
and pd.language_id = '1'
and p2c.categories_id = '2' GROUP BY p.products_id order by p.products_price_sorter , pd.products_name ==> (as called by) /big/dom/xscholledresses/www/includes/templates/westminster_new/templates/tpl_index_product_list.php on line 42 <== in /big/dom/xscholledresses/www/includes/classes/db/mysql/query_factory.php on line 155

Unfortunately, the client just informed me that he's dropped an add and his site is not loading atm.

29 Jun 2015, 3:24 AM
#1057
lruskauff avatar

lruskauff

Totally Zenned

Join Date:
Sep 2008
Location:
WA
Posts:
559
Plugin Contributions:
0

Re: Westminster New

wrong person, oops

29 Jun 2015, 2:50 PM
#1059
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Westminster New

WWWD:

How can I change the homepage to display http://www.scholledresses.com/index.php?main_page=products_all&disp_order=3 instead of the default text or alternately, display the all products listing below the two main banners on the regular homepage?

I have seen this answered a few times on the forum already. Please do a search of the forum to find the answers already posted.

Thanks,

Anne

29 Jun 2015, 6:50 PM
#1060
wwwd avatar

wwwd

Inactive

Join Date:
Nov 2012
Posts:
100
Plugin Contributions:
0

Re: Westminster New

Anne,

Thank you I just searched the forum for homepage but didn't find anything applicable. Can you give me a better idea what to search for, please? Client is breathing down my neck at the moment.

Tom