Re: Apple Zen Support Thread
Quote:
Originally Posted by
TripleMoons
I have a few questions regarding the Drop Down Menu section...
I want to put next to the drop down menus links to the pages from the "Define Pages Editor" (the 'Page 2,' Page 3,' etc.). How is this done?
I also want to change the names of those menus (CATEGORIES to AVAILABLE for example).
I believe those are my only questions at this time. :)
Did you know that this template is setup to automatically add any pages that you setup in EZPAGES to your drop down menu? You just have to adjust a few settings, the instructions for getting EZPages into the information menu are in the readme.txt. This would be easier than getting the other pages into the drop menu.
Re: Apple Zen Support Thread
Quote:
Originally Posted by
hebbe
Dear Jade,
Thank you for your help.
Now I have another question, so sorry for my poooor web build experience.
I d like to let my products details page shows like this, what can I do?
Thank you again.
Regards,
Hebbe
You'll have to open up includes/templates/YOUR_TEMPLATE/templates/tpl_product_info_display.php, and move things around. Everything in that page is nicely sectioned off, so you can move the cart section below the price, etc. Then you'll need to adjust things in the css most likely, so just get things in the right order, then I can help you get the css adjusted if needed.
Re: Apple Zen Support Thread
I'm sorry, this is probably a really simple question, but for the life of me I can't figure out what I'm doing wrong.
I downloaded AppleZen and know I'm supposed to upload the "includes" folder to my public_html folder and miraculously the files are supposed to appear where they should be and then I can go into Admin and choose AppleZen from my template choices.
I must be doing something wrong as AppleZen does not appear as one of my template choices in admin after I upload the "includes" folder.
This is what I've been doing step by step, I'm hoping someone will correct my mistake.
1. After I download AppleZen I have a folder called "AppleZen" that sits on my PC.
inside this "AppleZen" folder are four items (two folders and two files). One of the folder is "includes".
2. I assume that the aforementioned "includes" file is the one that I need to upload so I copy just that folder and it's contents to my web site's root directory on my local machine.
3. Using Dreamweaver I take that "includes" folder and copy it to the main "/" folder on my remote server.
What am I doing wrong?
I don't see a public_html folder on my hosting server, is it the same as the "/"?
Should I not have removed the "includes" folder from the "AppleZen" folder in the beginning?
Should I be copying the "includes" folder to the "zencart/includes/templates/" folder instead?
Any help would be much appreciated, I've been trying to install this thing for three hours and I'm at my wits end.:shocking:
Re: Apple Zen Support Thread
Quote:
Originally Posted by
greggpow
I'm sorry, this is probably a really simple question, but for the life of me I can't figure out what I'm doing wrong.
I downloaded AppleZen and know I'm supposed to upload the "includes" folder to my public_html folder and miraculously the files are supposed to appear where they should be and then I can go into Admin and choose AppleZen from my template choices.
I must be doing something wrong as AppleZen does not appear as one of my template choices in admin after I upload the "includes" folder.
This is what I've been doing step by step, I'm hoping someone will correct my mistake.
1. After I download AppleZen I have a folder called "AppleZen" that sits on my PC.
inside this "AppleZen" folder are four items (two folders and two files). One of the folder is "includes".
2. I assume that the aforementioned "includes" file is the one that I need to upload so I copy just that folder and it's contents to my web site's root directory on my local machine.
3. Using Dreamweaver I take that "includes" folder and copy it to the main "/" folder on my remote server.
What am I doing wrong?
I don't see a public_html folder on my hosting server, is it the same as the "/"?
Should I not have removed the "includes" folder from the "AppleZen" folder in the beginning?
Should I be copying the "includes" folder to the "zencart/includes/templates/" folder instead?
Any help would be much appreciated, I've been trying to install this thing for three hours and I'm at my wits end.:shocking:
The includes folder goes into the root of your store, whatever that is. If you have your store at:
http://www.mysite.com/store
then the includes folder would go in /store
if you have your store at http://www.mysite.com, then your includes folder goes in the public_html folder. It goes in the same level that you have
admin
cache
docs
download
editors
email
extras
images
includes <-- it goes here
media
pub
Now, after uploading, make sure by looking at the remote site, that everything did indeed upload into the right spot. Also, if includes/templates/apple_zen/template_info.php didn't get uploaded, the template won't show in the admin.
Re: Apple Zen Support Thread
Dear Jade,
Thanks for your kindly help.
Now I have set special price for my products to let it shows two price there,but I want change a little the text organize like this:
http://www.tophobbyshop.com/question.jpg
What can I do?
Thank you again.
Regards,
Hebbe
Re: Apple Zen Support Thread
My 3rd-level subcategories are displaying weird. Is this something to do with the template?
See http://www.ilasco.co.uk and select GEAR > POLICE > and then click on SPECIALIST UNITS.
The layout one level up [eg. when you click on Police] is fine
Re: Apple Zen Support Thread
Thank you... I got it to install... I knew I was missing something simple....
Re: Apple Zen Support Thread
Quote:
Originally Posted by
high2K
My 3rd-level subcategories are displaying weird. Is this something to do with the template?
See
http://www.ilasco.co.uk and select GEAR > POLICE > and then click on SPECIALIST UNITS.
The layout one level up [eg. when you click on Police] is fine
Its because of the category image. I'd turn it off under "Configuration", "Product Listing", "Include Product Listing Sub Categories Image".
Or, includes/templates/YOUR_TEMPLATE/templates/tpl_index_categories.php, and add
Code:
<br class="clearBoth" />
after
Code:
<div id="categoryImgListing" class="categoryImg"><?php echo zen_image(DIR_WS_IMAGES . $categories_image, '', SUBCATEGORY_IMAGE_TOP_WIDTH, SUBCATEGORY_IMAGE_TOP_HEIGHT); ?></div>
Re: Apple Zen Support Thread
Quote:
Originally Posted by
hebbe
Dear Jade,
Thanks for your kindly help.
Now I have set special price for my products to let it shows two price there,but I want change a little the text organize like this:
http://www.tophobbyshop.com/question.jpg
What can I do?
Thank you again.
Regards,
Hebbe
As far as getting the "Our Price" in there, you can add it in includes/templates/YOUR_TEMPLATE/template/tpl_product_info_display.php by changing this:
Code:
echo $one_time . ((zen_has_product_attributes_values((int)$_GET['products_id']) and $flag_show_product_info_starting_at == 1) ? TEXT_BASE_PRICE : '') . zen_get_products_display_price((int)$_GET['products_id']);
to this:
Code:
echo $one_time . ((zen_has_product_attributes_values((int)$_GET['products_id']) and $flag_show_product_info_starting_at == 1) ? TEXT_BASE_PRICE : 'Our Price: ') . zen_get_products_display_price((int)$_GET['products_id']);
But as far as getting rid of the percentage off and such, I'd start a new thread about that in the general forum.
Re: Apple Zen Support Thread
Quote:
Originally Posted by
jettrue
Did you know that this template is setup to automatically add any pages that you setup in EZPAGES to your drop down menu? You just have to adjust a few settings, the instructions for getting EZPages into the information menu are in the readme.txt. This would be easier than getting the other pages into the drop menu.
Thanks for the reply. :)
I don't want the EZPages to show up under the Information menu. I have a specific page structure that I need to follow for the pages, which is why I need JUST certain pages to show up in the menu bar.
Example:
Collection --> Ball Pythons | Boa Constrictors | Cornsnakes | Crested Geckos