Zen Cart Logo
Forums / Addon Templates / Andover Modern Template Support Thread

Andover Modern Template Support Thread

Views: 145,468

Results 481 to 500 of 790
9 Jan 2012, 7:51 PM
#481
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Andover Modern Template Support Thread

deckandpool:

hi anne

please forgive my lack of knowledge as i am new which i am sure you hear a lot and

but

when i insert the text on the read me file i get a 1064 sql syntax error.

this is what i inserted: and a caveat of other pastes which yielded the same error message.

(configuration_title, configuration_key, configuration_value,
configuration_description, configuration_group_id, sort_order,
last_modified, date_added, use_function, set_function)
VALUES ('Product Listing - Columns Per Row', 'PRODUCT_LISTING_COLUMNS_PER_ROW', '3',
'Select the number of columns of products to show in each row in the product listing.
The default setting is 3.', '8', '41', NULL, now(), NULL, NULL);

Open up the sql file in a plain text editor and copy and paste the query into the box then hit send.

I know that there is nothing wrong with sql patch as it has been used by tons (many, many thousands) of users.

Thanks,

Anne

11 Jan 2012, 1:14 AM
#482
deckandpool avatar

deckandpool

New Zenner

Join Date:
Jan 2012
Posts:
10
Plugin Contributions:
0

Re: Andover Modern Template Support Thread

Note Tab Light

11 Jan 2012, 1:34 AM
#483
deckandpool avatar

deckandpool

New Zenner

Join Date:
Jan 2012
Posts:
10
Plugin Contributions:
0

Re: Andover Modern Template Support Thread

anne

i got it and it look awesome thanks for your help and great template.

thanks

colin

11 Jan 2012, 7:10 PM
#484
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Andover Modern Template Support Thread

deckandpool:

anne

i got it and it look awesome thanks for your help and great template.

thanks

colin

Great ;-)

Thanks,

Anne

16 Jan 2012, 10:45 PM
#485
gimondi avatar

gimondi

New Zenner

Join Date:
Jan 2012
Location:
The Netherlands
Posts:
21
Plugin Contributions:
0

Re: Andover Modern Template Support Thread

Thank you very much for your template. I have got a nice and working result within one weekend of work, even when I have never built a website before.

I have got the following questions:

How can I disable the gift certificates and is there a flyout menu that will work with the template? The css flyout menu that is available in the Free Software Add Ons has got another layout and doesn't match the template.

17 Jan 2012, 3:31 PM
#486
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Andover Modern Template Support Thread

Gimondi:

Thank you very much for your template. I have got a nice and working result within one weekend of work, even when I have never built a website before.

I have got the following questions:

How can I disable the gift certificates and is there a flyout menu that will work with the template? The css flyout menu that is available in the Free Software Add Ons has got another layout and doesn't match the template.

You can add any modules/addons to the template that you like. You can customize the template in any way that you like. You will need some knowledge of css/xhtml and php.

Thanks,

Anne

18 Jan 2012, 6:32 PM
#487
deckandpool avatar

deckandpool

New Zenner

Join Date:
Jan 2012
Posts:
10
Plugin Contributions:
0

Re: Andover Modern Template Support Thread

HELLO

I WAS WONDERING IF THERE IS A WAY TO CHANGE THE COLOR OF THE SIDE BOXES BACKGROUND

WOULD IT RESIDE:
/includes/templates/andover_modern/css

OR ELSEWHERE

THANKS

COLIN

IF THIS HAS BEEN ANSWERED PREVIOUSLY COULD YOU POINT ME IN RIGHT DIRECTION

19 Jan 2012, 2:52 PM
#488
deckandpool avatar

deckandpool

New Zenner

Join Date:
Jan 2012
Posts:
10
Plugin Contributions:
0

Re: Andover Modern Template Support Thread

hello again

i am also having a problem with my sideboxes it seems on side is radius and the other is square??

the background image seems right

am i missing some code??

Thanks

Colin

19 Jan 2012, 3:53 PM
#489
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Andover Modern Template Support Thread

deckandpool:

HELLO

I WAS WONDERING IF THERE IS A WAY TO CHANGE THE COLOR OF THE SIDE BOXES BACKGROUND

WOULD IT RESIDE:
/includes/templates/andover_modern/css

OR ELSEWHERE

THANKS

