phatpat10
Forum Replies Created
-
Forum: Plugins
In reply to: [Resume Submissions & Job Postings] Custom Capability to edit this pluginThank you, but how do I use the custom post type to have my custom role “employers” do that? Sorry I am still learning the system.
Pat
Forum: Fixing WordPress
In reply to: Custom Roles and Capabilities for specific pluginsYes I did thanks, still no replys, thought I could post in both just in case as I’m hoping to have this resolved within a couple days. Appreciate your concern:)
Forum: Fixing WordPress
In reply to: Custom Roles and Capabilities for specific pluginsI’ve checked and it allows any roles that are able to edit posts, in which they are also able to edit the plugins features. The lowest it goes is a Contributor, but i only want my role to only edit this plugin and not have access to edit posts etc…. Here is the code within the plugin
define( 'MANAGEMENT_PERMISSION', 'edit_pages' ); //The minimum privilege required to manage plugin. define( 'SUBTABLE', $wpdb->prefix . 'rsjp_submissions' ); define( 'JOBTABLE', $wpdb->prefix . 'rsjp_job_postings' );
Pat
Forum: Fixing WordPress
In reply to: Import users from CSV, Passwords getting HashedOk finally got it to work with the “Members Import” Plugin!
I didn’t have the “user_email” field, so I added it and, also switched the order to user_login, user_pass, first_name, last_name, and user_email. Had over 1000 users, such a huge relief.
Thank you all for your help!
Forum: Fixing WordPress
In reply to: Import users from CSV, Passwords getting HashedMaybe so, I’m not completely sure how its suppose to work, but am just seeing if there’s a way to get a way to set it up so the users can log in with the exact passwords set because there are over 1000 users and they need to be somewhat memorable.
Forum: Fixing WordPress
In reply to: WP Login Form Code not getting validated, while adding a CheckboxThank you, I figured out my the code wasn’t working was because the Jquery was conflicting with other plugins therefore not being able to execute the code. I found a quick way to be able to execute code, which can be wrapped around the code below:
jQuery(document).ready(function($) { // $() will work as an alias for jQuery() inside of this function });
Appreciate the help though!
It looks like it conflicts with other plugins etc. and has to be set up to add your own custom coding, but I found a JQuery noConflict Wrapper that can be placed around some of your code to wrork:
jQuery(document).ready(function($) { // $() will work as an alias for jQuery() inside of this function });
Forum: Hacks
In reply to: Add checkbox to Login FormDid you figure this out? I need the same thing, thanks!
Forum: Fixing WordPress
In reply to: Adding checkbox to WP login form, to accept terms before logging inAnybody???