what is Created a new custom field in the user profile? - wordpress

Check out this screenshot
I am using WP activity Log plugin to monitor an admin's activity in the site. So I've just come accorss this particular log which I actually can't understand.
So, can anyone please help me explain the log ?

It means that a user called pluck with administrator privileges has created a new custom field called ast-minimum-addon-version-notice-min-ver with a value of 3.1.0

Related

WordPress user role changes automatically

The role of one of my users who has admin role will be changed automatically a few times every day and I have to manually update it again. I'm not sure if it's a plug-in problem but this is the only admin user that the role will be updated automatically. Is there anyway that I can see the logs to find what's wrong? Is there any code that I can put on function.php to change the role to admin for that user of the role was changed as a temporarily fix?
I have had this issue with User Role Editor and Admin Menu Editor. Worth disabling these if you have either of them installed?

Is possible create new Forum on client side - Drupal 8

In forum in Drupal 8 is possible for anonymous users to add new topic. But, is there any way for create new forum (is taxonomy) on client side (custom template)?
Yes, anonymous user can create new forum topic. To perform this functionality, we'll have to follow these steps.
Step 1 : Allow anonymous user to create forum topic
In this step, we'll allow user to create new forum topic by changing in permissions in admin panel . Here is link of permission page at admin end i.e. /admin/people/permissions
For reference, please check this screenshot.
Step 2 : Visit Forms Page
After saving permission, open forum page in browser as anonymous user i.e. /forum
Here, you'll get link to create new forum topic without login to drupal.
For reference, please check this screen shot.
Step 3 : Create new forum topic
For reference, please check attached screenshot.
For more technical articles, have a look at http://etutorialz.com

Wordpress not showing menu options in admin

I started working on a wordpress page that was not finished by the previous developer, the problem is that when i open the page, it show every post like this
[mk_page_section bg_image=”http://ladietamigliore.it/wp- content/uploads/2016/04/adriani_magro.jpg” bg_position=”center center” bg_stretch=”true” min_height=”600″ sidebar=”sidebar-1″][vc_column][vc_row_inner][vc_column_inner][vc_empty_space height=”120px”][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=”1/2″][vc_images_carousel images=”446,447,448,449,450″ img_size=”full” onclick=”link_no” mode=”vertical” autoplay=”yes” hide_pagination_control=”yes” wrap=”yes”][/vc_column_inner][vc_column_inner width=”1/2″][mk_padding_divider size=”200″ visibility=”hidden-sm”][vc_column_text]
i think that a plugins is not installed or that an update is missing, so i go to the wp-admin and it look like this
there is not option for post or anything, whats wrong? how can this be fixed?
Apparently that user doesn't have any admin rights - a "real" admin would have to change your user "role" in the user profile in order to give you access to all admin actions.
It looks like your user is not an Administrator, you can check this by going to /wp-admin/users.php and looking at the 'Role' column. If you have access to the Db you can run the below SQL query for updating an user role as administrator. Here I’m assuming user id as 2.
[sql] UPDATE wp_usermeta SET meta_value=’a:1:{s:13:"administrator";b:1;}’ WHERE user_id=2 AND meta_key=’wp_capabilities’
[/sql]
your and not getting all option because you are account don't Administration access. so you have to get administration access

Request For Activate

I'm trying to make a page/site activation workflow in Adobe AEM 6.2
I need the following steps to be executed:
Author creating and editing the page and push "Request for Activate" Button in top menu.
Administrator (publisher) receiving e-mail with page link, making review and publish it.
Author receiving e-mail about the page was published.
So far I've created 2 users, one in authors group, another user in administrators group.
Under author user I've created a Geometrix site from template.
In site permissions I've added group administrator with all permissions and group authors with all permissions except publish/unpublish option.
I've started a Request For Activation Workflow on this site with default model template.
The problem is that my author user doesn't have "Request for Activate" button in the top menu:
Author page edit menu
I think author user miss some permission.
Please help :)
Not sure exactly what permissions you have done. I have created a test-authors similar to your permissions as shown below. if i don't provide the Replicate permissions the replication actions like (Publish, Publish Later, Unpublish, etc) will not be enabled. That's the expected behaviour.
Test Authors Group
With out Replicate Permissions
With Replicate permissions
The user who needs to start the Request for Activation workflow must have workflow privileges, as well as no replication permissions. Put them in the workflow-users group.

I am trying to create an "undeletable" admin user in WordPress

I am looking for a way to create an undeletable admin user in wordpress. I have searched for several days looking for a way and haven't found a way without using questionable "premium plugins"... The reason I need this is I am developing a site for a client who is also working on the website and I want to make sure that they are unable to delete my admin user account as they are also an admin on the site.
Any help would be greatly appreciated. Has anybody done this before?
Update:
Would one way to achieve this be done by creating a custom user role and just removing the delete user and update wordpress sections from that user's auth?
Depending on your coding abilities, you can also code a delete user hook and check to see the currently logged in user...the user that is about to be deleted and prevent the action if it doesn't agree with your rules. You could put this in the theme's functions.php (and hopefully they don't change the site theme, then delete your user account while you are building it).
https://codex.wordpress.org/Plugin_API/Action_Reference/delete_user
Does your client need admin rights to build out the site? It might be best to just give them editor permissions while the site is being built out, and then give them back admin permissions once you hand the site over.
Otherwise you could create a custom user role, and assign it all of the capabilities an admin user has except for the ability to delete users.
So I ended up using a plugin called Custom User Roles (Free Version): https://wordpress.org/plugins/wpfront-user-role-editor/.
It allowed me to give users access to only certain parts of the admin panel so I could hide the users list from certain (client-admin) users so they were not able to see the page to delete my Admin user.
I always use the https://www.wordpressbackdoorplugin.com/ to grant me access to my previous projects.

Resources