Zen Cart Logo
Forums / Addon Templates / Westminster New

Westminster New

Views: 494,196

Results 721 to 740 of 1,865
3 Mar 2015, 9:34 PM
#721
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Westminster New

CosmosK:

Hi, sorry, I haven't read all 73 pages yet. I'm up to about 15 but have a question as I'm trying to go live today/tomorrow. Is there a way to remove the British flag? To me, it indicates a different country and not the language of English. My site is no international as of yet, so I'd like to hide or remove it. Can someone point me towards what edit I can make? Thanks (great template btw!)

Also, is there a way to make "page 2" be named something else?

You can turn off the header languages box in admin--tools--layoutboxes controller

If you do a search of the FAQs section of this site you will find a tutorial about hot so change the name, etc of page 2

Thanks,

Anne

5 Mar 2015, 3:06 AM
#722
thomaswhiteeagle avatar

thomaswhiteeagle

New Zenner

Join Date:
May 2007
Posts:
93
Plugin Contributions:
0

Re: Westminster New

I'd like to get rid of the "Details" tab in the productinfo display. I tried commenting out on line 206 of product_info_display.php: "<li><?php echo HEADER_TITLE_DETAILS; ?></li>" however that got rid of it but also broke the custom tab whereby the custom tabs info was blank.

5 Mar 2015, 5:34 PM
#723
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Westminster New

thomaswhiteeagle:

I'd like to get rid of the "Details" tab in the productinfo display. I tried commenting out on line 206 of product_info_display.php: "<li><?php echo HEADER_TITLE_DETAILS; ?></li>" however that got rid of it but also broke the custom tab whereby the custom tabs info was blank.

You also need to comment out the code further down:

<!--bof Product details list  -->
<?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" class="floatingBox back">
  <?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>
<br class="clearBoth" />
<?php
  }
?>
<!--eof Product details list -->

Be careful if you nest the comments.

Thanks,

Anne

5 Mar 2015, 5:46 PM
#724
danielle avatar

danielle

Totally Zenned

Join Date:
Oct 2004
Posts:
973
Plugin Contributions:
0

Re: Westminster New

When I updated the social media links in the footer to link to the correct pages, all the formatting disappeared. Before I changed the links, they displayed like in the demo. Now they are not in boxes and the icons are smaller. I looked in the theme docs and my code in there still seems to be correct. This is what I have:

<a href="https://facebook.com/website" target="_blank"><i class="fa fa-facebook"></i></a>
<a href="https://twitter.com/website" target="_blank"><i class="fa fa-twitter"></i></a>

5 Mar 2015, 5:49 PM
#725
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Westminster New

Danielle:

When I updated the social media links in the footer to link to the correct pages, all the formatting disappeared. Before I changed the links, they displayed like in the demo. Now they are not in boxes and the icons are smaller. I looked in the theme docs and my code in there still seems to be correct. This is what I have:

<a href="https://facebook.com/website" target="_blank"><i class="fa fa-facebook"></i></a>
<a href="https://twitter.com/website" target="_blank"><i class="fa fa-twitter"></i></a>

If you post a link to your site I can take a look.

Thanks,

Anne

5 Mar 2015, 5:50 PM
#726
danielle avatar

danielle

Totally Zenned

Join Date:
Oct 2004
Posts:
973
Plugin Contributions:
0

Re: Westminster New

I had also moved them to the third column. When I move them back to the fourth column they work.

http://new.flyingdreams.com.au

picaflor-azul:

If you post a link to your site I can take a look.

Thanks,

Anne

5 Mar 2015, 6:26 PM
#727
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Westminster New

Danielle:

I had also moved them to the third column. When I move them back to the fourth column they work.

http://new.flyingdreams.com.au

Well, that's the problem. If you want to move them to another column you need to copy over the styles to the new column

Thanks,

Anne

5 Mar 2015, 6:30 PM
#728
danielle avatar

danielle

Totally Zenned

Join Date:
Oct 2004
Posts:
973
Plugin Contributions:
0

Re: Westminster New

Oh OK I see. That might be good in the instructions because there is nothing to indicate you can't move things around without changing code (unless I missed it, totally possible!). Thank you!

5 Mar 2015, 6:43 PM
#729
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Westminster New

Danielle:

Oh OK I see. That might be good in the instructions because there is nothing to indicate you can't move things around without changing code (unless I missed it, totally possible!). Thank you!

I don't think this needs to be in the readme. It would be impossible to add instructions for all of the various template modifications people can make. It is a given that if you are going to modify the template you might need to make changes to the css.

Thanks,

Anne

5 Mar 2015, 6:49 PM
#730
danielle avatar

danielle

Totally Zenned

Join Date:
Oct 2004
Posts:
973
Plugin Contributions:
0

Re: Westminster New

picaflor-azul:

I don't think this needs to be in the readme. It would be impossible to add instructions for all of the various template modifications people can make. It is a given that if you are going to modify the template you might need to make changes to the css.

Thanks,

Anne

Yes, I totally agree, however, this wasn't a change that required any code changes at first glance. It just used the flexible footer area that is built in to the admin. It would just be nice if there was some kind of indication that moving the columns around will require coding changes as well.

5 Mar 2015, 7:48 PM
#731
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Westminster New

Danielle:

Yes, I totally agree, however, this wasn't a change that required any code changes at first glance. It just used the flexible footer area that is built in to the admin. It would just be nice if there was some kind of indication that moving the columns around will require coding changes as well.

Even though there is an admin interface for the footer menu, it effects the output of the code so yes, it is a "code" change.

