Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter clebersleite

    (@clebersleite)

    Solved changing inside plugin folder:
    /elements/product-grid/product-grid.php

    Lines:
    $args = [
    ‘post_type’ => ‘product’,
    ‘posts_per_page’ => $settings[‘eael_product_grid_products_count’] ?: 4,
    ‘order’ => ‘DESC’,
    ];

    to:

    $args = [
    ‘post_type’ => ‘product’,
    ‘posts_per_page’ => $settings[‘eael_product_grid_products_count’] ?: 4,
    ‘orderby’ => ‘menu_order’,
    ‘order’ => ‘ASC’,
    ];

    Plugin Author Rafin

    (@rafinkhan)

    @clebersleite,

    Hi, there. I am glad that you have already resolved it. We will surely look into this from our side.

    Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘EA Product Grid Sort’ is closed to new replies.