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

Apple Zen Support Thread

Views: 855,625

Results 1,961 to 1,980 of 3,042
14 May 2008, 9:48 PM
#1961
jealouz avatar

jealouz

New Zenner

Join Date:
May 2008
Posts:
9
Plugin Contributions:
0

Apple Zen Support Thread

The individual product page, i had that changed already (no header, nofooter, no sidebars). and yes, the page that display the products by categories.

The product_display_listing calls the tpl_tabular something but there's no "href" in there, where would i see the one that defines the href ??

here's my site: LINK

jettrue:

I have no idea on how to get it to display in a popup window, this would be a good question for the general forum.

The product listing, if you are talking about the actual single product page, is controlled by includes/templates/YOUR_TEMPLATE/templates/tpl_product_info_display.php

If you are talking about the page with all of the products in a category, a lot of pages are involved in that.

14 May 2008, 10:05 PM
#1962
jettrue avatar

jettrue

Totally Zenned

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

Re: Apple Zen Support Thread

jealouz:

The individual product page, i had that changed already (no header, nofooter, no sidebars). and yes, the page that display the products by categories.

The product_display_listing calls the tpl_tabular something but there's no "href" in there, where would i see the one that defines the href ??

here's my site: LINK

Did you try includes/modules/product_listing.php?

14 May 2008, 10:29 PM
#1963
jealouz avatar

jealouz

New Zenner

Join Date:
May 2008
Posts:
9
Plugin Contributions:
0

Re: Apple Zen Support Thread

Sweet! You're right that's the file Jade.

Got another issue though, i use the code: javascript:popupWindow (hilited in red), link isn't working, not popping (this is the same code i use for the shopping_cart which worked fine)

Error is : OBJECT EXPECTED

<a href="javascript:popupWindow('' . zen_href_link(zen_get_info_page($listing->fields['products_id']), 'cPath=' . (($_GET['manufacturers_id'] > 0 and $_GET['filter_id']) > 0 ? zen_get_generated_category_path_rev($_GET['filter_id']) : ($_GET['cPath'] > 0 ? zen_get_generated_category_path_rev($_GET['cPath']) : zen_get_generated_category_path_rev($listing->fields['master_categories_id']))) . '&products_id=' . $listing->fields['products_id']) . '')">' . $listing->fields['products_name'] . '</a>

code applied to the product names link on this part of my website: **LINK**

jettrue:

Did you try includes/modules/product_listing.php?

14 May 2008, 10:37 PM
#1964
jettrue avatar

jettrue

Totally Zenned

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

Re: Apple Zen Support Thread

jealouz:

Sweet! You're right that's the file Jade.

Got another issue though, i use the code: javascript:popupWindow (hilited in red), link isn't working, not popping (this is the same code i use for the shopping_cart which worked fine)

Error is : OBJECT EXPECTED

<a href="javascript:popupWindow('' . zen_href_link(zen_get_info_page($listing->fields['products_id']), 'cPath=' . (($_GET['manufacturers_id'] > 0 and $_GET['filter_id']) > 0 ? zen_get_generated_category_path_rev($_GET['filter_id']) : ($_GET['cPath'] > 0 ? zen_get_generated_category_path_rev($_GET['cPath']) : zen_get_generated_category_path_rev($listing->fields['master_categories_id']))) . '&products_id=' . $listing->fields['products_id']) . '')">' . $listing->fields['products_name'] . '</a>

code applied to the product names link on this part of my website: **LINK**
THe shopping cart page has the javascript for the popupWindow.

SO open up includes/modules/pages/shopping_cart/jscript_main.php

Copy it to includes/modules/pages/index/

You may want to only include the popupWindow portion:

<script language="javascript" type="text/javascript"><!--
function popupWindow(url) {
  window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=550,height=550,screenX=150,screenY=100,top=100,left=150')
}
//--></script>
14 May 2008, 10:47 PM
#1965
jealouz avatar

jealouz

New Zenner

Join Date:
May 2008
Posts:
9
Plugin Contributions:
0

Re: Apple Zen Support Thread

:hug::hug::hug:

It worked!!!

clap::clap::clap::

Thanks so much!!!

**One last question, on the window that popped open, if i put a link to another page, how to i target the original window???
**

jettrue:

THe shopping cart page has the javascript for the popupWindow.

SO open up includes/modules/pages/shopping_cart/jscript_main.php

Copy it to includes/modules/pages/index/

You may want to only include the popupWindow portion:

