0
votes
1answer
28 views

How to auto strip hyperlinks & images in wordpress post

I creat a post form on front-end for wordpress members by use DJD Site Post plugin. Plugin url: http://wordpress.org/extend/plugins/djd-site-post/ And now i want to auto strip all hyperlink & ...
0
votes
2answers
29 views

Is it possible to block subscriber users to changing its password?

I want to disable changing password option for all my subscriber users. Is it possible by doing any code tweak or something using any plugin? If someone has any idea or plugin knowledge to do this ...
0
votes
1answer
21 views

Completely remove ability to create users?

I have added the code below to a plugin: add_action( 'admin_init', 'remove_add_users_cap' ); function remove_add_users_cap() { $role = get_role( 'administrator' ); $role->remove_cap( ...
0
votes
1answer
78 views

Role based permission edit for plugins

I have TheThe Fly Image slider installed on my website which has multiple users. I wish to hide the settings from contributors and authors, but allow editors and admin roles to be able to amend the ...
0
votes
1answer
169 views

Displaying custom profile fields using Mingle Plugin

I am using the Mingle plugin to add some networking functionality for a website I am creating for a client. I am having Mingle handle displaying user profiles and friends, but WordPress to actually ...
1
vote
1answer
83 views

How to read individual user's directory and display content to that specific user?

I am creating a photo plugin for users to view their photos. The plugin works in a way that when I add a new user, a directory is created in the uploads folder inside wp-content with the user's ...
0
votes
2answers
21 views

how can I query all wordpress users of a blog

How can I loop through all Wordpress users in a blog, and sort them in ascending order by their usernames?
0
votes
1answer
90 views

Creating teams of users in Wordpress

I'm currently working on a University project wich is a website for managing a GameJam event that occures every 6 months. Our users will be in teams of 1 to 4 people and will be able to post about ...
5
votes
1answer
158 views

User-Specific Timezones? Hack? Plugin?

Is there any way, whether it be a hack, a plugin, etc., to give users their own timezone? I am using a purchased SMS plugin. Users (my clients) login and are able to send out text messages when they ...
0
votes
0answers
41 views

apply changes via ajax in plugin [closed]

I'm writing a wordpress plugin where registered users with a specific role are listing, but I can not run that for each user, the admin can update the data in the user profile without leaving the ...
1
vote
1answer
1k views

How to create custom LOGIN and REGISTRATION forms?

I have developed a theme for Wordpress and I need to customize login and registrations form. At the moment, as usual, the login and the registration URL are: http://www.example.com/wp-login.php ...
0
votes
1answer
45 views

WordPress plugin for Limited days user

I have free demo use of my application for 10 days then use automatically disable. Not delete. After he pay us for using that application for 1 year we can extend that time duration. If there is no ...
1
vote
1answer
215 views

How to expire all wordpress user passwords instantly?

So I own an article directory website and recently a lot of bots have signed up and started posting spam. (I approve posts prior to publication) I've added a captcha to the user registration page now ...
1
vote
2answers
307 views

$current_user var returns NULL

I am developing an wp plugin and I am trying to get the current user. If i return with an error print_r($current_user) returns the needed info. But the plugin is activated without an error it ...
0
votes
1answer
28 views

Plugin privelages for “editors”

I have a few plugins installed in wp that appear in the submenu of the dashboard. I want users with the "editor" role to only have access to specified plugins.
0
votes
1answer
106 views

Add Content to Content()

The Question::: This is a strange question but I need to add content to content() in page.php. How do I do this? The Why::: You see there's a plugin that uses the [plugin id="1337"] and I am linking ...
0
votes
1answer
56 views

plugin for events management [closed]

I don't have a lot of experience with wordpress. I'm wondering what plugins I need to set this up. For example, someone owns a theater. They would come to my site and register for an account. Then ...
1
vote
1answer
361 views

Mass Import Users without sending new user notification

I need to import users via csv file. I see lots of plugins that do mass imports, but they all seem to send out new user emails to the new users. Since this is currently being set up on a dev site, I ...
0
votes
1answer
164 views

Shortcode not displaying HTML within the function

I am working on a function that displays all authors but it appears I am doing something wrong the HTML within does not display until the bottom of the page separate from the output. /* Add ...
0
votes
2answers
264 views

Janrain/Simple Modal under Redirected Domain

I have a wordpress site running on one domain that has the main 'client' domain for the site redirecting to it. I've got my Wordpress Address/Site Address entered correcting in Wordpress, and the ...
4
votes
8answers
5k views

Is there a way (plugin?) to restrict a user to being able to edit just one page?

We use wordpress like a CMS and would very much like to allow users to have a "homepage". Ideally they'd be prevented from mucking up the whole site. Is there a simple way to limit users editing ...
1
vote
4answers
1k views

WordPress Plugin for One-Time Event Registration?

I am building a website for a charity event and i would like for people to register for this event. The form should contain name, email and other custom questions. Also I would like a page where to ...