Darren Hauck

Forum Replies Created

Viewing 16 posts - 1 through 16 (of 16 total)
Sep 16, 2021 at 8:27 pm
#161818
Participant
Darren Hauck
OP

So what is the fix for this?

Ever since your last update this plugin has one issue after another

Jan 31, 2021 at 8:29 pm
#145734
Participant
Darren Hauck
OP

How about you fix your plugin

Jan 28, 2021 at 8:50 pm
#145510
Participant
Darren Hauck
OP
This reply has been marked as private.
Jan 27, 2021 at 9:53 pm
#145457
Participant
Darren Hauck
OP

This is still not saving updated user info? Can I get a reply? Even if it is saying you are not going to answer

Jan 26, 2021 at 2:53 am
#145278
Participant
Darren Hauck
OP

I knew there had to be a function/hook Exactly where is this documented I couldn’t find it. I want to look at it because it is not working.

IS there another one used for updating existing users? This hook looks to be used for new users

Jan 24, 2021 at 11:43 pm
#145185
Participant
Darren Hauck
OP
This reply has been marked as private.
Jan 24, 2021 at 11:40 pm
#145184
Participant
Darren Hauck
OP

OK I create a registration form, adding the custom fields needed per your documentation

<?php
add_action('wpdm_register_form','my_register_field');
function my_register_field() {
?>
    <p class="form-group">
        <label class="control-label" for="fb_id"><?php _e('Facebook Profile Link','wpdmpro'); ?></label>
        <input class="form-control" required="required" type="text" tabindex="102" size="20" class="required"  id="fb_id" value="" name="fb_id">
    </p>

<?php
} 
?>

Then I added this field to the Edit Profile tab using

add_action('wpdm_update_profile_filed_html','new_user_profile_field',10,1);
function new_user_profile_field($user){
?>
    <div class="col-md-6">
        <label for="fb_id">Facebook Profile Link: </label>
        <input type="text" value="<?php echo $user->fb_id; ?>" class="form-control" name="profile['fb_id']" id="fb_id"> 
    </div>
<?php
}

So I should be able to register a user fill out the custom fields. Then logging in I should be able to see these fields values on my Profile/Edit Profile under my account dashboard. Correct?

I do see the fields but no values are saved. I check the database no fields are entered either under users or user_meta tables.

So is there some setting/option I need to select or is there some other function I need to add not mentioned in the documentation?

Jan 24, 2021 at 9:23 pm
#145182
Participant
Darren Hauck
OP

From what I can tell doing a var_dump($user) Is the “Edit Profile” tab/page/form is editing/updating ‘user data’ and not ‘user meta’ Is this correct? If so how would add I custom user profile fields, so they will work with your plugin. Or do I need to just rewrite the form so it works with user_meta like most forms

Jan 22, 2021 at 7:14 pm
#145086
Participant
Darren Hauck
OP

Figures.

I am trying to add fields to the profile and edit profile forms. The user profile has a custom fields added to WordPress user meta I need to be able to show and edit these fields from the user dashboard

Nov 27, 2020 at 9:51 pm
#141740
Participant
Darren Hauck
OP

Very disappointed in the Pro version. I recommend my client purchase the Pro version because of the advertised “Export/Import” functionality. Only to find it is bunk.

Found the issue your document https://www.wpdownloadmanager.com/doc/bulk-import/ shows “access” as “subscriber,author,editor,another-role”

So I entered “site_user ,administrator” the correct entry should have been site_user,administrator no quotes or spaces. I would have thought you could have pointed that out instead of asking for access and saying it was to a custom user role.

I have lost 4 days because of this

Thanks

Nov 25, 2020 at 7:24 pm
#141604
Participant
Darren Hauck
OP

any update?

Nov 24, 2020 at 5:59 am
#141413
Participant
Darren Hauck
OP
This reply has been marked as private.
Nov 24, 2020 at 5:57 am
#141412
Participant
Darren Hauck
OP

Can you do attachments here?

Nov 23, 2020 at 9:46 pm
#141384
Participant
Darren Hauck
OP
This reply has been marked as private.
Nov 23, 2020 at 6:45 am
#141316
Participant
Darren Hauck
OP

Those are the user roles. And it is not importing correctly.

Nov 22, 2020 at 11:41 pm
#141303
Participant
Darren Hauck
OP

Need to create import file preferably using a unique ID similar to your so called export file generated on the Import/Export tab of WPDM admin area. Apparently that is not possible so I can work around it.

Creating a custom import.csv following the example and documentation on https://www.wpdownloadmanager.com/doc/bulk-import/

The custom csv has a column -> “access” with the value “site_user,administrator”
Site_user being a custom user role created for this site.
Import the files as expected but cannot download without manually adding the user role.

I have over 1200 files to upload so was really hoping your export/import feature worked.

Viewing 16 posts - 1 through 16 (of 16 total)