NetzzJD
Forum Replies Created
-
Forum: Plugins
In reply to: [Reviews and Rating – Google Reviews] Avatar Accessibility IssueNo worries. Thanks for looking into it. The link’s aria-label must have been and addition by one of my accessibility plugins perhaps. Looking forward to the fix!
Forum: Plugins
In reply to: [WP Popular Posts] Empty Paragraph TagsWorks great. Thank you!
Forum: Plugins
In reply to: [AddToAny Share Buttons] Universal Button Fails AccessibilityThanks for the quick response. Apologies for not describing it exactly as you wish, but kudos for attacking a user trying to help make your plugin more accessible. I understand context is key and “More…” as a last item in the popup of other social links could be considered subjectively contextual, but it’s a simple suggestion to be more clear and objective in the intention of the link. Even if just a best practice.
Unrelated to accessibility, I would also argue that outputting code (even hidden) in the footer when those settings are specifically not in use is poor practice and added bloat and DOM size as well. This hidden block is also loaded on all pages with or without the widget placed on the page. Why even have a whole #addtoany div block of hidden items when it knows those settings are disabled?
Thanks for taking the time to review and improve.
Also experiencing this issue and PHP error logs are filled with these Warnings. It’s been over 5 months since this issue was reported here. Ninja Forms 3.13.0 is the latest available. Has this fix been tested and merged yet or still in process?
Replacing:
isset($subject['payment_total'])with:
!empty($subject['payment_total'])appears to handle this check properly as a hotfix.
Forum: Plugins
In reply to: [The Events Calendar] critical error on this websiteAlso experienced this exact same issue:
PHP Fatal error: Uncaught ArgumentCountError: Too few arguments to function TEC\Events\Integrations\Plugins\TEC_Tweaks_Extension\Provider::TEC\Events\Integrations\Plugins\TEC_Tweaks_Extension{closure}(), 1 passed in /wp-includes/class-wp-hook.php on line 324 and exactly 2 expected in /wp-content/plugins/the-events-calendar/src/Events/Integrations/Plugins/TEC_Tweaks_Extension/Provider.php:47
Disabling The Events Calendar Extension: Tweaks extension plugin allows the admin Settings page to be used again.
Confirmed. PODS 3.2.6 fixes this issue under WordPress 6.5.5. Thank you!
Same here after updated PODS to v3.2.5 on WordPress 6.5.5. Can’t edit or create new CPTs. Rolling back to PODS v3.2.2 works again.
It was enabled, yes. Disabling the Improved CSS Loading feature in Elementor does seem to fix the display issues with icons/lists when re-enabling Relevanssi’s Custom search result snippets. But it also now shows zero search results for certain keywords. When Custom Snippets are disabled, it shows the expected dozen+ results for the same search. The WordPress Archive Title (“Search Results for:”) doesn’t display at all either.
Exact same issue here. Case #1 from @ivelinjpashev does work but only shows the first item in the relationship, not multiple. Case #2 does not seem to work for PODS as it uses a custom database table (wp_podsrel) for their relationships, so this function would need to be modified.
I’d love to try the Reddit plugin mentioned as the solution, but it seems they have stopped support for it recently and it can no longer be downloaded. @jonass1, is there any way to provide or DM the e-Query POSTS plugin files?
Experiencing this same bug when using WP core Password Protected Pages. I do not have WooCommerce or any other plugins, but am using the Change Login URL ASE setting. When it is on, any attempted password, even the correct one, sends to a 404 page. When the ASE setting is disabled, it works as expected.
Forum: Plugins
In reply to: [Admin and Site Enhancements (ASE)] Change Login URL RedirectsPerfect. This update fixes it. Thank you!
We do not use Divi. Most are Elementor with the Hello theme.
No. None of our affected sites have WP_DEBUG on. It is set to false.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Plural Searches Only Work for Some WordsThis was solved with the code here:
https://www.relevanssi.com/knowledge-base/facetwpForum: Plugins
In reply to: [Relevanssi - A Better Search] Plural Searches Only Work for Some WordsQuery Monitor does not show Rows/Results as our hosting disables symlinks. Although looking at the Query Monitor Caller list for the main search, it shows this:
relevanssi_search
relevanssi_do_query
FacetWP_Relevanssi->run_query
FacetWP_Relevanssi->is_main_query
apply_filters(‘facetwp_is_main_query’)
FacetWP_Request->is_main_query
FacetWP_Request->update_query_vars
do_action_ref_array(‘pre_get_posts’)
WP_Query->get_posts
WP_Query->query
WP->query_posts
WP->mainWe do use FacetWP for a subset of our content and it has a search box within its page using the Relevanssi Integration plugin. This seems to be the issue. When I disable FacetWP, the main website search does show the proper results on the frontend, showing these Callers instead:
relevanssi_search
relevanssi_do_query
relevanssi_query
apply_filters_ref_array(‘posts_pre_query’)
WP_Query->get_posts
WP_Query->query
WP->query_posts
WP->mainNext question though, is how do I keep both the Relevanssi sitewide WordPress search and FacetWP custom post type searches both active without interfering with each other?