mangesh.kode87
Forum Replies Created
-
Forum: Plugins
In reply to: [Alphabetic Pagination] Custom post type and custom field as filterHi Fahad,
Thanks for your help.Now it’s working fine.
Forum: Plugins
In reply to: [Alphabetic Pagination] Custom post type and custom field as filterYes on Woocomerce Pages, specially on product catalog page its should use woo-commerce sort.
- This reply was modified 7 years, 8 months ago by mangesh.kode87.
Forum: Plugins
In reply to: [Alphabetic Pagination] Custom post type and custom field as filterHi Fahad,
It’s not working.
Still it using alphabetic-pagination plugin’s sorting code on click of alphabetic pagination link.
It should use Woocommerce sort code.Also there is no any parameter with named ‘order’ is used in woocommerce product sorting query string, so below code will not work
(!empty($_GET) && (isset($_GET['orderby']) ||<strong> isset($_GET['order'])</strong>))
Thanks
- This reply was modified 7 years, 8 months ago by mangesh.kode87.
Forum: Plugins
In reply to: [Alphabetic Pagination] Custom post type and custom field as filterHi Fahad,
Thanks for looking after the issue.
I have checked the issue, it is partially fixed for the case of a woo-commerce dropdown filter when there is “order” parameter added in the query string.
However, when we first time clicks on any alphabetic pagination link then woo-commerce default sort code not work, by default it is overridden by alphabetic-pagination plugin’s sorting code.
We have noticed that there is checked for ‘orderby’ parameter on plugin’s inc/function.php file
if(
—code–
—code–
isset($_GET[‘orderby’])
)
on line number 857
If We we remove this check then it will automatically call Woocommerce default sort.Could you please check so that by default woo commerce sort should work.
Thanks
Forum: Plugins
In reply to: [Alphabetic Pagination] Custom post type and custom field as filterHi Fahad,
Have you check it.
Please let us know once you are done with it.
As we are planning to make the site live this week.So we want to resolve the issue before that.Thanks
Forum: Plugins
In reply to: [Alphabetic Pagination] Custom post type and custom field as filterHi Fahad,
We are using alphabetic-pagination plugin in our woo-commerce catalog page.
but when we click on any alphabetic pagination link then woo commerce sort functionality not working, it is overridden by alphabetic-pagination plugin’s sorting code.However, if we remove the below sort filter code from alphabetic-pagination plugin’s inc/function.php file
add_filter(‘posts_orderby’, ‘ap_search_orderby’, 999);
on line number 852
Then woo-commerce sorting works.Can you update the plugin code and provide an option to manage plugin’s default sorting from admin panel. so that user can enable or disable plugin default sorting from admin side as per his need.
Or Please let us know if any filter available to override alphabetic-pagination plugin’s sorting code.- This reply was modified 7 years, 8 months ago by mangesh.kode87.
Forum: Installing WordPress
In reply to: getting error installingYou need to add check whether the table exist or not,if not then need to write a script to create a table in your installation script.