FoIks, have a particular problem with displaying correct repeatable value in another language.
Basically, I have two separate languages, each one with different folders for the sake of SEO-friendly URLs.
There are "products" and "applications" sections, where "applications" have a relationship with "products", so we can define appropriate product for each application. For the basic Engilsh "applicaitons" there is no problem, folders and related info from product page are listed correctly:
However, problem arises when trying to list related info into the German language folder. There I have a relationship with English page in order to use product images and other generic stuff already defined instead of filling them again for each language (works fine with product page). However, in German "application" page, product folder header and text info are displayed, but repeatable comes blank. When I insert another <pages> tag just abore my repeatable all values are listed, instead of the correct one. Finally, my question is: Am I able to specify exact value for the repeatable (probably based on page ID etc)? I'm a designer, not a programmer, so please excuse me if something is not clear
Basically, I have two separate languages, each one with different folders for the sake of SEO-friendly URLs.
There are "products" and "applications" sections, where "applications" have a relationship with "products", so we can define appropriate product for each application. For the basic Engilsh "applicaitons" there is no problem, folders and related info from product page are listed correctly:
- Code: Select all
<cms:folders masterpage='products/index.php' orderby='title'>
<cms:related_pages 'related_products' folder="<cms:show k_folder_name/>">
<h5><cms:show k_page_foldertitle/></h5>
<cms:show_repeatable 'product_images' limit='1' >
<img src="<cms:show product_image />" /> <!-- This is the problem with another language display -->
</cms:show_repeatable>
<h3><cms:show k_page_title /></h3>
<p><cms:show product_info_en />
</cms:related_pages>
</cms:folders>
However, problem arises when trying to list related info into the German language folder. There I have a relationship with English page in order to use product images and other generic stuff already defined instead of filling them again for each language (works fine with product page). However, in German "application" page, product folder header and text info are displayed, but repeatable comes blank. When I insert another <pages> tag just abore my repeatable all values are listed, instead of the correct one. Finally, my question is: Am I able to specify exact value for the repeatable (probably based on page ID etc)? I'm a designer, not a programmer, so please excuse me if something is not clear
