Jonathan Daggerhart
Forum Replies Created
-
Forum: Plugins
In reply to: [OpenID Connect Generic Client] Custom Settings for response_typeApologies for the slow reply, I don’t often check the messages here, most support happens on github https://github.com/oidc-wp/openid-connect-generic/issues
Atm, the only way to do this is to use a WP filter in php. Here’s an untested example:
add_filter( 'openid-connect-generic-auth-url', function( $url ) {
return str_replace('response_type=code', 'response_type=code token', $url);
} );That space between code and token might need to be
%20, I’m not sure without testing.Forum: Plugins
In reply to: [OpenID Connect Generic Client] Multisite useHi Virginie,
Apologies for the slow reply, I don’t often check the messages here, most support happens on github https://github.com/oidc-wp/openid-connect-generic/issues
Since there isn’t a network admin page, the easiest way to do this is to define the values you need for all sites in your wp-config.php file. The github repo wiki page has more details on this: https://github.com/oidc-wp/openid-connect-generic/wiki/Configuration-Environment-Variables-Constants
Related to your other support request, there isn’t an expected constant for defining the button text in code, but I’ll add that in an upcoming release.
Forum: Plugins
In reply to: [OpenID Connect Generic Client] How to customizeI added a setting in a recent release that allows you to change the button text.
For styling you can add CSS to the WordPress login page using the
login_enqueue_scriptshook in your theme’sfunctions.phpfile to insert your custom styles. In your styles, you can target the button with.openid-connect-login-button.Forum: Plugins
In reply to: [OpenID Connect Generic Client] Bug: “invalid-iss” errorThanks for letting me know!
Forum: Plugins
In reply to: [OpenID Connect Generic Client] Bug: “invalid-iss” errorI’ve released 3.11.3 which provides a setting for the issuer url. This seems like the the most reliable way to ensure each site can adjust depending on their IDP.
Please let me know if this resolves your issue.
Forum: Plugins
In reply to: [Query Wrangler] Getting Argument must be of type array error in adminThanks for the report. This was a bug I accidentally created in the previous release. It is now fixed in version 1.5.57
Apologies for the delay in fixing.
- This reply was modified 12 months ago by Jonathan Daggerhart.
Forum: Plugins
In reply to: [Query Wrangler] Cross scripting vulnerabilityHi uwanyal,
I’ve updated the plugin (1.5.54) to resolve this CSFR issue. Please let me know if you have any trouble.
I’ve pushed a fix and created a new release (1.5.53): https://github.com/daggerhart/query-wrangler/pull/25
Let me know how this works out, and if you have any other issues.
Thanks!
I believe this is a bug. The Field for the post type override allows for checking multiple values, so this handler should account for
get_query_var('post_type')to be an array.I’ll make a fix and release an update. Might take me ~ an hour or so.
Forum: Plugins
In reply to: [Query Wrangler] Will There Be a 5.9.x UpdateHi jkearthwood,
Yes it’s still supported, just a bit passively. I fix reporters bugs and add features as they come up in this forum.
I’ll test it out a bit in 5.9+ over the next few days and make a new release so people know it’s supported.
Thanks for the heads up, didn’t realize it had been 9 months.
Forum: Plugins
In reply to: [Query Wrangler] Support for 5.8?That’s for the update. All looks good on my end as well.
Created a new release with a minor css improvement, and stated it was tested w/ 5.8.
Thanks for the nudge, I’ve needed to updated the Tested information for a few versions now.
Forum: Plugins
In reply to: [Query Wrangler] Support for 5.8?Hi whereverpanda,
Yes, it should work. I’ll do some more testing. If I find any issues w/ 5.8 I’ll fix them. And either way, I’ll make a release that mentions working w/ 5.8
Forum: Plugins
In reply to: [Query Wrangler] Page breakage when used with ElementorHi Gizant,
1.5.50 didn’t exist before you posted. I fixed the issue and made the new version thanks to you reporting the issue.
And glad to hear it’s all fixed!
Let me know if you run into other issues,
JonathanForum: Plugins
In reply to: [Query Wrangler] Page breakage when used with ElementorHi Gizant,
Thanks for the report! I’ve just released a fix for this bug (version 1.5.50). Please let me know if you run into any other issues.
Jonathan
Forum: Plugins
In reply to: [Query Wrangler] Hide Header/Footer if there are no resultsHi whereverpanda,
I’ve added this feature and pushed out a new release (1.5.49). When editing the header or footer for a query, there is a checkbox that says “Hide if query has no results” (or similar). Checking that box should do what you need.
Let me know if you run into any issues, and thanks for the kind words.