Hi @wjfnet123
Thank you for your interest in the Filter Everything plugin.
The SEO Rules are only available in the PRO version, and here is support for the free version. Please write in the comments section of CodeCanyon, with the account you have purchased the plugin so we can check the issue.
Best Regards – Victor
Hello. I commissioned someone to do my website and I don't know the account number they left when they made the purchase. I looked at the address bar and the SEO rules are correct and filter the data correctly, but on the page there is no corresponding title,description. there is also an extra "<title></title>" and "<meta name ='robots' content='noindex, nofollow' />". I'm not sure what the problem is. Also, do I need to repurchase it myself? Thank you.
Purchasing plugins independently is ideal as it grants access to all required accounts and allows for prompt communication with support or bug reports.
We suggest reaching out to the developer responsible for the project and requesting all necessary information. At present, in the event of any significant problems, we would be unable to offer assistance as we are unable to verify your account. To fix the problem, most likely, we have to check it ourselves, but unfortunately, we cannot do it in your case.
We can only advise checking if the indexing is turned on from the WP Admin Dashboard.
Best Regards – Victor
Thank you. I’m mostly worried about purchasing it and still having the same problem, as I’m not familiar with the system. They are using oxygen builder as a plugin to create the site, could it be a compatibility issue?
Displaying SEO entities depends on the hooks your active theme uses.
We can only provide you with a list of hooks that are used for certain SEO entities:
// For SEO title
add_filter( 'wp_title', array( $this, 'wpTitle' ), 15 );
// For the Meta description
add_action( 'wp_head', array( $this, 'filtersWpHead' ), 1 );
// For H1 title one of these hooks
add_filter( 'woocommerce_page_title', array( $this, 'seoH1'), -5 );
add_filter( 'get_the_archive_title', array( $this, 'seoH1'), -5 );
add_filter( 'post_type_archive_title', [$this, 'seoH1'], -5 );
add_filter( 'elementor/utils/get_the_archive_title', [$this, 'seoH1'], -5 );
Check your page template responsible for showing the products on the needed page with filters and look for those hooks.
Best Regards – Victor
Thank you very much. It’s working now. However, I have encountered a new problem. When filtering, there are three options of brand, color, and size. The H1 title will only update after all three options are selected. What could be the reason for this? I have looked at the example on your website, but it doesn’t work the same way. In the example, the H1 title updates once when selecting brand, and then again when selecting color… How was this achieved? Thank you.