Zen Cart Logo
Forums / Addon Templates / Apple Zen Support Thread

Apple Zen Support Thread

Views: 855,646

Results 1,361 to 1,380 of 3,042
31 Oct 2007, 6:18 PM
#1361
dezinejunkie avatar

dezinejunkie

New Zenner

Join Date:
Jan 2007
Posts:
49
Plugin Contributions:
0

Apple Zen Support Thread

On **Product listing **(displaying multiple products under categories) my images are butting up each other: Here is a screenshot. In the CSS style sheet is this where i correct this? I cant seem to find where it is listed. :frusty:

Under New Product searches there is a rule between products.
Can a rule shown under products listing in categories?

31 Oct 2007, 7:53 PM
#1362
sermonzone avatar

sermonzone

Zen Follower

Join Date:
Oct 2005
Location:
New Mexico
Posts:
365
Plugin Contributions:
0

Re: Apple Zen Support Thread

jettrue:

Did you go to "configuration', "product listing", and change "product listing layout style" to "columns"? That was part of the installation steps.

As I said in th PM, perhaps I am a dunce but cannot find those directions in the ReadMe for 1.8 or 2.2 and cannot find that control switch in the Admin.

I did a fresh install of the template and am getting the same issue. No horizontal padding between products in the category list. Seems to work fine for 'list ALL products.' Take a look at -

http://www.sermonzone.com/zc-137/index.php?main_page=index&cPath=8

Sure would appreciate any suggestions on what class controls this item in the CSS (since I am virtually CSS illiterate, :blink: just ask DrByte).

31 Oct 2007, 8:21 PM
#1363
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Apple Zen Support Thread

Sermonzone:

As I said in th PM, perhaps I am a dunce but cannot find those directions in the ReadMe for 1.8 or 2.2 and cannot find that control switch in the Admin.

I did a fresh install of the template and am getting the same issue. No horizontal padding between products in the category list. Seems to work fine for 'list ALL products.' Take a look at -

http://www.sermonzone.com/zc-137/index.php?main_page=index&cPath=8

Sure would appreciate any suggestions on what class controls this item in the CSS (since I am virtually CSS illiterate, :blink: just ask DrByte).

Sorry, I have a few templates in action, and when you said you liked the lines between products, it popped in my head that I was answering a question in my cherry zen template thread, which has a different product listing style than apple zen. That template has those instructions, and that setting in the admin, apple zen does not.

So, to get space between the product listings, and a line between each one, you could add this to your css:

.productListing-data {border-bottom:1px solid #000000;margin:10px;padding:10px;}

31 Oct 2007, 8:26 PM
#1364
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Apple Zen Support Thread

DezineJunkie:

On my sideboxes Credit Cards Accepted is not reading correctly:
Here is the code from the file below:
**BOX_HEADING_CC_ACCEPT **this is how it reads on my sideboxes.
In my includes languages english.php file there is no coding to define box heading cc accept. Do i need to add that in the file and if so how exactly should it read?
IN the download section, the credit card accept mod DOES have a language file with BOX_HEADING_CC_ACCEPT in it, make sure all files are uploaded.

31 Oct 2007, 8:27 PM
#1365
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Apple Zen Support Thread

DezineJunkie:

On **Product listing **(displaying multiple products under categories) my images are butting up each other: Here is a screenshot. In the CSS style sheet is this where i correct this? I cant seem to find where it is listed. :frusty:

Under New Product searches there is a rule between products.
Can a rule shown under products listing in categories?

Add this to your css:
.productListing-data {border-bottom:1px solid #000000;margin:10px;padding:10px;}

31 Oct 2007, 10:39 PM
#1366
srturner47 avatar

srturner47

Zen Follower

Join Date:
Oct 2007
Posts:
385
Plugin Contributions:
0

Re: Apple Zen Support Thread

I'm sorry. I really don't know squat about CSS. Most of what I have done has been through trial and error. I've spent about 4 hours trying to figure this out, and I just don't get it. Here is the code for the alpha sorter:

<?php /** * product_listing_alpha_sorter module * * @package modules * @copyright Copyright 2003-2006 Zen Cart Development Team * @copyright Portions Copyright 2003 osCommerce * @license <http://www.zen-cart.com/license/2_0.txt> GNU Public License V2.0 * @version $Id: product_listing_alpha_sorter.php 4330 2006-08-31 17:10:26Z ajeh $ */ if (!defined('IS_ADMIN_FLAG')) { die('Illegal Access'); } // build alpha sorter dropdown if (PRODUCT_LIST_ALPHA_SORTER == 'true') { if ((int)$_GET['alpha_filter_id'] == 0) { $letters_list[] = array('id' => '0', 'text' => TEXT_PRODUCTS_LISTING_ALPHA_SORTER_NAMES); } else { $letters_list[] = array('id' => '0', 'text' => TEXT_PRODUCTS_LISTING_ALPHA_SORTER_NAMES_RESET); } for ($i=65; $i<91; $i++) { $letters_list[] = array('id' => sprintf('%02d', $i), 'text' => chr($i) ); } for ($i=48; $i<58; $i++) { $letters_list[] = array('id' => sprintf('%02d', $i), 'text' => chr($i) ); } if (TEXT_PRODUCTS_LISTING_ALPHA_SORTER != '') { echo '<label class="inputLabel">' . TEXT_PRODUCTS_LISTING_ALPHA_SORTER . '</label>' . zen_draw_pull_down_menu('alpha_filter_id', $letters_list, (isset($_GET['alpha_filter_id']) ? $_GET['alpha_filter_id'] : ''), 'onchange="this.form.submit()"'); } else { echo zen_draw_pull_down_menu('alpha_filter_id', $letters_list, (isset($_GET['alpha_filter_id']) ? $_GET['alpha_filter_id'] : ''), 'onchange="this.form.submit()"'); } } ?>

I don't see anything like #sorter select in there that I could use.....

Sorry. I am a total newb. I appreciate any help someone could provide in moving the alpha sorter to the right of the screen so that the menus don't overlap it causing a problem in IE6.

Thanks!

31 Oct 2007, 11:56 PM
#1367
srturner47 avatar

srturner47

Zen Follower

Join Date:
Oct 2007
Posts:
385
Plugin Contributions:
0

Re: Apple Zen Support Thread

EEKK!!! I found another problem. :( I hope I am not too annoying. My site layout is pretty much set, but I am working to test and find problems right now. So, I am full of problems.

Here's the issue:

With Apple Zen, in IE7, if you activate a submenu under "Categories" and then move your mouse to the webpage from the submenu, when you hover over Categories again, you will get a blank part where the submenus were before. Attached is a screenshot from Jettrue's webpage that shows the problem. Any idea how to fix that?

By the way, I am more than happy to make a contribution, Jettrue. Your template is essential for my site, and I certainly appreciate all the effort you have put into it and giving advice on this thread. Is there any way I can do so?

Thanks!

1 Nov 2007, 1:15 AM
#1368
dezinejunkie avatar

dezinejunkie

New Zenner

Join Date:
Jan 2007
Posts:
49
Plugin Contributions:
0

Re: Apple Zen Support Thread

Sermonzone:

As I said in th PM, perhaps I am a dunce but cannot find those directions in the ReadMe for 1.8 or 2.2 and cannot find that control switch in the Admin.

I did a fresh install of the template and am getting the same issue. No horizontal padding between products in the category list. Seems to work fine for 'list ALL products.' Take a look at -

http://www.sermonzone.com/zc-137/index.php?main_page=index&cPath=8

Sure would appreciate any suggestions on what class controls this item in the CSS (since I am virtually CSS illiterate, :blink: just ask DrByte).

**in case you did not figure it out this is it
go to downloads and get this
column_layout_grid_v_1_3_6
after install you will find the configurartion to select columns
to tired excuse my spelling:clap:
**

1 Nov 2007, 10:58 PM
#1369
krispyskingdom avatar

krispyskingdom

New Zenner

Join Date:
Sep 2005
Posts:
35
Plugin Contributions:
0

Re: Apple Zen Support Thread

Is it possible to have the drop menu only show 1 level for specific categories and 2 levels for other categories?

For example, I have the following categories...

Design Services
Website Hosting
Print Shop

I would like the first two to not show sub-categories when hovered, but have Print Shop show its sub-categories.

1 Nov 2007, 11:16 PM
#1370
krispyskingdom avatar

krispyskingdom

New Zenner

Join Date:
Sep 2005
Posts:
35
Plugin Contributions:
0

Re: Apple Zen Support Thread

KrispysKingdom:

Is it possible to have the drop menu only show 1 level for specific categories and 2 levels for other categories?

For example, I have the following categories...

Design Services
Website Hosting
Print Shop

I would like the first two to not show sub-categories when hovered, but have Print Shop show its sub-categories.

Nevermind! I realized what I needed to do. I just added a new menu option called services and manually inserted the categories that I don't want the sub-categories to show for.

2 Nov 2007, 9:17 PM
#1371
dezinejunkie avatar

dezinejunkie

New Zenner

Join Date:
Jan 2007
Posts:
49
Plugin Contributions:
0

Re: Apple Zen Support Thread

where is the ADD TO CART button? I dont seem to see it anywhere;
ive attached a screenshot to show u what i mean- no place to buy the product? :flex:

2 Nov 2007, 10:46 PM
#1372
gsanders334 avatar

gsanders334

New Zenner

Join Date:
Nov 2007
Posts:
1
Plugin Contributions:
0

Re: Apple Zen Support Thread

Okay so for some reason I can figure out everything but this little (what should be obvious) issue of getting rid of the "To change any of the site colors, open up includes/templates/apple_zen/css/stylesheet.css. To overwrite your own logo, upload your logo.gif to includes/templates/apple_zen/images/" in the header...

I tried changing it in the template_info.php file where I found it, but it doesn't do a thing, so I must be looking in the wrong place...

I'd love for someone to point me in the right direction! Thanks a bunch!

2 Nov 2007, 10:54 PM
#1373
torrence avatar

torrence

New Zenner

Join Date:
Nov 2007
Posts:
23
Plugin Contributions:
0

Re: Apple Zen Support Thread

Hi Folks,

Noob here...I'm looking for anyone to have a look and tell me what I may be missing? I had this working under the default green, and when I've tried to use this template (which looks awesome by the way!), it displays "incomplete".

http://www.tierra-norte.com/store

ANY insight would be great please!

Thanks.

2 Nov 2007, 11:39 PM
#1374
torrence avatar

torrence

New Zenner

Join Date:
Nov 2007
Posts:
23
Plugin Contributions:
0

Re: Apple Zen Support Thread

By "incomplete"...I mean not all of it shows up, and there are error messages. On the green default, where the large grey box currently is, WAS the featured products.

3 Nov 2007, 12:36 AM
#1375
krispyskingdom avatar

krispyskingdom

New Zenner

Join Date:
Sep 2005
Posts:
35
Plugin Contributions:
0

Re: Apple Zen Support Thread

DezineJunkie:

where is the ADD TO CART button? I dont seem to see it anywhere;
ive attached a screenshot to show u what i mean- no place to buy the product? :flex:

In your screen shot, the Out of Stock image has replaced the Add to Cart button. You will have to add quantity to the item, or change your settings for the Add to Cart button to show.

torrence:

Hi Folks,

Noob here...I'm looking for anyone to have a look and tell me what I may be missing? I had this working under the default green, and when I've tried to use this template (which looks awesome by the way!), it displays "incomplete".

http://www.tierra-norte.com/store

ANY insight would be great please!

Thanks.

It looks like you are missing the following file...

/home/torrence/public_html/store/includes/templates/apple_zen/common/tpl_drop_menu.php 
3 Nov 2007, 12:49 AM
#1376
torrence avatar

torrence

New Zenner

Join Date:
Nov 2007
Posts:
23
Plugin Contributions:
0

Re: Apple Zen Support Thread

hmmm...the file exists, and is in that location....

3 Nov 2007, 12:58 AM
#1377
torrence avatar

torrence

New Zenner

Join Date:
Nov 2007
Posts:
23
Plugin Contributions:
0

Re: Apple Zen Support Thread

Found it....I needed to copy the other php file (categories_ul_generator.php) in the error into the "other" includes folder! (Thanks for pointing me in right direction!)

Now...just need to figure out the titles (as in what's wrong with them!), and how to display 3 items across (in the same row) on each page...and I'll be ecstatic.

3 Nov 2007, 2:28 AM
#1378
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Apple Zen Support Thread

srturner47:

I'm sorry. I really don't know squat about CSS. Most of what I have done has been through trial and error. I've spent about 4 hours trying to figure this out, and I just don't get it. Here is the code for the alpha sorter:

**echo '<label class="inputLabel">' . TEXT_PRODUCTS_LISTING_ALPHA_SORTER . **

I don't see anything like #sorter select in there that I could use.....

Sorry. I am a total newb. I appreciate any help someone could provide in moving the alpha sorter to the right of the screen so that the menus don't overlap it causing a problem in IE6.

Thanks!

You could try .inputLabel

Sorry for the delayed reply! Busy days....

3 Nov 2007, 2:32 AM
#1379
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Apple Zen Support Thread

srturner47:

EEKK!!! I found another problem. :( I hope I am not too annoying. My site layout is pretty much set, but I am working to test and find problems right now. So, I am full of problems.

Here's the issue:

With Apple Zen, in IE7, if you activate a submenu under "Categories" and then move your mouse to the webpage from the submenu, when you hover over Categories again, you will get a blank part where the submenus were before. Attached is a screenshot from Jettrue's webpage that shows the problem. Any idea how to fix that?

By the way, I am more than happy to make a contribution, Jettrue. Your template is essential for my site, and I certainly appreciate all the effort you have put into it and giving advice on this thread. Is there any way I can do so?

Thanks!

HI!

Yes, that is a known issue, with no resolution... so you have to decide whether or not you can live with it...

As far as a contribution, please read the readme, at the top there is info on that. :hug:

3 Nov 2007, 2:34 AM
#1380
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Apple Zen Support Thread

gsanders334:

Okay so for some reason I can figure out everything but this little (what should be obvious) issue of getting rid of the "To change any of the site colors, open up includes/templates/apple_zen/css/stylesheet.css. To overwrite your own logo, upload your logo.gif to includes/templates/apple_zen/images/" in the header...

I tried changing it in the template_info.php file where I found it, but it doesn't do a thing, so I must be looking in the wrong place...

I'd love for someone to point me in the right direction! Thanks a bunch!

Any time like that you have text you don't know where to change, its probably in a language file, and to find exactly what file, search for a portion of it in your admin, under "tools", "developers tool kit". I always go down to the bottom search (search all) and then I choose "all files, catalog and admin". This will tell you just where to change it.