Zen Cart Logo
Forums / Addon Templates / Cherry Zen Template Support Thread

Cherry Zen Template Support Thread

Views: 844,970

Results 641 to 660 of 3,245
14 Dec 2007, 6:00 PM
#641
accyjohn avatar

accyjohn

New Zenner

Join Date:
Mar 2007
Posts:
21
Plugin Contributions:
0

Cherry Zen Template Support Thread

Hi
Bit of a newbie question, but where is the text on the very first page that starts with
Congratulations! You have successfully

and then the following image that starts with 'Have you got yours

I think Im having a bad day!

14 Dec 2007, 8:47 PM
#642
mediathing avatar

mediathing

Zen Follower

Join Date:
Apr 2005
Location:
London
Posts:
405
Plugin Contributions:
0

Re: Cherry Zen Template Support Thread

Going to try the original stylesheet in a little while, in the mean time with the nav links along the top, how can I get them to align to the left. I tried the align left in the css but it only shifts them over towards the left a little bit.

I'll let you know about the stylesheet in a little while.

Thanks
Pete

14 Dec 2007, 10:43 PM
#643
jettrue avatar

jettrue

Totally Zenned

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

Re: Cherry Zen Template Support Thread

accyjohn:

Hi
Bit of a newbie question, but where is the text on the very first page that starts with
Congratulations! You have successfully

and then the following image that starts with 'Have you got yours

I think Im having a bad day!

This would have been an easy question to search within the forum or FAQ section, by the way:

a)includes/languages/YOUR_TEMPLATE/english.php

b)"Tools", "define pages editor", "define_main_page.php"

15 Dec 2007, 5:12 AM
#644
veronika7747 avatar

veronika7747

Zen Follower

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

Re: Cherry Zen Template Support Thread

Hi;
I am trying to increase the space between "Description" "Model" "Short Desc" and "Price" (data, not the headings) when I display Categories. I looked in the css, but was only able to make the "description" left justified. Is it possible to specified the max. width for the description in order to give more room for the Model, Short Desc. etc?
After a day of trying to work with Short Description add-on, I realized that it does not work with this template, but I still like to use it so I am trying to work around it.
Tx

15 Dec 2007, 6:00 AM
#645
veronika7747 avatar

veronika7747

Zen Follower

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

Re: Cherry Zen Template Support Thread

one more question..
I would like to include * Short name: XXXX in between Model & Manufacturer

*  Model: 12345
** Short name: XXXX*   
* Manufactured by: ABC

but after few attempts, I am no closer. I know it has to come inside the following:

<!--bof Product details list Manufacturer for me --> <?php if ( (($flag_show_product_info_model == 1 and $products_model != '') or ($flag_show_product_info_weight == 1 and $products_weight !=0) or ($flag_show_product_info_quantity == 1) or ($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name))) ) { ?> <ul id="productDetailsList"> <?php echo (($flag_show_product_info_model == 1 and $products_model !='') ? '<li>' . TEXT_PRODUCT_MODEL . $products_model . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_weight == 1 and $products_weight !=0) ? '<li>' . TEXT_PRODUCT_WEIGHT . $products_weight . TEXT_PRODUCT_WEIGHT_UNIT . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_quantity == 1) ? '<li>' . $products_quantity . TEXT_PRODUCT_QUANTITY . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name)) ? '<li>' . TEXT_PRODUCT_MANUFACTURER . $manufacturers_name . '</li>' : '') . "\n"; ?> </ul> <?php } ?> <!--eof Product details list -->

Any assistance will be greatly appreciated!

15 Dec 2007, 7:32 PM
#646
jettrue avatar

jettrue

Totally Zenned

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

Re: Cherry Zen Template Support Thread

Veronika7747:

one more question..
I would like to include * Short name: XXXX in between Model & Manufacturer

*  Model: 12345
** Short name: XXXX*   
* Manufactured by: ABC

but after few attempts, I am no closer. I know it has to come inside the following:

