The breadcrumb code:
What should I do with the breadcrumb to make it show correct display?
Another questions, the current multi languages website has SEO issues, any chance we can fix that? is couch going to develop this multi language function into a more advanced feature, like fixing this SEO problems?
- Code: Select all
<cms:if my_lang='english'> <h3 style="margin-bottom:25px;">Our Products / <span class="breadcrumbwap"> <cms:if k_is_page || k_is_folder > <cms:if k_folder_name ><cms:set my_folder=k_folder_name /></cms:if> <cms:if k_page_foldername ><cms:set my_folder=k_page_foldername /></cms:if> <cms:if my_folder> <cms:parentfolders folder=my_folder > <span class="breadcrumb2"><cms:show k_folder_title/></span> </cms:parentfolders> </cms:if> </cms:if> </span></h3> </cms:if> <cms:if my_lang='chinese'> <h3 style="margin-bottom:25px;">我们的产品 / <span class="breadcrumbwap"> <cms:if k_is_page || k_is_folder > <cms:if k_folder_name ><cms:set my_folder=k_folder_name /></cms:if> <cms:if k_page_foldername ><cms:set my_folder=k_page_foldername /></cms:if> <cms:if my_folder> <cms:parentfolders folder=my_folder include_custom_fields='1'> <span class="breadcrumb2"><cms:show chtext /></span> </cms:parentfolders> </cms:if> </cms:if> </span></h3> </cms:if>
What should I do with the breadcrumb to make it show correct display?
Another questions, the current multi languages website has SEO issues, any chance we can fix that? is couch going to develop this multi language function into a more advanced feature, like fixing this SEO problems?