Shahriar

Forum Replies Created

Viewing 25 posts - 6,301 through 6,325 (of 12,513 total)
in reply to: Update Pro to Business Licence #70671

Shahriar
Moderator

Hi Jason,

Canceled the Pro order. It will take some time before it appears in your account because of Stripe Processing Period. The business license should work now.

Please create a new support ticket and send temporary wp-admin login info there to check the mailchimp issue.

Thanks.

in reply to: WPDM Downloadlink-Button does not reload page #70667

Shahriar
Moderator

I have updated Button Template code to serve the download in a different way. Now it is working without any issue.

in reply to: file-not-found.txt problem #70633

Shahriar
Moderator
This reply has been marked as private.
in reply to: Advanced CSV Importer – hangs on please wait… #70629

Shahriar
Moderator

Unloading the test CSV will create duplicate contents if you have already imported some of the packages. I have tested on my server and all files were imported successfully.

Could you please try the import process after removing the imported rows from your csv?

in reply to: Easy way to export / import / overwrite in bulk? #70627

Shahriar
Moderator

Actually, No need to make the category lowercase. I uploaded your test CSV file and category was created successfully.

CSV Importer does not have the update package feature yet, it always creates new packages. But it is noted for implementation.

in reply to: file-not-found.txt #70623

Shahriar
Moderator

Hi,

Please send FTP info to check the issue. Looks like your files are not in the location where it should be.

Thanks.

in reply to: Update Pro to Business Licence #70572

Shahriar
Moderator
This reply has been marked as private.
in reply to: change color of pagination #70571

Shahriar
Moderator

You can add this code to your active theme’s style.css file.


Shahriar
Moderator

Please click the DOWNLOAD button to load order details. You will find the license key generator button there.

Where is my license key?

in reply to: CSS Change Template #70539

Shahriar
Moderator

1 ) Save only the image URL in the custom field. Then use this URL in your custom template to show the image via the img tag.

2 ) Sory, Not sure what you meant. If you want you can activate the download archive ( from the option in your screenshot 1 ).
Yes, you can show only the category. Add following code in your theme’s functions.php to add a custom template tag for categories with no link,

function wpdm_comma_separated_tax_terms($post_id){
    $args = array('orderby' ► 'name', 'order' ► 'ASC', 'fields' ► 'all');
    $terms = wp_get_post_terms( $post_id, 'wpdmcategory', $args );

    $terms_array = array();
    foreach ($terms as $term):
        $terms_array[] = $term->name;
    endforeach;

    return implode(', ', $terms_array);
}
function wpdm_custom_tags($vars){

    $vars['categories_nolink'] = wpdm_comma_separated_tax_terms($vars['ID']);

    return $vars;
}
add_filter( 'wdm_before_fetch_template', 'wpdm_custom_tags', 10, 1 );

3 ) If you use the custom categories tag then there will be no link to category archive.

4 ) Great

5 ) Multiple downloads of the same file in single session is counted as one. The limit will apply only when the user tries to download another file.

6 ) Select ‘Subscriber’ in package settings to allow Abonnent

https://www.evernote.com/l/AUdCkW2j-_dGv7sYlVYXE_zobM6kUFQnXVcB/image.png

7 ) You can modify the message from /wpdm-daily-download/wpdm-daily-download.php file. There is no filter yet to modfiy it from outside.

in reply to: Conditional Link in Template #70531

Shahriar
Moderator

When a field is empty you can hide that by adding a class in the template code. example: adding this [hide_empty:version] class in the wrapping element/div of version will hide the element if the version is empty. Please check the “Single Column, Flat ” page template code for reference.

Or you can just all of you files ( the main download and other supporting files like EULA, old versions etc ) in the same package. Pro version has the support for multiple files in the single package. Then you can use [file_list] template tag to show all files with individual download links.

Here is the demo of multi-file package https://demo.wpdownloadmanager.com/wpdmpro/download/multi-file-package/

in reply to: Show text for certain categories only #70529

Shahriar
Moderator

The single-wpdmpro.php file should be in /themes/active-theme/single-wpdmpro.php location because it a core WP supported template. The /themes/active-theme/download-manager/ dir is for other templates like all downloads, login, reg form etc.

in reply to: Blocked Emails still able to login/download #70528

Shahriar
Moderator

Hi,

Block Emails are intended for email lock feature. The download is blocked when submitted email is matched with one of the blocked emails.

Thanks.

in reply to: Forgot Password – Keeps spinning #70526

Shahriar
Moderator

Please check now.

in reply to: wpdm- Archive Page search results #70525

Shahriar
Moderator

Maybe one of your plugins or active theme is modifying the search query. Please try disabling other plugins to detect which one is doing it. Or send temporary wp-admin login info in private reply, so I can check this.

in reply to: change color of pagination #70524

Shahriar
Moderator

You can add the following css to change pagination color,

#wpdm-downloads .pagination li * { color: #000 !important; }

in reply to: Select custom 'oEmbed template' #70523

Shahriar
Moderator

Hi Savvas,

Sorry, It is not possible yet to modify the oEmbed template or use predefined template there. We might add a filter there to add custom templates in a future release.

Thanks.

in reply to: Update Pro to Business Licence #70513

Shahriar
Moderator

Hi Jason,

Please purchase the Business license and send me your Pro order id. I will return the Pro order.

Thanks.

in reply to: file-not-found.txt problem #70511

Shahriar
Moderator

Hi Seth,

Yes, you need Developer license for your setup.

Thanks.

in reply to: Invalid License Key #70510

Shahriar
Moderator

Hi Lauren,

Unlocked your key. It should work now.

– Best regards.

in reply to: How to set up Email Lock #70466

Shahriar
Moderator

Hi,

You have to add the [download_link] template tag in your custom link template. Because this tag is used to replace the download link with lock feature.

Best regards.

in reply to: CSS Change Template #70465

Shahriar
Moderator

– Category archive page URLs look like https://www.site.com/downloads/package-category/ Here downloads is category URL base. I meant before you can change this URL base if you want from Dashboard Settings Basic URL Structure Panel.

-You can set login required or permission denied message ( when the user can’t access the package ) from settings. But your link/page template should have [download_link] tag for that.

https://www.evernote.com/l/AUdDu_AO60dA8K3RJab03IANkt0XK3o5e0UB/image.png

– You need Download Limit add-on to apply download limit based on user role

– Just update the package where you see the empty author. That should hide the author when it is empty.

in reply to: Change slug and redirect #70461

Shahriar
Moderator
This reply has been marked as private.
in reply to: Show text for certain categories only #70459

Shahriar
Moderator

Yes, that’s what I meant. The single-wpdmpro.php file ( when available in active theme dir ) is the template file name which handles the view of WPDM packages.

Please check this doc to know more about WPDM template files https://www.wpdownloadmanager.com/doc/template-files/ Coding knowledge is required if you want to work with these templates.

in reply to: Cannot Register #70457

Shahriar
Moderator

Hi, Register form is working on my test. Join Now button only enables when the user completes the form and data are validated.

Viewing 25 posts - 6,301 through 6,325 (of 12,513 total)