<!--bof Product details list Manufacturer for me --> <?php if ( (($flag_show_product_info_model == 1 and $products_model != '') or ($flag_show_product_info_weight == 1 and $products_weight !=0) or ($flag_show_product_info_quantity == 1) or ($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name))) ) { ?> <ul id="productDetailsList"> <?php echo (($flag_show_product_info_model == 1 and $products_model !='') ? '<li>' . TEXT_PRODUCT_MODEL . $products_model . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_weight == 1 and $products_weight !=0) ? '<li>' . TEXT_PRODUCT_WEIGHT . $products_weight . TEXT_PRODUCT_WEIGHT_UNIT . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_quantity == 1) ? '<li>' . $products_quantity . TEXT_PRODUCT_QUANTITY . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name)) ? '<li>' . TEXT_PRODUCT_MANUFACTURER . $manufacturers_name . '</li>' : '') . "\n"; ?> </ul> <?php } ?> <!--eof Product details list -->

Any assistance will be greatly appreciated!

There's no reason for short description not to work on this template. Once you have all the other files in place, simply paste this where you want it to go:

<?php if (PRODUCT_INFO_SHORT_DESC == 1) { echo '<li>' . $products_short_desc . '</li>'; } ?>

I'd paste it right before this chunk:

<?php echo (($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name)) ? '<li>' . TEXT_PRODUCT_MANUFACTURER . $manufacturers_name . '</li>' : '') . "\n"; ?>
15 Dec 2007, 7:33 PM
#647
jettrue avatar

jettrue

Totally Zenned

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

Re: Cherry Zen Template Support Thread

Veronika7747:

Hi;
I am trying to increase the space between "Description" "Model" "Short Desc" and "Price" (data, not the headings) when I display Categories. I looked in the css, but was only able to make the "description" left justified. Is it possible to specified the max. width for the description in order to give more room for the Model, Short Desc. etc?
After a day of trying to work with Short Description add-on, I realized that it does not work with this template, but I still like to use it so I am trying to work around it.
Tx

Can you link me to the page you're referring to?

15 Dec 2007, 7:40 PM
#648
veronika7747 avatar

veronika7747

Zen Follower

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

Re: Cherry Zen Template Support Thread

jettrue:

Can you link me to the page you're referring to?

Since I am having difficulties with Short Desc., the test site on ISP does not have it yet. But even when you look at:
http://store.annron.com/index.php?main_page=index&cPath=1
there is not much space between the long desc. and the Model.
I just noticed that that left justify I did justifies all data (including the price). How can I left justify ONLY the long desc.?

15 Dec 2007, 8:15 PM
#649
veronika7747 avatar

veronika7747

Zen Follower

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

Re: Cherry Zen Template Support Thread

jettrue:

There's no reason for short description not to work on this template. Once you have all the other files in place, simply paste this where you want it to go:

<?php if (PRODUCT_INFO_SHORT_DESC == 1) { echo '<li>' . $products_short_desc . '</li>'; } ?>

I'd paste it right before this chunk:

<?php echo (($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name)) ? '<li>' . TEXT_PRODUCT_MANUFACTURER . $manufacturers_name . '</li>' : '') . "\n"; ?>



This works, all it needs is a ": " 

    *  Sub_Category**: **Magic Mazes
    * Model: MZ500B
    * Manufactured by: Lee Publication


   <?php 
if (PRODUCT_INFO_SHORT_DESC == 1) {
echo '<li>' . TABLE_HEADING_SHORT_DESC . $products_short_desc . '</li>' ;
}
?>

but when I try to include it, I don't get any display at all, but I'll keep trying.

Thanks!
15 Dec 2007, 9:37 PM
#650
jettrue avatar

jettrue

Totally Zenned

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

Re: Cherry Zen Template Support Thread

Veronika7747:

This works, all it needs is a ": "

*  Sub_Category**: **Magic Mazes
* Model: MZ500B
* Manufactured by: Lee Publication

