Zen Cart Logo
Forums / Addon Templates / Apparel Boutique Template Support Thread

Apparel Boutique Template Support Thread

Views: 95,871

Results 241 to 260 of 433
26 Apr 2011, 19:02
#241
rimo avatar

rimo

New Zenner

Join Date:
Jan 2011
Posts:
88
Plugin Contributions:
0

Apparel Boutique Template Support Thread

Hi,

A while ago i deleted some links in the footer under the category Information.
Now I'd like to add a custom link to my blog with the text Blog.
But how can I add this piece of code?

This is the footer code:

<?php
/**
 * Footer Menu Definitions
 *
 * @package templateSystem
 * @copyright Copyright 2003-2005 Zen Cart Development Team
 * @copyright Portions Copyright 2003 osCommerce
 * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V3.0
 * @version $Id: footer_menu_deines.php 1.0 5/9/2009 Clyde Jones $
 */

/*BOF Menu Column 1 link Definitions*/
Define('TITLE_ONE', '<li class="menuTitle">Overzicht</li>');
Define('HOME', '<li><a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">' . HEADER_TITLE_CATALOG . '</a></li>');
Define('FEATURED','<li><a href="' . zen_href_link(FILENAME_FEATURED_PRODUCTS) . '">' .  TABLE_HEADING_FEATURED_PRODUCTS .  '</a></li>');
Define('SPECIALS', '<li><a href="' . zen_href_link(FILENAME_SPECIALS) . '">' . BOX_HEADING_SPECIALS . '</a></li>');
Define('NEWPRODUCTS', '<li><a href="' . zen_href_link(FILENAME_PRODUCTS_NEW) . '">' . BOX_HEADING_WHATS_NEW . '</a></li>');
Define('ALLPRODUCTS', '<li><a href="' . zen_href_link(FILENAME_PRODUCTS_ALL) . '">' .CATEGORIES_BOX_HEADING_PRODUCTS_ALL . '</a></li>');
/*EOF Menu Column 1 link Definitions*/

/*OF Menu Column 2 link Definitions*/
Define('TITLE_TWO', '<li class="menuTitle">Informatie</li>');
Define('ABOUT', '<li><a href="' . zen_href_link(FILENAME_ABOUT_US) . '">' . BOX_INFORMATION_ABOUT_US . '</a></li>');
Define('SITEMAP', '<li><a href="' . zen_href_link(FILENAME_SITE_MAP) . '">' . BOX_INFORMATION_SITE_MAP . '</a></li>');
Define('GVFAQ', '');
Define('COUPON', '');
Define('UNSUBSCRIBE', '');
/*EOF Menu Column 2 link Definitions*/

/*BOF Menu Column 3 link Definitions*/
Define('TITLE_THREE', '<li class="menuTitle">Klantenservice</li>');
Define('CONTACT','<li><a href="' . zen_href_link(FILENAME_CONTACT_US) . '">' . BOX_INFORMATION_CONTACT . '</a></li>');
Define('SHIPPING', '<li><a href="' . zen_href_link(FILENAME_SHIPPING) . '">' . BOX_INFORMATION_SHIPPING . '</a></li>');
Define('PRIVACY', '<li><a href="' . zen_href_link(FILENAME_PRIVACY) . '">' . BOX_INFORMATION_PRIVACY . '</a></li>');
Define('CONDITIONS','<li><a href="' . zen_href_link(FILENAME_CONDITIONS) . '">' . BOX_INFORMATION_CONDITIONS . '</a></li>');
Define('ACCOUNT', '<li><a href="' . zen_href_link(FILENAME_ACCOUNT, '', 'SSL') .'">' . HEADER_TITLE_MY_ACCOUNT . '</a></li>');
/*EOF Menu Column 3 link Definitions*/

/*BOF Menu Column 4 link Definitions*/
Define('TITLE_FOUR', '<li class="menuTitle">Overige</li>');
/*The actual links are determined by "footer links" set in EZ-Pages
*EOF Menu Column 4 link Definitions
*/

