Hello @lorruche
Thank you for using Filter Everything plugin.
To be able to use Sorting widget you have to add widgets support to your theme. For example as it is described here – https://codex.ww.wp.xz.cn/Widgetizing_Themes You don’t need to display widgets, just add their support with the next code placed in the functions.php of your theme.
<?php
/**
* Register our sidebars and widgetized areas.
*
*/
function arphabet_widgets_init() {
register_sidebar( array(
'name' => 'Home right sidebar',
'id' => 'home_right_1',
'before_widget' => '',
'after_widget' => '
',
'before_title' => '<h2 class="rounded">',
'after_title' => '</h2>',
) );
}
add_action( 'widgets_init', 'arphabet_widgets_init' );
?>
After that you will be able to use Sorting widget.
I hope this will be helpful for you 🙂
I need to do this without accessing the functions.php file. How do I do this without that?
Hi, could you please respond to my previous message? If I can’t get this to work as you assured me it would, I will need to refund this.
I am unable to access the functions.php file. I want to make this work but need extra help please.
I have added the code you gave me to my functions.php file and the filter is still not working in my elementor page. The filter set has been created already. I added the code the php file in my child theme’s folder. I am still getting the “Wrong sorting widget id” message. Please advise how to get this working. I would love to send pictures but this forum won’t let me attach images.
I would love to give you a 5 star review but unless this is fixed I can’t. Please help.