but when I try to include it, I don't get any display at all, but I'll keep trying.

Thanks!

<?php if (PRODUCT_INFO_SHORT_DESC == 1) { echo '<li>' . TABLE_HEADING_SHORT_DESC . $products_short_desc . ': ' . '</li>' ; } ?>
15 Dec 2007, 9:58 PM
#651
jettrue avatar

jettrue

Totally Zenned

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

Re: Cherry Zen Template Support Thread

Veronika7747:

Since I am having difficulties with Short Desc., the test site on ISP does not have it yet. But even when you look at:
http://store.annron.com/index.php?main_page=index&cPath=1
there is not much space between the long desc. and the Model.
I just noticed that that left justify I did justifies all data (including the price). How can I left justify ONLY the long desc.?

In the admin, you can decrease the width of the add to cart colum, under "configuration", "Product Listing, "Display Product Price/Add to Cart Column Width". Making that smaller will give you more room.

Also, the description text there is already left justified, so remove this:

.productListing-data
{
	text-align:left; 
	padding-right:10px; 
	}

And you can add this to get more padding around the description:

.listingDescription{padding:10px;}
15 Dec 2007, 10:21 PM
#652
veronika7747 avatar

veronika7747

Zen Follower

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

Re: Cherry Zen Template Support Thread

[QUOTE=jettrue;475775]In the admin, you can decrease the width of the add to cart colum, under "configuration", "Product Listing, "Display Product Price/Add to Cart Column Width". Making that smaller will give you more room.

Above just gives more room for all the other things, but not more space between Short Desc. and Model. Right now, headings for these two run together.
Thank you for all your help.

15 Dec 2007, 11:24 PM
#653
jettrue avatar

jettrue

Totally Zenned

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

Re: Cherry Zen Template Support Thread

[QUOTE=Veronika7747;475782]> jettrue:

In the admin, you can decrease the width of the add to cart colum, under "configuration", "Product Listing, "Display Product Price/Add to Cart Column Width". Making that smaller will give you more room.

Above just gives more room for all the other things, but not more space between Short Desc. and Model. Right now, headings for these two run together.
Thank you for all your help.

You didn't add this part, as per my instructions:
.listingDescription{padding:10px;}

16 Dec 2007, 2:01 AM
#654
veronika7747 avatar

veronika7747

Zen Follower

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

Re: Cherry Zen Template Support Thread

[QUOTE=jettrue;475797]> Veronika7747:

You didn't add this part, as per my instructions:
.listingDescription{padding:10px;}

Sorry, I was still working on my laptop version. I've uploaded to ISP, it now includes Short Description (heading Sub_Category on my page) and when you look at: http://store.annron.com/index.php?main_page=index&cPath=1
you can see what I was trying to adjust (space between that and Model), but it's O.K., I am happy I was able to incorporate short desc. into the template without seeing "double".

Thanks again

16 Dec 2007, 12:53 PM
#655
jettrue avatar

jettrue

Totally Zenned

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

Re: Cherry Zen Template Support Thread

[QUOTE=Veronika7747;475849]> jettrue:

Sorry, I was still working on my laptop version. I've uploaded to ISP, it now includes Short Description (heading Sub_Category on my page) and when you look at: http://store.annron.com/index.php?main_page=index&cPath=1
you can see what I was trying to adjust (space between that and Model), but it's O.K., I am happy I was able to incorporate short desc. into the template without seeing "double".

Thanks again
Well, if I were you, I'd remove some of those things. Do the shoppers really need to see the model number? Or even the subcategory?

Anyhoo, I've played around with some css coding that will help. I would first change your price column width to something smaller, like 75 or 100, like I mentioned before.

Then remove your .productlisting-data css, and then add this chunk:

.productListing-data {text-align:center;}
/* Added for more space around long desc and left justify text */
.listingDescription{padding:10px;text-align:left;}
#listCell0-0{width:165px;} /width of image column/
#listCell0-1 {width:450px;} /width of description column/