COLIN

IF THIS HAS BEEN ANSWERED PREVIOUSLY COULD YOU POINT ME IN RIGHT DIRECTION

Hello ;-) Yes, you can change this in the css. You will have to re-do the top background image in your new color.

Thanks,

Anne

19 Jan 2012, 3:54 PM
#490
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Andover Modern Template Support Thread

deckandpool:

hello again

i am also having a problem with my sideboxes it seems on side is radius and the other is square??

the background image seems right

am i missing some code??

Thanks

Colin

If you read the readme.html file that comes with the template package you will find the recommended admin settings to remedy this.

Thanks,

Anne

20 Jan 2012, 9:30 PM
#491
gimondi avatar

gimondi

New Zenner

Join Date:
Jan 2012
Location:
The Netherlands
Posts:
21
Plugin Contributions:
0

Re: Andover Modern Template Support Thread

Hello Anne,

To disable the "Gift certificate FAQ" and "Discount coupons" options in the footer menu, I modified the file footer_menu_defines.php in the "extra_definitions" map according to the code in the file information.php file in the sideboxes map:

// only show GV FAQ when installed

if (MODULE_ORDER_TOTAL_GV_STATUS == 'true') {
Define('GVFAQ', '<li><a href="' . zen_href_link(FILENAME_GV_FAQ) . '">' . BOX_INFORMATION_GV . '</a></li>');
} else {
Define('GVFAQ', '');
}

// only show Discount Coupon FAQ when installed

if (DEFINE_DISCOUNT_COUPON_STATUS <= 1 && MODULE_ORDER_TOTAL_COUPON_STATUS == 'true') {
Define('COUPON', '<li><a href="' . zen_href_link(FILENAME_DISCOUNT_COUPON) . '">' . BOX_INFORMATION_DISCOUNT_COUPONS . '</a></li>');
} else {
Define('COUPON','');
}

20 Jan 2012, 11:36 PM
#492
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Andover Modern Template Support Thread

Gimondi:

Hello Anne,

To disable the "Gift certificate FAQ" and "Discount coupons" options in the footer menu, I modified the file footer_menu_defines.php in the "extra_definitions" map according to the code in the file information.php file in the sideboxes map:

// only show GV FAQ when installed

if (MODULE_ORDER_TOTAL_GV_STATUS == 'true') {
Define('GVFAQ', '<li><a href="' . zen_href_link(FILENAME_GV_FAQ) . '">' . BOX_INFORMATION_GV . '</a></li>');
} else {
Define('GVFAQ', '');
}

// only show Discount Coupon FAQ when installed

if (DEFINE_DISCOUNT_COUPON_STATUS <= 1 && MODULE_ORDER_TOTAL_COUPON_STATUS == 'true') {
Define('COUPON', '<li><a href="' . zen_href_link(FILENAME_DISCOUNT_COUPON) . '">' . BOX_INFORMATION_DISCOUNT_COUPONS . '</a></li>');
} else {
Define('COUPON','');
}

Thank you for posting your solution ;-)

Thanks,

Anne

21 Jan 2012, 5:55 PM
#493
maniacxd avatar

maniacxd

New Zenner

Join Date:
Jan 2012
Posts:
17
Plugin Contributions:
0

Re: Andover Modern Template Support Thread

Hi.
Thanks for the great template. It has helped me a lot in what I was trying to do.

I wanted to know how to create a custom sidebox with pictures in it. I have managed to do one using the banner sidebox and uploading my picture to the banners, but i would like to do one to add pictures of 'visa,mastercard' payment options pictures etc.

Another thing i would like to know, i tried adding google translate code to the index.php and it works fine but it is at the very bottom of the website. What i would like to know is if i can add this code to a sidebox and if it would be applied to the rest of the website.

I tried to search through the forum but i did not find any info on that.

Thanks a lot for the support.
Rishi

22 Jan 2012, 6:33 PM
#494
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Andover Modern Template Support Thread

maniacXD:

Hi.
Thanks for the great template. It has helped me a lot in what I was trying to do.

I wanted to know how to create a custom sidebox with pictures in it. I have managed to do one using the banner sidebox and uploading my picture to the banners, but i would like to do one to add pictures of 'visa,mastercard' payment options pictures etc.

