Stephen Sherrard

Forum Replies Created

Viewing 15 posts - 751 through 765 (of 803 total)
  • Author
    Posts
  • in reply to: SUS + Member Directory bug? #3983
    Stephen Sherrard
    Keymaster

    If you want to view this content, you need to buy any product.

    in reply to: Multiple emails – PTA Sign ups #3772
    Stephen Sherrard
    Keymaster

    If you want to view this content, you need to buy any product.

    in reply to: True User Integration #3771
    Stephen Sherrard
    Keymaster

    Part of that functionality is already built in. If the user is logged in, then the form attempts to get the first name, last name, and email from the user’s account/profile. However, first name and last name are not usually created via the normal registration forms, so those fields might not be present. After they fill out the sign-up form the first time while logged in, all those fields are saved to the user’s meta info so they won’t have to fill it in the next time.

    So, at least that part of what you want is already in the plugin, but we allow them to modify it in case they want to use a different contact phone number or have changed email, etc… that was the way we set it up for our PTA site, so that’s the way I released it. Also, there may be item details that they need to enter, so we can’t skip the sign-up form completely.

    To skip the form completely, or to disable the inputs once all that info is in the user’s account, would require some custom programming, so I will keep this open as a feature request.

    in reply to: Task details not showing on frontend? #3743
    Stephen Sherrard
    Keymaster

    If you want to view this content, you need to buy any product.

    in reply to: Request for some features #3742
    Stephen Sherrard
    Keymaster
    in reply to: sign up sheet configuration? #3673
    Stephen Sherrard
    Keymaster

    If you want to view this content, you need to buy any product.

    in reply to: Source code for "free" plugins? #3565
    Stephen Sherrard
    Keymaster

    The files at WordPress.org are always the latest versions. I don’t maintain a public repository for those anywhere else.

    Stephen Sherrard
    Keymaster

    If you want to view this content, you need to buy any product.

    in reply to: Settings > Email Settings > CC email cannot be deleted #3512
    Stephen Sherrard
    Keymaster

    If you want to view this content, you need to buy any product.

    in reply to: This plugin is for WordPress 3.9 or later! #3426
    Stephen Sherrard
    Keymaster

    Once you install and activate the plugin, when you go to the visual editor for a page or post, you will see “PTA” with a drop down arrow next to it in the top row of text formatting icons. Just click on that and a list will drop down with the 4 types of shortcodes that can be generated with that plugin (for a couple of my plugins). When you select one, a dialog box will pop-up for you to enter any arguments. Most of the time you will just leave them blank if you want the default display. When you click OK, the appropriate shortcode will automatically be pasted into your editor window at the current cursor location.

    in reply to: Show full last name of volunteer #3366
    Stephen Sherrard
    Keymaster

    Sorry there was a typo… add_filters should be add_filter (not plural).

    The below code has been tested and works:

    
    add_filter( 'pta_sus_display_signup_name', 'pta_modify_signup_display_name', 10, 2 );
    
    function pta_modify_signup_display_name( $display_name, $signup ) {
    	return esc_html($signup->firstname).' '.esc_html($signup->lastname);
    }
    
    in reply to: User/Admin Tasks Progress Monitor #3333
    Stephen Sherrard
    Keymaster

    No, there is no way to do that with the existing Sign-up Sheets plugin.

    That would require quite a bit of extra programming and new admin/user interfaces, plus new database tables & fields to store that information, new report generation, etc…

    In short, not something that would be quick or easy to implement.

    Feel free to add that to the feature requests section, but that would most likely have to be either a custom programming job for hire, or developed as a separate paid extension (which would not be worth the time if only one or 2 people are interested).

    For now, you would just have to do that via email and phone communications, and track things with a spreadsheet or any other system you want to use. Not something we needed for our school’s volunteer events, and so it’s not something that I programmed into the plugin.

    in reply to: Woocommerce Wholesale Plugin Questions #3234
    Stephen Sherrard
    Keymaster

    Hi Tom,

    Sign-up for my mailing list, or follow me on twitter –> see the right sidebar.

    I don’t send out large amounts of marketing spam or anything like that… just use those to notify my customers of major updates and new releases.

    in reply to: Woocommerce Wholesale Plugin Questions #3232
    Stephen Sherrard
    Keymaster

    I’m getting close to releasing Version 2 of the Wholesale Ordering plugin, which, among other things, has several hooks in place for extensions. That should be out by next week.

    My next project will be to take the multi-role and user pricing system I developed for the big auto-parts store, and either package that as its own plugin, or use that as the basis for some sort of user/role based discount add-on for the wholesale ordering plugin.

    I’m open to suggestions and feature requests. If I create it as an add-on for the wholesale ordering plugin, I might be able to get it out a bit faster, since a lot of the framework already exists in the wholesale ordering plugin, and I have already created the code for user/role based pricing for the auto-parts store.

    If I create it as an add-on, then you could specify, per role, the base price for each role (either regular or wholesale), and a multiplier that is applied to the base price. If the user’s pricing is set at default settings, then they get whatever is set up for their role. If you specify a base price and multiplier for a specific user, then those override the role settings. For the auto-parts store, we set up 5 roles to fit their needs. If I turn it into an extension, I would probably set it up so you can specify the settings for any existing role, and maybe add something to create custom roles.

    in reply to: Question on how your plug in works #3221
    Stephen Sherrard
    Keymaster

    Hi Lynn,

    Sorry for the delay in responding… the forum is not sending me emails for some reason when a new post is made.

    As far as your question, the short answer is “no”. There is nothing that allows members to edit their own info. That plugin started out as a very simple member directory listing, designed for our PTA manager to quickly add/update all members and positions. The “members” in my plugin are actually a custom post type and are NOT tied to any WordPress user accounts. You could give any user the right capabilities to edit those, but then they would be able to edit ALL members.

    You may be able to find some other plugin at WordPress.org that lets you edit/assign the “author” of each post, and then set each member’s author to the corresponding user, and try to set permissions so that they can edit their own member post. But, I can’t guarantee that would work.

    A while back I started working on an extension to tie together user accounts with the member directory and to allow users to submit and edit their own directory listings (along with a setting to let the admin approve listings before they appear in the directory). But, since these PTA plugins are not very popular, and I rarely sell any extensions for them, that got put on the shelf when I got busy with several large paying development jobs. I may dig that up and finish it some day, but it’s not high on my priority list.

Viewing 15 posts - 751 through 765 (of 803 total)