<script language="javascript" type="text/javascript"><!-- function popupWindow(url) { window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=550,height=550,screenX=150,screenY=100,top=100,left=150') } //--></script>
14 May 2008, 10:58 PM
#1966
jettrue avatar

jettrue

Totally Zenned

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

Re: Apple Zen Support Thread

jealouz:

:hug::hug::hug:

It worked!!!

clap::clap::clap::

Thanks so much!!!

**One last question, on the window that popped open, if i put a link to another page, how to i target the original window???
**

You can't pop it back to the old window, as far as I know.

15 May 2008, 4:44 AM
#1967
gugush avatar

gugush

New Zenner

Join Date:
May 2008
Posts:
4
Plugin Contributions:
0

Re: Apple Zen Support Thread

Hello, i have been reading this topic for a while. Cannot find the answer. I have installed this awesome template on my 1.3.8 . and i have a very simple question. There is some text written on top of template: "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/"

i found this text in template_info.php and replaced with mine sure keeping all ' ' in places. But this text is still showing up. Is where anywhere else i can find this text to replace?
Thanks.

15 May 2008, 1:30 PM
#1968
athena avatar

athena

Totally Zenned

Join Date:
Jan 2006
Location:
NM
Posts:
740
Plugin Contributions:
0

Re: Apple Zen Support Thread

The site went blank yesterday after I uploaded the style sheet. I thought it was my browser and I closed down for the day. Don't know what is going on but I can see all the files in the right places. Thank you for this suggestion and the template. I"ll work on this today and report back.

15 May 2008, 2:14 PM
#1969
athena avatar

athena

Totally Zenned

Join Date:
Jan 2006
Location:
NM
Posts:
740
Plugin Contributions:
0

Re: Apple Zen Support Thread

OK, had an apostrophy in the header title......

Let's try again. Here it is:

http://www.thethreadedneedle.com/shop/

Right column is transparent

15 May 2008, 4:57 PM
#1970
athena avatar

athena

Totally Zenned

Join Date:
Jan 2006
Location:
NM
Posts:
740
Plugin Contributions:
0

Re: Apple Zen Support Thread

I'm all set. That was it...don't know how I missed it. Really admire your work on this. I'm not much of a gif gal so missed the mask on the content_bg

15 May 2008, 5:51 PM
#1971
sunnyone avatar

sunnyone

New Zenner

Join Date:
Apr 2008
Posts:
9
Plugin Contributions:
0

Re: Apple Zen Support Thread

Hello:

Thank you for the wonderful template.

I have somehow lost the "about us" page - it was there but then I renamed the folders (I think). I was wondering if you have any tips for trying to locate it. I can see it when I choose it in my "define pages" section in admin, but I get a 404 error when trying to access it.

I re-uploaded the files in the "about us" download that I found earlier in the thread - still nothing. I believe I followed the structure of where to put folders and files.

Thanks for any help - the site in question is in the sig.

15 May 2008, 10:12 PM
#1972
jettrue avatar

jettrue

Totally Zenned

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

Re: Apple Zen Support Thread

sunnyone:

Hello:

Thank you for the wonderful template.

I have somehow lost the "about us" page - it was there but then I renamed the folders (I think). I was wondering if you have any tips for trying to locate it. I can see it when I choose it in my "define pages" section in admin, but I get a 404 error when trying to access it.

I re-uploaded the files in the "about us" download that I found earlier in the thread - still nothing. I believe I followed the structure of where to put folders and files.

Thanks for any help - the site in question is in the sig.

If its not working, all files aren't uploaded in the right spot, that's the only advice I can give, your guess as to which file is missing is as good as mine. If you've downloaded the about us mod from the downloads section, go through EACH file, and make sure its in the right spot.

16 May 2008, 5:07 PM
#1973
johnga avatar

johnga

Zen Follower

Join Date:
Oct 2005
Location:
San Francisco
Posts:
100
Plugin Contributions:
0

Re: Apple Zen Support Thread

Hi,
I'm back to working on my site - I forget everything I learned and have to start from scratch.. anyway, I am about to install a new header so I have to get back up to speed. One problem I am having is in IE. Since I use a Mac, I can't easily check my site in IE, but I am told that it is wrapping funny, and the drop downs don't work. Could someone check it out for me and suggest a fix? Since I can't even see what is happening, I am loathe to start tinkering, since it displays fine in Safari and Ff. Thanks!!!

20 May 2008, 5:15 PM
#1974
barleywine avatar

barleywine

New Zenner

Join Date:
May 2008
Posts:
14
Plugin Contributions:
0

Re: Apple Zen Support Thread

barleywine:

Hi There,

Another Zen newbie who absolutely LOVES your template here!
There is a fair amount of customization I'm doing though, starting with adding images to the top level only of the dropdown menu, so that the drop down part is still plain text, but the part that's always visible is the same graphic style as the header images of my sideboxes. Is this something I can do with CSS, or is it in the menu php file, or do I have to hard code something? Or can it be done at all?

Here's the link:
http://purple-eggplant.com/zc/

Any and all help is MUCH appreciated!

Thank you so much for all your hard work on this beautiful template!

Anyone? My deadline is fast approaching, and I could really use some advice! :(

Thanks again,

20 May 2008, 11:43 PM
#1975
jettrue avatar

jettrue

Totally Zenned

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

Re: Apple Zen Support Thread

barleywine:

Anyone? My deadline is fast approaching, and I could really use some advice! :(

Thanks again,

You can do this in the css.
This should get you in the right direction:

div#dropMenu ul.level1 li {background: url(../images/your_image_here.gif) no-repeat;}
div#dropMenu ul.level1 ul.level2 li {background-image:none;}

Put the image in includes/templates/YOUR_TEMPLATE/images/

21 May 2008, 1:26 AM
#1976
evariety avatar

evariety

New Zenner

Join Date:
Apr 2008
Posts:
24
Plugin Contributions:
0

Re: Apple Zen Support Thread

hi all, i'm new at zen cart
I have succefull install the apple zen template and I love it very much. Everything run smoothly.
Few days ago, I try to download the Image Handler 2 v.1.3x, after I install the Image Handler I cant view my image at the Product Listing & Products Details, then I try to delete all the file that I install and also replace back my backup copy, now I can see the image at the Product Listing but I can't see the image at the Products Details, anybody can help me? Is that I have miss any file?
Appreciate if you all can help me to solve this matter.
Thank you

my link is http://e-variety.anggugu.com

21 May 2008, 1:34 AM
#1977
evariety avatar

evariety

New Zenner

Join Date:
Apr 2008
Posts:
24
Plugin Contributions:
0

Re: Apple Zen Support Thread

hi all, i'm new at zen cart
I have successfully install the apple zen template, I love it very much, and I have run smoothly for my e-shop
Few days ago, I try to install the Image Handler 2 v.1.3x, after I install I found that I can see all the Image at the Products Listing & also Products Details, then I try to delete all the file that I add and replace back my backup copy(assume I dont want to install the Image Handler already) then I can see the Image at the Products Listing but I can't see the image at the Products Details. Anybody can help me on this? is that I have miss any file?
Appreciate if anybody here can help me.
Thank you

My link is http://e-variety.anggugu.com

21 May 2008, 10:41 AM
#1978
jettrue avatar

jettrue

Totally Zenned

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

Re: Apple Zen Support Thread

evariety:

hi all, i'm new at zen cart
I have successfully install the apple zen template, I love it very much, and I have run smoothly for my e-shop
Few days ago, I try to install the Image Handler 2 v.1.3x, after I install I found that I can see all the Image at the Products Listing & also Products Details, then I try to delete all the file that I add and replace back my backup copy(assume I dont want to install the Image Handler already) then I can see the Image at the Products Listing but I can't see the image at the Products Details. Anybody can help me on this? is that I have miss any file?
Appreciate if anybody here can help me.
Thank you

My link is http://e-variety.anggugu.com

Image handler is still working on the product details page.

Did you remove includes/modules/main_product_image.php

and includes/modules/additional_images.php

and includes/pages/popup_image

and includes/pages/popup_image_additional

Check the IH2 download, and go through each and every file to make sure it is removed.

21 May 2008, 3:21 PM
#1979
evariety avatar

evariety

New Zenner

Join Date:
Apr 2008
Posts:
24
Plugin Contributions:
0

Re: Apple Zen Support Thread

jettrue:

Image handler is still working on the product details page.

Did you remove includes/modules/main_product_image.php

and includes/modules/additional_images.php

and includes/pages/popup_image

and includes/pages/popup_image_additional

Check the IH2 download, and go through each and every file to make sure it is removed.

thanks for your reply.
Yes, I do remove the below files
includes/modules/main_product_image.php
includes/modules/additional_images.php
and I also restore back this 2 file from my backup copy
includes/pages/popup_image
includes/pages/popup_image_additional
but the problem is still there. I have go through several times of every file but still cound't find the mistake.....can u help me??

21 May 2008, 4:47 PM
#1980
barleywine avatar

barleywine

New Zenner

Join Date:
May 2008
Posts:
14
Plugin Contributions:
0

Re: Apple Zen Support Thread

jettrue:

You can do this in the css.
This should get you in the right direction:

div#dropMenu ul.level1 li {background: url(../images/your_image_here.gif) no-repeat;}
div#dropMenu ul.level1 ul.level2 li {background-image:none;}

> 
> Put the image in includes/templates/YOUR_TEMPLATE/images/


Thanks so much Jade, for getting me started in the right direction, but...
what I had envisioned was that, like the side box image headers, each top level navigation button would be different - ie Home, Shop, About, cart, etc., with the nice font graphics I made, but this way, the same "shop" button goes all the way across the nav bar, repeated for every level 1 entry. 

(see attached screenshot)

That's why I was wondering if I needed to edit the dropdown menu template itself, but I was scared of messing something up.:dontgetit

Thanks again for all your help, and for a fabulous template!
Melissa