Another thing i would like to know, i tried adding google translate code to the index.php and it works fine but it is at the very bottom of the website. What i would like to know is if i can add this code to a sidebox and if it would be applied to the rest of the website.

I tried to search through the forum but i did not find any info on that.

Thanks a lot for the support.
Rishi

There is a module in the free addons section that will add your cc payment icons.

There is also a module for the google translator.

Thanks,

Anne

24 Jan 2012, 3:19 PM
#495
rabbitnutrition avatar

rabbitnutrition

New Zenner

Join Date:
Sep 2011
Posts:
81
Plugin Contributions:
0

Re: Andover Modern Template Support Thread

Gimondi:

Hello Anne,

To disable the "Gift certificate FAQ" and "Discount coupons" options in the footer menu, I modified the file footer_menu_defines.php in the "extra_definitions" map according to the code in the file information.php file in the sideboxes map:

// only show GV FAQ when installed

if (MODULE_ORDER_TOTAL_GV_STATUS == 'true') {
Define('GVFAQ', '<li><a href="' . zen_href_link(FILENAME_GV_FAQ) . '">' . BOX_INFORMATION_GV . '</a></li>');
} else {
Define('GVFAQ', '');
}

// only show Discount Coupon FAQ when installed

if (DEFINE_DISCOUNT_COUPON_STATUS <= 1 && MODULE_ORDER_TOTAL_COUPON_STATUS == 'true') {
Define('COUPON', '<li><a href="' . zen_href_link(FILENAME_DISCOUNT_COUPON) . '">' . BOX_INFORMATION_DISCOUNT_COUPONS . '</a></li>');
} else {
Define('COUPON','');
}

where will i find this please?

24 Jan 2012, 10:31 PM
#496
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Andover Modern Template Support Thread

rabbitnutrition:

where will i find this please?

includes/languages/english/extra_definitions/andover_modern

Thanks,

Anne

25 Jan 2012, 11:47 AM
#497
rabbitnutrition avatar

rabbitnutrition

New Zenner

Join Date:
Sep 2011
Posts:
81
Plugin Contributions:
0

Re: Andover Modern Template Support Thread

thank you
i'm there :D so do i just delete the words "gift certificates and discount coupons"?
sorry to sound so dumb :blush: i'm nearly finished now and so pleased with myself. just a little bit more tweaking

25 Jan 2012, 2:38 PM
#498
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Andover Modern Template Support Thread

rabbitnutrition:

thank you
i'm there :D so do i just delete the words "gift certificates and discount coupons"?
sorry to sound so dumb :blush: i'm nearly finished now and so pleased with myself. just a little bit more tweaking

You need to delete the links and the define statements at the bottom of the file.

Thanks,

Anne

25 Jan 2012, 8:32 PM
#499
rabbitnutrition avatar

rabbitnutrition

New Zenner

Join Date:
Sep 2011
Posts:
81
Plugin Contributions:
0

Re: Andover Modern Template Support Thread

ok did that (or tried to) this is what's just happened :shocking:
please help
Server error
The website encountered an error while retrieving http://www.rabbitnutrition.co.uk/shop/index.php?main_page=. It may be down for maintenance or configured incorrectly.
Here are some suggestions:
Reload this web page later.
HTTP Error 500 (Internal Server Error): An unexpected condition was encountered while the server was attempting to fulfil the request.

25 Jan 2012, 8:56 PM
#500
rabbitnutrition avatar

rabbitnutrition

New Zenner

Join Date:
Sep 2011
Posts:
81
Plugin Contributions:
0

Re: Andover Modern Template Support Thread

you can see what i did (obviously wrong) here:
where it begins... Define('GVFAQ', you can see what i've deleted.
please can you give me the code so i can put it back in and hopefully it will work again :blush:

/OF Menu Column 2 link Definitions/
Define('TITLE_TWO', '<li class="menuTitle">Information</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', '<'">' '</a></li>');
Define('COUPON', '<li><a href="' . zen_href_link(FILENAME_DISCOUNT_COUPON) . '">' . BOX_INFORMATION_DISCOUNT_COUPONS . '</a></li>');
Define('UNSUBSCRIBE', '<li><a href="' . zen_href_link(FILENAME_UNSUBSCRIBE) . '">' . BOX_INFORMATION_UNSUBSCRIBE . '</a></li>');
/EOF Menu Column 2 link Definitions/