Zen Cart Logo
Forums / Addon Templates / Alysa Rounded Template Support Thread

Alysa Rounded Template Support Thread

Views: 64,898

Results 281 to 300 of 459
12 Feb 2012, 2:32 AM
#281
pixidust avatar

pixidust

New Zenner

Join Date:
Feb 2012
Posts:
2
Plugin Contributions:
0

Alysa Rounded Template Support Thread

Never mind..I found the problem..again..I love this template:clap:

12 Feb 2012, 1:58 PM
#282
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Alysa Rounded Template Support Thread

Pixidust:

Never mind..I found the problem..again..I love this template:clap:

That's great. You should post your solution so that the next person with the same question can find the answer.

Thanks,

Anne

13 Feb 2012, 10:06 AM
#283
dnelub avatar

dnelub

New Zenner

Join Date:
Feb 2012
Posts:
6
Plugin Contributions:
0

Re: Alysa Rounded Template Support Thread

First of all, thx for the template.
My question is that: How can I change image buttons and make them css buttons?
I have already changed the relevant setting in the admin but there are still some buttons with images, for example Update Cart, Product Details. So, How can I make them css buttons ?

thanks in advance

13 Feb 2012, 4:15 PM
#284
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Alysa Rounded Template Support Thread

dnelub:

First of all, thx for the template.
My question is that: How can I change image buttons and make them css buttons?
I have already changed the relevant setting in the admin but there are still some buttons with images, for example Update Cart, Product Details. So, How can I make them css buttons ?

thanks in advance

This is not a template specific problem. This question has been asked and answered many times on the forum. Please search the forum for your answer.

Thanks,

Anne

13 Feb 2012, 5:34 PM
#285
dnelub avatar

dnelub

New Zenner

Join Date:
Feb 2012
Posts:
6
Plugin Contributions:
0

Re: Alysa Rounded Template Support Thread

Dear Picaflor-Azul

As it says in the wiki that "You have the choice to use image buttons or CSS-styled buttons in Zen Cart™, this Admin option can be configured in Configuration > Layout Settings > CSS Buttons." look at here

According to this information, all buttons should be converted to css code after setting the configuration. However, there are still some buttons with image even though I configured this admin option.

So, it seems that the template is not fully compatible with the admin options. By the way, sure that I had searched it in forum but I couldn't find proper answer.

Anyway thanks

14 Feb 2012, 4:23 PM
#286
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Alysa Rounded Template Support Thread

dnelub:

Dear Picaflor-Azul

As it says in the wiki that "You have the choice to use image buttons or CSS-styled buttons in Zen Cart™, this Admin option can be configured in Configuration > Layout Settings > CSS Buttons." look at here

According to this information, all buttons should be converted to css code after setting the configuration. However, there are still some buttons with image even though I configured this admin option.

So, it seems that the template is not fully compatible with the admin options. By the way, sure that I had searched it in forum but I couldn't find proper answer.

Anyway thanks

The template is fully compatible with all admin options. Switch to the classic template to see the same behavior.

I have seen this asked and answered on the forum, so if you search for the answer it is here.

Thanks,

Anne

16 Feb 2012, 3:23 PM
#287
dnelub avatar

dnelub

New Zenner

Join Date:
Feb 2012
Posts:
6
Plugin Contributions:
0

Re: Alysa Rounded Template Support Thread

Ola Anne

I am sorry, you are right. Default template has also the same problem. After googling more, I found a way and fixed it.

One more thing, is it possible to put slider underneath the menu without any column on left and right sides? Or which files should I change to do it?

thanks in advance

16 Feb 2012, 4:41 PM
#288
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Alysa Rounded Template Support Thread

dnelub:

Ola Anne

I am sorry, you are right. Default template has also the same problem. After googling more, I found a way and fixed it.

One more thing, is it possible to put slider underneath the menu without any column on left and right sides? Or which files should I change to do it?

thanks in advance

It would be great if you posted your solution in case someone else has the same problem ;-)

You can turn off the left and right hand columns in the admin--configuration--layout settings

Thanks,

Anne

16 Feb 2012, 7:41 PM
#289
dnelub avatar

dnelub

New Zenner

Join Date:
Feb 2012
Posts:
6
Plugin Contributions:
0