/*BOF Footer Menu Definitions*/
Define('QUICKLINKS', '<dd class="first">
<ul>' . TITLE_ONE . HOME . FEATURED . SPECIALS . NEWPRODUCTS . ALLPRODUCTS . '</ul></dd>');
Define('INFORMATION', '<dd class="second">
<ul>' . TITLE_TWO . ABOUT . SITEMAP . GVFAQ . COUPON . UNSUBSCRIBE . '</ul></dd>');
Define('CUSTOMER_SERVICE', '<dd class="third">
<ul>' . TITLE_THREE . CONTACT . SHIPPING . PRIVACY . CONDITIONS . ACCOUNT . '</ul></dd>');
Define('IMPORTANT', '<dd><ul>' . TITLE_FOUR);
Define('IMPORTANT_END', '</ul></dd>');
/*EOF Footer Menu Definitions*/

define('TWITTER', 'http://www.twitter.com/SilvaroSieraden');
define('FACEBOOK','http://www.facebook.com/');
 

//EOF
26 Apr 2011, 21:07
#242
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Apparel Boutique Template Support Thread

Hi,

A while ago i deleted some links in the footer under the category Information.
Now I'd like to add a custom link to my blog with the text Blog.
But how can I add this piece of code?

The module that makes the footer is the footer menu mod. I would recommend searching that thread for the answer as I am certain it has been asked and answered already :smile:

Thanks,

Anne

12 May 2011, 08:59
#243
wabsblonde avatar

wabsblonde

New Zenner

Join Date:
Jun 2010
Posts:
2
Plugin Contributions:
0

Re: Apparel Boutique Template Support Thread

My zencart is 1.3.9f I'm using this template on my current site and playing around with it on a test site. What I'm trying to do is change the layout from the left column to the right. Just swap it around.. I already changed the layout setting in admin from 0 to 1 for right column.. that blue bar is back now on the right and it's pulling the side boxes from the default template.

I searched this thread and found in post #201 about someone wanting to make theirs in to a 3 column, you mentioned copying the left hand column selectors to the right hand column selectors. Would this be what I would do? If so what are the left hand column selectors I would copy and paste? I'm sorry, I cringe having to ask that but I'm very new to all this and I truly don't know what part of that code I would move and where I would put it.

Thanks

12 May 2011, 11:44
#244
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Apparel Boutique Template Support Thread

My zencart is 1.3.9f I'm using this template on my current site and playing around with it on a test site. What I'm trying to do is change the layout from the left column to the right. Just swap it around.. I already changed the layout setting in admin from 0 to 1 for right column.. that blue bar is back now on the right and it's pulling the side boxes from the default template.

I searched this thread and found in post #201 about someone wanting to make theirs in to a 3 column, you mentioned copying the left hand column selectors to the right hand column selectors. Would this be what I would do? If so what are the left hand column selectors I would copy and paste? I'm sorry, I cringe having to ask that but I'm very new to all this and I truly don't know what part of that code I would move and where I would put it.

Thanks

The template is designed as a 2 column layout using the left hand column for navigation. If you want to use the right hand column you will have to go into the stylesheet and copy all of the properties and values from the left hand column selectors to the right hand column selectors.

In a future update I do plan on including these.

Thanks,

Anne

17 May 2011, 20:12
#245
kman55 avatar

kman55

New Zenner

Join Date:
Feb 2011
Location:
Washington, D.C.
Posts:
80
Plugin Contributions:
0

Re: Apparel Boutique Template Support Thread

Hi Anne

Thank you for the great template. I've been working on the template and so others know, this template works well with amazon style checkout mod, zen lightbox mod, apsona and easy popluate very well. I have a few more mods that I'd like to use and when I get that up and running I will report back.

To my question - I've been searching for a while and can't seem to find an answer or a way around this - I'd like to move the "Home", "Contact us", "Log In", "Cart" etc. links to where the language and currencies are located? Any help/idea of how I can do that would be greatly appreciated.

17 May 2011, 22:12
#246
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Apparel Boutique Template Support Thread

Thank you for the great template. I've been working on the template and so others know, this template works well with amazon style checkout mod, zen lightbox mod, apsona and easy popluate very well. I have a few more mods that I'd like to use and when I get that up and running I will report back.

The template will work with any stable, well coded, correctly installed zen cart module.

To my question - I've been searching for a while and can't seem to find an answer or a way around this - I'd like to move the "Home", "Contact us", "Log In", "Cart" etc. links to where the language and currencies are located? Any help/idea of how I can do that would be greatly appreciated.

Edit the includes/templates/apparel_boutique/common/tpl_header.php file and the stylesheet.css file.

Thanks,

Anne

22 May 2011, 19:21
#247
sweetjaime avatar

sweetjaime

New Zenner

Join Date:
Feb 2006
Posts:
37
Plugin Contributions:
0

Re: Apparel Boutique Template Support Thread

I am hoping someone can help me with this, I have been searching, and have been reading through this thread with no luck. I love this template, but I cannot for the life of me locate where to change the orange hover colour that shows up on the sidebox and footer links. I have scoured my stylesheet, and changed everything that mentions hover, and yet I still have orange.
Any help?

22 May 2011, 22:25
#248
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Apparel Boutique Template Support Thread

I am hoping someone can help me with this, I have been searching, and have been reading through this thread with no luck. I love this template, but I cannot for the life of me locate where to change the orange hover colour that shows up on the sidebox and footer links. I have scoured my stylesheet, and changed everything that mentions hover, and yet I still have orange.
Any help?

Footer link hover is in the stylesheet_footer_menu.css file.

If you can be more specific about what sidebox (categories, etc.) I can try to help you. Also a link to your site would be very helpful.

Thanks,

Anne

23 May 2011, 03:16
#249
divaboutiques avatar

divaboutiques

Zen Follower

Join Date:
Feb 2007
Location:
Worldwide Web
Posts:
191
Plugin Contributions:
0

Re: Apparel Boutique Template Support Thread

I'm trying to add a background to my template, but i don't know what the css code should be, could anybody help????????

23 May 2011, 13:44
#250
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Apparel Boutique Template Support Thread

I'm trying to add a background to my template, but i don't know what the css code should be, could anybody help????????

It looks like you go this all sorted out. Don't forget to post your solution so that others who have this same question can benefit from your experience.

Thanks,

Anne

24 May 2011, 14:53
#251
rained avatar

rained

New Zenner

Join Date:
May 2011
Posts:
3
Plugin Contributions:
0

Re: Apparel Boutique Template Support Thread

v1.3.9h
I tried to install this template apparel_boutique

Look at my categories they are way off any one have a fix for this?

https://www.promotionforums.org/zencart

also the blue box to the right..

24 May 2011, 17:17
#252
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Apparel Boutique Template Support Thread

v1.3.9h
I tried to install this template apparel_boutique

Look at my categories they are way off any one have a fix for this?

https://www.promotionforums.org/zencart

also the blue box to the right..

Read the install.txt file and follow the configuration settings.

Thanks,

Anne

31 May 2011, 08:31
#253
catapolt avatar

catapolt

New Zenner

Join Date:
Mar 2011
Posts:
18
Plugin Contributions:
0

Re: Apparel Boutique Template Support Thread

Hi i have just built a clients web site using your template i was just wondering how i can remove twitter from all the pages so far only found how to remove it from main page
website is here http://www.jenecho.com/
keeping in mind i want to keep facebook thanks

31 May 2011, 12:28
#254
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Apparel Boutique Template Support Thread

Hi i have just built a clients web site using your template i was just wondering how i can remove twitter from all the pages so far only found how to remove it from main page
website is here http://www.jenecho.com/
keeping in mind i want to keep facebook thanks

Remove the add this code from the tpl_product_info_display.php

Thanks,

Anne

01 Jun 2011, 00:18
#255
catapolt avatar

catapolt

New Zenner

Join Date:
Mar 2011
Posts:
18
Plugin Contributions:
0

Re: Apparel Boutique Template Support Thread

picaflor-azul:

Remove the add this code from the tpl_product_info_display.php

Thanks,

Anne

Thanks you very much i have managed to only have facebook up now

02 Jun 2011, 13:34
#256
catapolt avatar

catapolt

New Zenner

Join Date:
Mar 2011
Posts:
18
Plugin Contributions:
0

Re: Apparel Boutique Template Support Thread

Hi could you please tell me what files are needed to edit?
Basically i am going to add more pictures to the slide show and add a link to every picture turn it into a kind of catalog

02 Jun 2011, 19:24
#257
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Apparel Boutique Template Support Thread

Hi could you please tell me what files are needed to edit?
Basically i am going to add more pictures to the slide show and add a link to every picture turn it into a kind of catalog

Full instructions on editing the slide show can be found in the install.txt file.

Thanks,

Anne

03 Jun 2011, 08:37
#258
catapolt avatar

catapolt

New Zenner

Join Date:
Mar 2011
Posts:
18
Plugin Contributions:
0

Re: Apparel Boutique Template Support Thread

picaflor-azul:

Full instructions on editing the slide show can be found in the install.txt file.

Thanks,

Anne
Ok thanks i got that sorted but by me having more pictures the buttons look messy how would i go about removing the buttons or changing them to 2 arrows one for next and other for previous

03 Jun 2011, 15:21
#259
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Apparel Boutique Template Support Thread

Ok thanks i got that sorted but by me having more pictures the buttons look messy how would i go about removing the buttons or changing them to 2 arrows one for next and other for previous

Instructions for customizing the slide show and slide show buttons are in the install.txt file.

Thanks,

Anne

04 Jun 2011, 02:58
#260
catapolt avatar

catapolt

New Zenner

Join Date:
Mar 2011
Posts:
18
Plugin Contributions:
0

Re: Apparel Boutique Template Support Thread

picaflor-azul:

Instructions for customizing the slide show and slide show buttons are in the install.txt file.

Thanks,

Anne
I dont see anything in the install.txt that tells me how to remove the slider buttons