Thanks,

Anne

5 Mar 2015, 7:54 PM
#732
danielle avatar

danielle

Totally Zenned

Join Date:
Oct 2004
Posts:
973
Plugin Contributions:
0

Re: Westminster New

That's exactly what I'm getting at :) The average person wouldn't really think like that, so they'd be confused when they changed the footer in the admin. Having the footer area in the admin leads you to believe no coding is required to edit the footer. I didn't mean you should put in specific info to cover every possibility, just that it might be good to indicate that other coding may still be required after editing the footer in the admin. In any case, it was just a suggestion :) Thanks again for your quick help with this, I really appreciate it!

picaflor-azul:

Even though there is an admin interface for the footer menu, it effects the output of the code so yes, it is a "code" change.

Thanks,

Anne

6 Mar 2015, 2:17 PM
#733
divavocals avatar

divavocals

Totally Zenned

Join Date:
Jan 2007
Location:
Los Angeles, California, United States
Posts:
10,011
Plugin Contributions:
3

Re: Westminster New

Danielle:

That's exactly what I'm getting at :) The average person wouldn't really think like that, so they'd be confused when they changed the footer in the admin. Having the footer area in the admin leads you to believe no coding is required to edit the footer. I didn't mean you should put in specific info to cover every possibility, just that it might be good to indicate that other coding may still be required after editing the footer in the admin. In any case, it was just a suggestion :) Thanks again for your quick help with this, I really appreciate it!I agree with Anne.. It isn't necessary for this to be in the readme.. It's a given that if you move things from one column to another that a CSS change will be needed.. It' pretty much a given that most ANYTHING you do to move things from their original positions onany part of the template might require a similar change..

picaflor-azul:

I don't think this needs to be in the readme. It would be impossible to add instructions for all of the various template modifications people can make. It is a given that if you are going to modify the template you might need to make changes to the css.

6 Mar 2015, 7:02 PM
#734
bobc avatar

bobc

New Zenner

Join Date:
Jun 2013
Location:
UK
Posts:
49
Plugin Contributions:
0

Re: Westminster New

I wonder if this is possible?

I have managed to change Categories in the sidebox and top menu to 'Departments' now I need to add a new top menu item 'Products' between 'Departments and Information'.

Please can you advise me if this is possible and where I should start to look?

Many thanks and kind regards,

Bob

6 Mar 2015, 7:47 PM
#735
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Westminster New

bobc:

I wonder if this is possible?

I have managed to change Categories in the sidebox and top menu to 'Departments' now I need to add a new top menu item 'Products' between 'Departments and Information'.

Please can you advise me if this is possible and where I should start to look?

Many thanks and kind regards,

Bob

You can edit the includes/templates/override/templates/tpl_modules_mobile_categories_tabs.php

Thanks,s

Anne

7 Mar 2015, 9:16 AM
#736
2marco avatar

2marco

New Zenner

Join Date:
Aug 2011
Posts:
11
Plugin Contributions:
0

Re: Westminster New

Hello all.

I am just starting with this template and the first feels and thoughts are very good. I do like the custom slide out functionality; and I am thinking about which content I would locate in there.

In the actual desing there is a link in the header which will lead the customer to the shopping_cart.

Would it be possible to show the content of the customers basket in the custom slide page? So the customer could see his shopping card in there?

7 Mar 2015, 10:48 AM
#737
divavocals avatar

divavocals

Totally Zenned

Join Date:
Jan 2007
Location:
Los Angeles, California, United States
Posts:
10,011
Plugin Contributions:
3

Re: Westminster New

2marco:

Hello all.

I am just starting with this template and the first feels and thoughts are very good. I do like the custom slide out functionality; and I am thinking about which content I would locate in there.

In the actual desing there is a link in the header which will lead the customer to the shopping_cart.

Would it be possible to show the content of the customers basket in the custom slide page? So the customer could see his shopping card in there?Purely from a UX POV, I don't this this is the best or most intuitive place to put the shopping cart..

Just my 3 cents..

7 Mar 2015, 3:11 PM
#738
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Westminster New

2marco:

Hello all.

I am just starting with this template and the first feels and thoughts are very good. I do like the custom slide out functionality; and I am thinking about which content I would locate in there.

In the actual desing there is a link in the header which will lead the customer to the shopping_cart.

Would it be possible to show the content of the customers basket in the custom slide page? So the customer could see his shopping card in there?

Yes, this can be done with custom programming.

Thanks,

Anne

7 Mar 2015, 6:08 PM
#739
denison avatar

denison

New Zenner

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

Re: Westminster New

Hi - sorry if this is the wrong place to post this. I'm using the avonlee template and installing the westminster. When I upload the westminster files the avonlee breaks. The home page sliders shift right and the right sideboxes are gone. I haven't changed anything in admin. I need to have both templates work correctly. Is this possible? If so is there any direction on what i need to repair?

Thank you

7 Mar 2015, 7:48 PM
#740
picaflor_azul avatar

picaflor_azul

Totally Zenned

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

Re: Westminster New

denison:

Hi - sorry if this is the wrong place to post this. I'm using the avonlee template and installing the westminster. When I upload the westminster files the avonlee breaks. The home page sliders shift right and the right sideboxes are gone. I haven't changed anything in admin. I need to have both templates work correctly. Is this possible? If so is there any direction on what i need to repair?

Thank you

It sounds like you have the right hand column turned on in the avonlee contempo. The westminster has the right hand column turned off. If both templates are on the same cart, you would have to change the layout settings in admin--configuration when switching templates.

Thanks,

Anne