[attachment=13210:2018-05-04_17-15-46.png]
This is how it looks when filtering products in the category.
F5 makes it better. AJAX cannot refresh the page.
that's how it happens in the main categories.
How Can I solve it?
[attachment=13210:2018-05-04_17-15-46.png]
This is how it looks when filtering products in the category.
F5 makes it better. AJAX cannot refresh the page.
that's how it happens in the main categories.
How Can I solve it?
I solved the problem.
I solved the problem.
What was the reason?
\templates\views\categories\view.tpl
that's because I made changes to this file.
{hook name="categories:view"}{if $category_data.description || $runtime.customization_mode.live_editor}
{$category_data.description nofilter}
{/if}{if $subcategories}
{math equation=“ceil(n/c)” assign=“rows” n=$subcategories|count c=$columns|default:“3”}
{split data=$subcategories size=$rows assign=“splitted_subcategories”}{foreach from=$splitted_subcategories item="ssubcateg"} {if $subcategories|count >= 6}
{/if} {/foreach} {if $subcategories|count < 6} {/if}{/if}{foreach from=$ssubcateg item=category name="ssubcateg"} {if $category}
{if $subcategories|count >= 6}- {if $category.main_pair} {include file="common/image.tpl" show_detailed_link=false images=$category.main_pair no_ids=true image_id="category_image" image_width=$settings.Thumbnails.category_lists_thumbnail_width image_height=$settings.Thumbnails.category_lists_thumbnail_height class="ty-subcategories-img" } {/if} {$category.category}
{/if} {/foreach}{/if}
{if $products}
{assign var=“layouts” value=“”|fn_get_products_views:false:0}
{if $category_data.product_columns}
{assign var=“product_columns” value=$category_data.product_columns}
{else}
{assign var=“product_columns” value=$settings.Appearance.columns_in_products_list}
{/if}{if $layouts.$selected_layout.template}
{include file=“$layouts.$selected_layout.template
” columns=$product_columns}
{/if}{elseif !$subcategories || $show_no_products_block}
{__("text_no_products")}
{else} {/if}{capture name=“mainbox_title”}{$category_data.category}{/capture}
{/hook}
Thank you for letting us know it