Shahriar

Forum Replies Created

Viewing 25 posts - 1,451 through 1,475 (of 12,513 total)
in reply to: ShortCode for user to upload file? #111911

Shahriar
Moderator

Yes, it is possible to customize the frontend uploader form using custom templates.

Frontend uploader uses the /tpls/wpdm-add-new-file-front.php template to show the form. You can make your own copy of this template to simplify the uploader. Please check the template customization doc here https://www.wpdownloadmanager.com/doc/template-files/

There is another shortcode [wpdm_package_form] which only shows the uploader form instead of all things shown by the [wpdm_frontend] shortcode. You can check that out too.

And the final option is using File Hosting add-on. Please check the add-on details and demo https://www.wpdownloadmanager.com/download/file-hosting-sharing-add-on/

in reply to: License renew and recaptcha #111910

Shahriar
Moderator

Are you referring to the download icons shown in the following screenshot?

http://prntscr.com/p0q14j

The download works fine there too. Have I missed something?

in reply to: Sorting desc by date format d-m-Y not working #111909

Shahriar
Moderator

Okay, please wait for the next update.

in reply to: download link with password required #111905

Shahriar
Moderator

You are using a very old version of WPDM Pro. Please install the latest version to fix all issues. You can download it here https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases

We have changed the popover modal for lock due it’s compatibility issues. All locks are handled by iframe now.

in reply to: version 3.0.1 error 500 #111904

Shahriar
Moderator

Where do you encounter the issue? Could you please send me a link? Also, send me the server error log or latest entries in the error log. It will help us to identify the issue.

You can also try deactivating other plugins to check if this is a plugin issue.

in reply to: How to open a new tab? #111902

Shahriar
Moderator

You can create custom link/page templates using our Pro version. So, replacing the [download_link] tag in any template with the following code will open the link in a new tab,

<a class="btn btn-primary" href="[download_url]" target="_blank">[link_label]</a>


Shahriar
Moderator

Actually, it is a server setting, please ask your server/hosting support to allow “X-Frame-Options” or disabled is you are using any iframe blocker plugin.

in reply to: Email header encoding #111894

Shahriar
Moderator

We will add a patch to fix this on next release. So, you don’t have to repeat the procedure.


Shahriar
Moderator

By members are you referring to the visitors/users who haven’t subscribed to any plan? Currently, the download button shows similar messages when the package requires a plan to access the download.

http://prntscr.com/p0ldif

Does it work for you or do you want some custom shortcode like the one I provided for showing membership levels?

in reply to: Unable to Use File Hosting & Sharing Add On #111887

Shahriar
Moderator

Hi,
File Hosting Add-on requires the WPDM Pro because the frontend access is controlled from the core settings. And these settings are not available in the free version. Please install the WPDM Pro and that will fix the File Hosting issue.
Thanks.

in reply to: How to show current member level? #111886

Shahriar
Moderator

Use the following code to create a new shortcode [wppm_user_membership_levels] which will display the user’s current plans.

function wppm_user_membership_levels(){
    global $current_user, $wp_roles, $wppromembership;

    $plans = $wppromembership->get_subscriptions_name();
    $plan_names = array();
    foreach ($plans as $plan):
        array_push($plan_names, $plan['name'] );
    endforeach;

    $roles = array_reverse($wp_roles->role_names);
    $levels =  array();
    foreach ($current_user->roles as $role) {
        $levels[] = isset( $roles[$role] ) ? $roles[$role] : $role;
    }
    $levels = array_unique($levels);

    $user_plan = array_intersect( $plan_names, $levels );

    return implode(',', $user_plan );
}
add_shortcode('wppm_user_membership_levels','wppm_user_membership_levels');
in reply to: Bulk import doesn't work on local host #111877

Shahriar
Moderator

Please send me the CSV file to check if there is an issue with formatting.

in reply to: "Lock" not working properly #111876

Shahriar
Moderator

Please reactivate the admin access.

in reply to: Custom link templates are gone! #111873

Shahriar
Moderator

Please send temporary wp-admin login info in private reply. Maybe templates are there but data has been corrupted somehow. It is possible to recover the data if it is still there.

in reply to: How to show current member level? #111869

Shahriar
Moderator

Member’s current plan is shown automatically on the user dashboard. Do you want to display it somewhere else? It is possible to create a custom shortcode for that. But let me know if you meant something else.

in reply to: Demo import and manual order option #111868

Shahriar
Moderator

#demo data: Please use WordPress Importer from Tools > Import page to import demo data.

#Cash Payment & Manual Order: Found the issues. Releasing an update of Premium Package within 24 hours to fix these issues.

#Edit User Warnings: These warnings are generated because no custom fields from Downloads > Settings > QUick Form is associated with the user profile. And won’t create any functional error. But we will take care of these warnings in the next release of Advanced Custom Fields add-on.

in reply to: Cancel Auto Renewal #111867

Shahriar
Moderator

Deactivated auto-renewal of Order#55ccbfceec242

in reply to: Exclude Categories in Accordion #111866

Shahriar
Moderator

Add the exclude parameter in get_terms call as shown in the following example. Here 6, 12 are category ids. Set your 5 ids there separated by commas.

$opts = array('hide_empty' ► false, 'parent' ► 0,'hierarchical'►1, 'exclude' ► array( 12, 6 ) );

You have to replace to old $opts using this. It is on line 77.

in reply to: Category page options #111865

Shahriar
Moderator

Hi,

The category page is controlled by a template from your theme. Download Manager can partially modify the page using some hooks.

To add the toolbar we need a custom category archive template for Download Manager. You can copy the current archive template of your theme and rename it to taxonomy-wpdmcategory.php. Then add the toolbar feature in this template. This new template gives you total control over the pacakge category archive page.

If you need help with this please send temporary wp-admin and FTP login info in private reply. Or just send me the category archive template file so I can use it to create the new template. Send a category archive page link to if you are sending the file.

Thanks.

in reply to: End Auto-Renewal of Add-Ons #111864

Shahriar
Moderator

Hi, Deactivated auto-renewal of 2 add-ons.


Shahriar
Moderator

If you are attaching a new file with the same name and want to overwrite the old file then set the option to overwrite When File Already Exists: ( Settings > Basic > Upload Settings )

in reply to: Email notification not being sent #111861

Shahriar
Moderator

Thanks for sharing the solution.


Shahriar
Moderator

You can use [wpdm_packages] shortcode with link templates. Here is the shortcode documentation https://www.wpdownloadmanager.com/doc/short-codes/wpdm_packages-wp_query-in-a-shortcode-for-download-manager-packages/

But Directory add-on ( https://www.wpdownloadmanager.com/download/wpdm-directory-add-on/ ) is the best option for this kind use case. Please check the demo here https://demo.wpdownloadmanager.com/wpdmpro/archive-page-default/

in reply to: License not working after payment renewal #111859

Shahriar
Moderator

Hi,

Please install the latest version manually for this update. Follow these steps to update the plugin,

1 ) Deactivate and delete the old version. You won’t lose any data.
2 ) Download latest version from here https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases
3 ) Install the latest version and activate the license key.

Logout, and then login again from your Downloads > Settings > Updates tab. That should enabke the auto update for future versions.

Thanks.

Viewing 25 posts - 1,451 through 1,475 (of 12,513 total)