Darren Hauck

Forum Replies Created

Viewing 16 posts - 1 through 16 (of 16 total)
in reply to: Fogot password page error #161818

Darren Hauck
Participant

So what is the fix for this?

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

in reply to: Warnings when installing plugin #145734

Darren Hauck
Participant

How about you fix your plugin

in reply to: Customize User dashboard #145510

Darren Hauck
Participant
This reply has been marked as private.
in reply to: Customize User dashboard #145457

Darren Hauck
Participant

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

in reply to: Customize User dashboard #145278

Darren Hauck
Participant

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

in reply to: Customize User dashboard #145185

Darren Hauck
Participant
This reply has been marked as private.
in reply to: Customize User dashboard #145184

Darren Hauck
Participant

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?

in reply to: Customize User dashboard #145182

Darren Hauck
Participant

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

in reply to: Customize User dashboard #145086

Darren Hauck
Participant

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

in reply to: Import – Post ID #141740

Darren Hauck
Participant

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

in reply to: Import – Post ID #141604

Darren Hauck
Participant

any update?

in reply to: Import – Post ID #141413

Darren Hauck
Participant
This reply has been marked as private.
in reply to: Import – Post ID #141412

Darren Hauck
Participant

Can you do attachments here?

in reply to: Import – Post ID #141384

Darren Hauck
Participant
This reply has been marked as private.
in reply to: Import – Post ID #141316

Darren Hauck
Participant

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

in reply to: Import – Post ID #141303

Darren Hauck
Participant

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)