• Resolved Gintaras

    (@amberday)


    Aurovrata Venet, read many reviews, you made the best plugin for item reordering in WP. I use FLATSOME – one of the most popular premium WP themes. I have products that are assigned to multiple categories and wanted to reorder products category pages. By default product orders have order_by set to menu_order. After installing and enabling, seting up and switching on Override ‘orderby’ query attribute nothing changes. Debug mode is on. No logs appear. Console has no errors as well.

    Where should I start to look for error?

Viewing 1 replies (of 1 total)
  • Plugin Author Aurovrata Venet

    (@aurovrata)

    Where should I start to look for error?

    first you need to check if the filter functions that are used to reorder posts are being hooked properly on your category pages.

    setup the following in your wp-config.php file

    define('WP_DEBUG', true);
     define('WP_GURUS_DEBUG', true);
     if ( WP_DEBUG ) {
         define( 'WP_DEBUG_LOG', true );
         define( 'WP_DEBUG_DISPLAY', false );
         @ini_set( 'display_errors', 0 );
         define('AUTOSAVE_INTERVAL', 600 );  //seconds
     }

    this will enable WP_DEBUG mode to log wp-content/debug.log file. It also enables the plugin’s debug mode (WP_GURUS_DEBUG).

    Run a product category page to and check the debug log file for the following line entries starting with:

    RPWC2 SORT VALIDATION...

    this will show that your category pages are running post query pages that are being filtered.

    please report back your findings

Viewing 1 replies (of 1 total)
  • The topic ‘Product ReOrder in Flatsome theme’ is closed to new replies.