Re: Alysa Rounded Template Support Thread

I think, I did but there is still one more problem where I need help. Firstly How did I do it?

  1. Copy and paste the content of define_main_page and create new PHP file, for example, sliderEx.php
  2. Put this new file into includes/template/template_default/common
  3. Delete the content of define_main_page.php in Admin
  4. Add this php code below into tpl_main_page right after this line ```html
<table width="100%" border="0" cellspacing="0" cellpadding="0" id="contentMainWrapper"> ``` (line 75) ```php <?php
if (($_GET['main_page']='index') && (!isset($_GET['cPath']))) {
echo '<tr>';
require("sliderExperimental.php");
echo '</tr>';
}
?>
5. Update slider pictures and make them bigger with width:950px;


The problem is that when I click Contact_us or Login page it doesnt work. I meant that the code is not supposed to work in these pages. It seems that if statement is not working. 

by the way, my testing page is <https://www.displayflash.com/onlinestore>

any help, wellcome.
17 Feb 2012, 2:41 PM
#290
dnelub avatar

dnelub

New Zenner

Join Date:
Feb 2012
Posts:
6
Plugin Contributions:
0

Re: Alysa Rounded Template Support Thread

I think I solved the question. The code should have been like this

<?php
	if ($this_is_home_page) {
	echo '<tr>';
	require("sliderExperimental.php");
	echo '</tr>';
	}
	?>
17 Feb 2012, 4:58 PM
#291
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Alysa Rounded Template Support Thread

dnelub:

I think, I did but there is still one more problem where I need help. Firstly How did I do it?

  1. Copy and paste the content of define_main_page and create new PHP file, for example, sliderEx.php
  2. Put this new file into includes/template/template_default/common
  3. Delete the content of define_main_page.php in Admin
  4. Add this php code below into tpl_main_page right after this line ```html
<table width="100%" border="0" cellspacing="0" cellpadding="0" id="contentMainWrapper"> ``` (line 75) > ```php <?php
if (($_GET['main_page']='index') && (!isset($_GET['cPath']))) {
echo '<tr>';
require("sliderExperimental.php");
echo '</tr>';
}
?>
> 5. Update slider pictures and make them bigger with width:950px;
> 
> 
> The problem is that when I click Contact_us or Login page it doesnt work. I meant that the code is not supposed to work in these pages. It seems that if statement is not working. 
> 
> by the way, my testing page is <https://www.displayflash.com/onlinestore>
> 
> any help, wellcome.

What are you trying to do?  You should not be doing anything with the template_default directory.

You can turn off the right and left hand columns in the admin--configuration--layout settings

Thanks,

Anne
17 Feb 2012, 6:03 PM
#292
dnelub avatar

dnelub

New Zenner

Join Date:
Feb 2012
Posts:
6
Plugin Contributions:
0

Re: Alysa Rounded Template Support Thread

Calm down, Anne

I didn't mean that I want to get rid of left and right column. I want to use them too (at least left column). However, i want them to be underneath of slider. When you check my site you will understand what I meant.
Is there any other way to do it without changing hard core?

have a nice day

18 Feb 2012, 1:45 AM
#293
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Alysa Rounded Template Support Thread

dnelub:

Calm down, Anne

I didn't mean that I want to get rid of left and right column. I want to use them too (at least left column). However, i want them to be underneath of slider. When you check my site you will understand what I meant.
Is there any other way to do it without changing hard core?

have a nice day

I am always calm, lol.

If you search the forum you will find the answer as this has been asked and answered elsewhere ;-)

Thanks,

Anne

19 Feb 2012, 4:26 PM
#294
laurelsstitchery avatar

laurelsstitchery

Zen Follower

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

Re: Alysa Rounded Template Support Thread

I'm upgrading to ZC1.5 and needed a new template, so I picked Alysa Rounded. I love it so far, but I'm having one small issue. In the search box, the button to submit the search is broken. When I click on spot where the image should be and choose to view the image, here's the error I get: "You don't have permission to access /zen150/includes/templates/andover_modern/buttons/english/button_search.gif on this server." I find it odd, because I'm not using the Andover Modern template, I'm using Alysa Rounded. I'm not sure which file or files I need to edit to fix this problem. Help? Thanks! :)

