Zen Follower
- Join Date:
- Dec 2010
- Location:
- Thailand
- Posts:
- 304
- Plugin Contributions:
- 1
Winchester Responsive
Hello Anne,
How compatible with version 1.53 this template is?
Thanks,
Thannaree
Views: 443,039
Zen Follower
Hello Anne,
How compatible with version 1.53 this template is?
Thanks,
Thannaree
Totally Zenned
Thannaree:
Hello Anne,
How compatible with version 1.53 this template is?
Thanks,
Thannaree
The template is compatible with all 1.5x versions. I use it on 1.5.3 all of the time.
Thanks,
Anne
Zen Follower
picaflor-azul:
Out of the box, the custom tab is set up to use the same banner for each product. If you want different info for each product in the tab you would need to create a new custom product field and add the code to the tab in the tpl_product_info_display.php file.
Thanks,
Anne
Anne, going back to this, how do I call up a custom tab? if for example, I wanted a tab displaying the product's technical information, where would I add this as a tag in the product description?
Is this similar to calling a tag in the product description field like one would for Tabbed products pro eg<!--%Technical%-->) etc?
Please advise as this isn't clear.
Many thanks
Zen Follower
picaflor-azul:
The template is compatible with all 1.5x versions. I use it on 1.5.3 all of the time.
Thanks,
Anne
Thanks Anne,
I was asking because some documents, compared to 153, still feature the ?> at the end. I remove those and everything work great on my end.
Thank you again ... that's a very nice template!
Totally Zenned
dharrison:
Anne, going back to this, how do I call up a custom tab? if for example, I wanted a tab displaying the product's technical information, where would I add this as a tag in the product description?
Is this similar to calling a tag in the product description field like one would for Tabbed products pro eg<!--%Technical%-->) etc?
Please advise as this isn't clear.
Many thanks
No, you will add your custom product field to the database and admin side then call the field in the tpl_product_info_display.php file
Thanks,
Anne
Zen Follower
Hello,
I have installed another language and can't seem to find a way to translate texts in the flexible footer. All seems to be only done via the admin with no specific language files.
Please advise.
Thanks
Thannaree
Totally Zenned
Thannaree:
Hello,
I have installed another language and can't seem to find a way to translate texts in the flexible footer. All seems to be only done via the admin with no specific language files.
Please advise.
Thanks
Thannaree
It is only single language, and I was amazed no one else noticed this. I made the footer multi lingual for one of my clients, and wanted to update the module. After contact with the original author (rbarbour), he said he is working on an update to, so I guess it will be updated soon.
Zen Follower
Design75:
It is only single language, and I was amazed no one else noticed this. I made the footer multi lingual for one of my clients, and wanted to update the module. After contact with the original author (rbarbour), he said he is working on an update to, so I guess it will be updated soon.
Ouch! I was just about to also ask about the slideshow, so that answer my question. Looking at Westminster language flag I assumed that one would be multilingual. I needed to have this up and running by tomorrow. That's terrible ...
Is Westminster multilingual?
Totally Zenned
Thannaree:
Ouch! I was just about to also ask about the slideshow, so that answer my question. Looking at Westminster language flag I assumed that one would be multilingual. I needed to have this up and running by tomorrow. That's terrible ...
Is Westminster multilingual?
Anne's template are normally muilti lingual, but I am not sure about the added features like slideshows and extra banners.
Zen Follower
Design75:
Anne's template are normally muilti lingual, but I am not sure about the added features like slideshows and extra banners.
Apart from the footer and slideshow/banners, Westminster is multilingual.
Zen Follower
Design75:
It is only single language, and I was amazed no one else noticed this. I made the footer multi lingual for one of my clients, and wanted to update the module. After contact with the original author (rbarbour), he said he is working on an update to, so I guess it will be updated soon.
Hi Design75, Could you possibly share the module you developed so I can try it out?
Thanks!
Totally Zenned
Thannaree:
Ouch! I was just about to also ask about the slideshow, so that answer my question. Looking at Westminster language flag I assumed that one would be multilingual. I needed to have this up and running by tomorrow. That's terrible ...
Is Westminster multilingual?
I think that I just answered this question, but it may have been on another thread. If you want the slide show banners to be multi lingual, one way to do it would be to clone the tpl_home_slider.php file using a new banner group for your second language and then add an if statement to the tpl_header.php files to call the second language tpl_home_slider.php file when the second language is detected.
The time that I have to devote to the free templates project is limited so any advances/improvements that you make and share can be included in a package update. Unfortunately, a lot of users figure these types of things out and never share with the community.
Thanks,
Anne
Zen Follower
picaflor-azul:
I think that I just answered this question, but it may have been on another thread. If you want the slide show banners to be multi lingual, one way to do it would be to clone the tpl_home_slider.php file using a new banner group for your second language and then add an if statement to the tpl_header.php files to call the second language tpl_home_slider.php file when the second language is detected.
The time that I have to devote to the free templates project is limited so any advances/improvements that you make and share can be included in a package update. Unfortunately, a lot of users figure these types of things out and never share with the community.
Thanks,
Anne
Thanks for the directions Anne!
For those who'd like to try it out, this is what I did for a slide in Spanish.
<?php require($template->get_template_dir('tpl_home_slider.php',DIR_WS_TEMPLATE, $current_page_base,'common')
. '/tpl_home_slider.php');?>
to
<?php require($template->get_template_dir('tpl_home_slider_es.php',DIR_WS_TEMPLATE, $current_page_base,'common')
. '/tpl_home_slider_es.php');?>
Looks good on my end.
.... now with the footer ....
Zen Follower
<?php require($template->get_template_dir('tpl_home_slider.php',DIR_WS_TEMPLATE, $current_page_base,'common') . '/tpl_home_slider.php');?>Thannaree:
Thanks for the directions Anne!
For those who'd like to try it out, this is what I did for a slide in Spanish.
- Clone includes/templates/westminster_new/common/tpl_home_slider.php and rename it tpl_home_slider_es.php
- Open tpl_home_slider_es.php and replaced (on line 4) homepageslide1 with homepageslide2
- Open includes/languages/spanish/html_includes/westminster_new/define_main_page.php and change (on line 22 and 23)
> to
> ```php
<?php require($template->get_template_dir('tpl_home_slider_es.php',DIR_WS_TEMPLATE, $current_page_base,'common')
. '/tpl_home_slider_es.php');?>
- Open Tools/Banner Manager in the admin and create 5 new banners, entering homepageslide2 in the "or enter a new banner group below" field.
Looks good on my end.
.... now with the footer ....
I wonder if the flexible footer could be configured in such a similar way to allow multiple languages, could it?
Totally Zenned
Thannaree:
I wonder if the flexible footer could be configured in such a similar way to allow multiple languages, could it?
It might work. I am not sure though about how the admin interface would work. The call for the flexible footer menu is in the tpl_footer.php file.
Thanks,
Anne
Totally Zenned
<?php require($template->get_template_dir('tpl_home_slider.php',DIR_WS_TEMPLATE, $current_page_base,'common') . '/tpl_home_slider.php');?>Thannaree:
Thanks for the directions Anne!
For those who'd like to try it out, this is what I did for a slide in Spanish.
- Clone includes/templates/westminster_new/common/tpl_home_slider.php and rename it tpl_home_slider_es.php
- Open tpl_home_slider_es.php and replaced (on line 4) homepageslide1 with homepageslide2
- Open includes/languages/spanish/html_includes/westminster_new/define_main_page.php and change (on line 22 and 23)
> to
> ```php
<?php require($template->get_template_dir('tpl_home_slider_es.php',DIR_WS_TEMPLATE, $current_page_base,'common')
. '/tpl_home_slider_es.php');?>
- Open Tools/Banner Manager in the admin and create 5 new banners, entering homepageslide2 in the "or enter a new banner group below" field.
Looks good on my end.
.... now with the footer ....
Thank you so much for posting your solution. I am sure that it will help others in the future.
Thanks,
Anne
Zen Follower
picaflor-azul:
Thank you so much for posting your solution. I am sure that it will help others in the future.
Thanks,
Anne
Thanks Anne!
Note that this works on westminster_new (did not try on winchester). I have posted this solution on the relevant thread. Perhaps this could be removed from here?
Totally Zenned
Anne,
I am not sure if this has been reported to you yet, but the loading of "jquery.carouFredSel-6.0.2.js" gives a ssl error when sites are in https.
in the files tpl_index_default.php and tpl_index_categories.php
the line:
<script type="text/javascript" src="<?php echo HTTP_SERVER . DIR_WS_CATALOG . DIR_WS_TEMPLATE; ?>jscript/jquery.carouFredSel-6.0.2.js"></script>
Should IMHO be changed to:
<script type="text/javascript" src="<?php echo DIR_WS_CATALOG . DIR_WS_TEMPLATE; ?>jscript/jquery.carouFredSel-6.0.2.js"></script>
Totally Zenned
<script type="text/javascript" src="<?php echo HTTP_SERVER . DIR_WS_CATALOG . DIR_WS_TEMPLATE; ?>jscript/jquery.carouFredSel-6.0.2.js"></script>Design75:
Anne,
I am not sure if this has been reported to you yet, but the loading of "jquery.carouFredSel-6.0.2.js" gives a ssl error when sites are in https.
in the files tpl_index_default.php and tpl_index_categories.php
the line:
> Should IMHO be changed to:
> ```php
<script type="text/javascript" src="<?php echo DIR_WS_CATALOG . DIR_WS_TEMPLATE; ?>jscript/jquery.carouFredSel-6.0.2.js"></script>
Thank you so much for posting. I will definitely include this in the package update ;)
Thanks,
Anne
Zen Follower
Sorry..... DELETE!
Tell staff why this post should be reviewed.