Now, this won't help the padding all that much between subcategory and model, it will only help with a wide browser. I think you just have TOO much there, and there's not much to do about that, except remove some.

16 Dec 2007, 5:13 PM
#656
marks99 avatar

marks99

New Zenner

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

Re: Cherry Zen Template Support Thread

jettrue:

Make sure all the language files from the template are uploaded and are in their correct spots.

Many Thanks for thank there was one in the wrong place. Sorry its took so long to get back on here lol

16 Dec 2007, 6:19 PM
#657
veronika7747 avatar

veronika7747

Zen Follower

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

Re: Cherry Zen Template Support Thread

[QUOTE=jettrue;475954]> Veronika7747:

Well, if I were you, I'd remove some of those things. Do the shoppers really need to see the model number? Or even the subcategory?

Anyhoo, I've played around with some css coding that will help. I would first change your price column width to something smaller, like 75 or 100, like I mentioned before.

Then remove your .productlisting-data css, and then add this chunk:

.productListing-data {text-align:center;}
/* Added for more space around long desc and left justify text */
.listingDescription{padding:10px;text-align:left;}
#listCell0-0{width:165px;} /width of image column/
#listCell0-1 {width:450px;} /width of description column/

Now, this won't help the padding all that much between subcategory and model, it will only help with a wide browser. I think you just have TOO much there, and there's not much to do about that, except remove some.

Thank you again. Once finished this will be retail & wholesale site and the "Model" is the product ID which is required for wholesale. I managed to change the word "Model" to "ID", but not on the heading as yet.
Also during my upload, I "lost" the data for sub_category on the display page. It works fine on my laptop... and I am still trying to find the pages to include this additional field on "all listing, new listing etc."

17 Dec 2007, 12:04 AM
#658
jettrue avatar

jettrue

Totally Zenned

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

Re: Cherry Zen Template Support Thread

[QUOTE=Veronika7747;476055]> jettrue:

Thank you again. Once finished this will be retail & wholesale site and the "Model" is the product ID which is required for wholesale. I managed to change the word "Model" to "ID", but not on the heading as yet.
Also during my upload, I "lost" the data for sub_category on the display page. It works fine on my laptop... and I am still trying to find the pages to include this additional field on "all listing, new listing etc."

But does the customer need to see the model number before they add it to their cart? The model # will show up on your admin details, and on their invoice, I think.

Anyhoo...

You may find the subcategory code here you added here:

tpl_modules_product_listing.php, since its working on your Product Listing page.

17 Dec 2007, 1:29 AM
#659
veronika7747 avatar

veronika7747

Zen Follower

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

Re: Cherry Zen Template Support Thread

[QUOTE=jettrue;476167]> Veronika7747:

But does the customer need to see the model number before they add it to their cart? The model # will show up on your admin details, and on their invoice, I think.

Anyhoo...

You may find the subcategory code here you added here:

tpl_modules_product_listing.php, since its working on your Product Listing page.

All the tpl_ were/are identical, BUT my main_template_vars.php did not upload properly! Took me almost a whole day to find it..
Thank you for your help!

17 Dec 2007, 1:42 AM
#660
fireflyz avatar

fireflyz

New Zenner

Join Date:
May 2007
Location:
Los Angeles
Posts:
89
Plugin Contributions:
0

Re: Cherry Zen Template Support Thread

Hi Jettrue,
Thank you very vey much for this wonderful template! I think it's one of the best out there, free or paid.. and I'm donating once I'm done with twicking the template.
I have an issue I'm hoping you can guide me how to resolve it. I don't remember doing anything to cause this but here is the problem: on product and category listing the Model, Manufacturer name and image are bunched up together (only on some items). You can see it here: hxxp://www.arearugsclub.com/rugs/index.php?main_page=index&cPath=1

thank you very much!

PS: I sent a pm while ago, did you get it?