Product Filtering, Page Refresh

[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?

2018-05-04_17-15-46.png

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}

{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