• Resolved lorruche

    (@lorruche)


    Installed plugin and added the filter set then filters according to documentation. I then added filters widget to the page (although I don’t think that’s doing anything since my pages aren’t using widgets). I am using elementor and added in the shortcode to get the id of the filter using [fe_sort]. I am getting message saying there are no sorting widgets on site.

    Where is my widget ID or how to do I get it to dispay?

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author stepasyuk

    (@stepasyuk)

    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 🙂

    Thread Starter lorruche

    (@lorruche)

    I need to do this without accessing the functions.php file. How do I do this without that?

    Thread Starter lorruche

    (@lorruche)

    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.

    Thread Starter lorruche

    (@lorruche)

    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.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Not appearing’ is closed to new replies.