19 Feb 2012, 4:32 PM
#295
laurelsstitchery avatar

laurelsstitchery

Zen Follower

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

Re: Alysa Rounded Template Support Thread

laurelsstitchery:

I'm upgrading to ZC1.5 and needed a new template, so I picked Alysa Rounded. I love it so far, but I'm having one small issue. In the search box, the button to submit the search is broken. When I click on spot where the image should be and choose to view the image, here's the error I get: "You don't have permission to access /zen150/includes/templates/andover_modern/buttons/english/button_search.gif on this server." I find it odd, because I'm not using the Andover Modern template, I'm using Alysa Rounded. I'm not sure which file or files I need to edit to fix this problem. Help? Thanks! :)

Developer's Toolkit to the rescue! The file is here:

catalog/includes/templates/alysa_rounded/sideboxes/tpl_search.php

And it's fixed. :)

19 Feb 2012, 4:35 PM
#296
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Alysa Rounded Template Support Thread

laurelsstitchery:

Developer's Toolkit to the rescue! The file is here:

catalog/includes/templates/alysa_rounded/sideboxes/tpl_search.php

And it's fixed. :)

Ok, great ;-)

Thanks,

Anne

2 Apr 2012, 5:11 PM
#297
andy_c27 avatar

andy_c27

Zen Follower

Join Date:
Oct 2010
Location:
United Kingdom
Posts:
477
Plugin Contributions:
0

Re: Alysa Rounded Template Support Thread

Hi Anne
any chance this could be a template fault ..I'll start at the beginning.

My template is working fine .I installed FEC (fast easy checkout) about 4 months ago and as it never worked properly I have been searching high and low for an answer,I finally found it and it was down to not having the cj loader installed ..I installed it yesterday and now fec works fine but it broke the slider .. I eventually found the file in includes/template/my template name/common/ html_header.
If I return a backup file the slider works and fec doesn't and if I return the file the slider doesn't lol ...... Anyway I tried to join the 2 files but that didn't work either ....
So to day I used another of your templates "apparel_boutique" I have installed both fec and the cjloader and it is working fine :cool::cool: ...While it is no big train smash I would like it to work again ..
thanks
Andy

3 Apr 2012, 3:30 PM
#298
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Alysa Rounded Template Support Thread

ATSWorld:

Hi Anne
any chance this could be a template fault ..I'll start at the beginning.

My template is working fine .I installed FEC (fast easy checkout) about 4 months ago and as it never worked properly I have been searching high and low for an answer,I finally found it and it was down to not having the cj loader installed ..I installed it yesterday and now fec works fine but it broke the slider .. I eventually found the file in includes/template/my template name/common/ html_header.
If I return a backup file the slider works and fec doesn't and if I return the file the slider doesn't lol ...... Anyway I tried to join the 2 files but that didn't work either ....
So to day I used another of your templates "apparel_boutique" I have installed both fec and the cjloader and it is working fine :cool::cool: ...While it is no big train smash I would like it to work again ..
thanks
Andy

Both the template and css/js loader modify the html_header file. This file will have to be merged for both to work correctly. Try using winmerge or beyond compare.

Thanks,

Anne

3 Apr 2012, 7:46 PM
#299
andy_c27 avatar

andy_c27

Zen Follower

Join Date:
Oct 2010
Location:
United Kingdom
Posts:
477
Plugin Contributions:
0

Re: Alysa Rounded Template Support Thread

yeah I tried with winmerge but nothing happened ..I'll try the other program though ...

4 Apr 2012, 3:30 AM
#300
annav avatar

annav

Zen Follower

Join Date:
Jul 2008
Location:
Sydney, Australia
Posts:
171
Plugin Contributions:
0

Re: Alysa Rounded Template Support Thread

Hi Anne,

I'm having a problem with the slide show. I changed the url for one of the slides (as it was pointing to the wrong page) but now the slide show has gone.

see https://www.toycrazy.com.au

I didn't make any other changes other than put in the correct url for slide 3.

Can you tell me what has happened, how to fix and also, is there a way the slide show can be temporarily disabled in the future, if i want to make changes etc.

Regard
Anna
https://www.toycrazy.com.au