integration issues – custom fields, speed, drop down list sort etc
- wpsolrKeymaster2 years, 11 months ago #27789
(#1 Hello theme with 100K products demo: https://demo-woocommerce-elementor-cloudways-100k-products.wpsolr.com/shop/)
JmaskedParticipant2 years, 11 months ago #27796public function wpsolr_filter_url_parameters( WPSOLR_Query $wpsolr_query, $url_parameters ) { if ( WPSOLR_Service_Container::getOption()->get_option_plugin_woocommerce_is_replace_sort_items() ) { // Get WooCommerce order by value from url, or use the default one set in settings->products->display. $order_by_value = isset( $url_parameters[ self::WOOCOMERCE_URL_PARAMETER_SORT_BY ] ) ? wc_clean( $url_parameters[ self::WOOCOMERCE_URL_PARAMETER_SORT_BY ] ) : apply_filters( 'woocommerce_default_catalog_orderby', WPSOLR_Service_Container::getOption()->get_option( true, 'woocommerce_default_catalog_orderby' ) ); if ( ! empty( $order_by_value ) ) { //$wpsolr_query->set_wpsolr_sort( $order_by_value ); } } }
is the culprit
You must be logged in to reply to this topic.