Shahriar

Forum Replies Created

Viewing 25 posts - 6,301 through 6,325 (of 12,513 total)
Feb 28, 2018 at 6:06 pm
#70671
Moderator
Shahriar
Staff OP

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.

Feb 28, 2018 at 5:57 pm
#70667
Moderator
Shahriar
Staff OP

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

Feb 28, 2018 at 8:32 am
#70633
Moderator
Shahriar
Staff OP
This reply has been marked as private.
Feb 28, 2018 at 7:38 am
#70629
Moderator
Shahriar
Staff OP

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?

Feb 28, 2018 at 6:52 am
#70627
Moderator
Shahriar
Staff OP

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.

Feb 28, 2018 at 6:11 am
#70623
Moderator
Shahriar
Staff OP

Hi,

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

Thanks.

Feb 27, 2018 at 4:35 pm
#70572
Moderator
Shahriar
Staff OP
This reply has been marked as private.
Feb 27, 2018 at 4:30 pm
#70571
Moderator
Shahriar
Staff OP

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

Feb 27, 2018 at 4:16 pm
#70570
Moderator
Shahriar
Staff OP

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

Where is my license key?

Feb 27, 2018 at 10:12 am
#70539
Moderator
Shahriar
Staff OP

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.

Feb 27, 2018 at 8:36 am
#70531
Moderator
Shahriar
Staff OP

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/

Feb 27, 2018 at 8:04 am
#70529
Moderator
Shahriar
Staff OP

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.

Feb 27, 2018 at 7:57 am
#70528
Moderator
Shahriar
Staff OP

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.

Feb 27, 2018 at 7:49 am
#70526
Moderator
Shahriar
Staff OP

Please check now.

Feb 27, 2018 at 7:29 am
#70525
Moderator
Shahriar
Staff OP

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.

Feb 27, 2018 at 7:26 am
#70524
Moderator
Shahriar
Staff OP

You can add the following css to change pagination color,

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

Feb 27, 2018 at 7:13 am
#70523
Moderator
Shahriar
Staff OP

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.

Feb 27, 2018 at 6:03 am
#70513
Moderator
Shahriar
Staff OP

Hi Jason,

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

Thanks.

Feb 27, 2018 at 6:01 am
#70511
Moderator
Shahriar
Staff OP

Hi Seth,

Yes, you need Developer license for your setup.

Thanks.

Feb 27, 2018 at 5:57 am
#70510
Moderator
Shahriar
Staff OP

Hi Lauren,

Unlocked your key. It should work now.

– Best regards.

Feb 26, 2018 at 5:11 pm
#70466
Moderator
Shahriar
Staff OP

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.

Feb 26, 2018 at 4:58 pm
#70465
Moderator
Shahriar
Staff OP

– 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.

Feb 26, 2018 at 4:38 pm
#70461
Moderator
Shahriar
Staff OP
This reply has been marked as private.
Feb 26, 2018 at 4:06 pm
#70459
Moderator
Shahriar
Staff OP

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.

Feb 26, 2018 at 4:02 pm
#70457
Moderator
Shahriar
Staff OP

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)