jlamerto
Forum Replies Created
-
Forum: Plugins
In reply to: [Login by Auth0] How can I add/update user_metadata using WP_Auth0?Just wanted to say that worked. Thank you Josh.
Forum: Plugins
In reply to: [Login by Auth0] How can I add/update user_metadata using WP_Auth0?That’s great thanks, I’ll have a play with your example next week.
Forum: Plugins
In reply to: [Login by Auth0] How can I add/update user_metadata using WP_Auth0?Thanks for responding Josh. Yes I’m looking to do a custom theme profile page. How would I go about calling the change email class from within my theme?
Should something like this work:
$results = new WP_Auth0_Api_Change_Email( $user_id, “changed@email” );
Also had to adjust bulkimport.php
Line: 268
$user = get_user_by(‘login’, $username);
to
$user = get_user_by(‘login’, sanitize_user($username, true));and line: 300
if (!$user OR (strtolower($user->user_login) != strtolower($username))) { // use strtolower!!!
to
if (!$user OR (strtolower($user->user_login) != sanitize_user($username, true))) {I can’t seem to replicate the issue I was having. After changing the forum settings from private and removing from the group to public, I could see the topics as expected.
Then I changed the forum back to private with a group and all is working! Strange.
While I like that it has resolved itself, I hope it doesn’t come back…
Thanks for all your help.
So I’m not sure if it existed before the beta ( I suspect it did) but I’m seeing an issue with forums that are marked private and assigned to a group.
If a users is a member of a group which has a forum in the same group. That user can see the forum exists (now with or without private as required), however entering the forum shows:
This forum contains 4 topics and 2 replies, and was last updated by Bat Man 34 minutes ago.
Oh bother! No topics were found here!
I probably should open a new topic if you would prefer.
Thanks Robin – I can confirm that that has fixed the issue. I’ll leave the beta installed for a while while I do some further testing…
Forum: Plugins
In reply to: [Private groups] Private Forum not visible/accessible by member of groupSorry, I got derailed with this. But I’m looking into it again…
And in looking at it again I notice that the private forums are now displaying for the group members as they should. I did try to reset everything and start again. So that must have fixed something. Thanks.
Forum: Plugins
In reply to: [Private groups] Private Forum not visible/accessible by member of groupForgot…
WP – 371
theme is custom i.e. my own (nothing special at this stage).Forum: Plugins
In reply to: [Private groups] Private Forum not visible/accessible by member of groupHi Robin –
Details as follow:
Forum VisibilityForum visibility – non active
Redirect pages – non active
URL for login – ”
URL for non logged in – ”
Freshness – non active
Freshness Message – ”General Settings
Hide topic and reply counts – non active
Show Descriptions – non active
Remove ‘Private Prefix’ – non activeForum: Fixing WordPress
In reply to: Help using wp_script_is() to conditionally load stylesHmm… I can confirm that the enqueue script is being loaded just the style that ain’t.
The problem seems to be the
if ( wp_script_is( 'init', 'enqueued' ) )
which returns false.Changing it to:
if ( ! wp_script_is( 'init', 'enqueued' ) )
Give the correct result. But that makes me worry because it shouldn’t.
Hi,
I found this thread when looking for a solution to the same issue as the OP.
Assigning the contributor user/group also to the role of Page Associate for all selectable page parents seems to solve the parent display issue (parent pages are now displayed in the attributes box), however for me it has raised another problem where the submitted page for review doesn’t inherit whatever the selected parent page’s role settings. i.e. the editor role user/group setting.
Does anyone know a way to make this occur?
Forum: Fixing WordPress
In reply to: Help on searching custom fields in a custom post type queryNot much response here. Maybe my question was wrong.
Whats the wordpress way to search a custom post type and it’s custom fields?I also have this problem.
We already use WP Super Cache in PHP mode and it works very satisfactorily from a performance standpoint.
What is required to make access type plugin compatible with super cache? Are you able to give me a few pointers in how integration might be achieved?