Shahriar

Forum Replies Created

Viewing 25 posts - 6,051 through 6,075 (of 12,513 total)
Apr 13, 2018 at 2:26 am
#73634
Moderator
Shahriar
Staff OP

Hi,

Which version of Download Manager are you using there? If it is an older version please update the plugin.

Send temporary wp-admin login info in private reply if that doesn’t fix it.

Thanks.

Apr 13, 2018 at 2:13 am
#73632
Moderator
Shahriar
Staff OP

Please remove the following rules from /wpdm-button-templates/buttons.css file. That should fix the button shifting on active state.

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

Apr 13, 2018 at 1:59 am
#73631
Moderator
Shahriar
Staff OP

Hi,

Please send temporary wp-admin login info in private reply to check the issue.

Did you attach PHP file? Some files are not allowed for security reasons.

Best regards.

Apr 13, 2018 at 1:56 am
#73630
Moderator
Shahriar
Staff OP

Hi,

You have to clone the current link template you are using and then replace [page_url] template tag with [download_url]. That will replace the details page url with a download link.

Thanks.

Apr 13, 2018 at 1:49 am
#73628
Moderator
Shahriar
Staff OP

Hi,

There is an option to use icon URL. You can utilize that to set custom icons.

https://www.evernote.com/l/AUfQZk-FatJP-Z73bcV6tM8MqrVtVa9-8bAB/image.png

Thanks.

Apr 13, 2018 at 1:44 am
#73626
Moderator
Shahriar
Staff OP

Hi,

Looks like a package access related issue. Please check your package settings for access permissions.

Send temporary wp-admin login info in private reply if you can’t find any permission related issue.

Thanks.

Apr 13, 2018 at 1:38 am
#73625
Moderator
Shahriar
Staff OP

Hi,

User dashboard doesn’t show all downloads. Please use [wpdm-all-packages] shortcode to show all downloads in a tabular format.

Here is shortcode doc https://www.wpdownloadmanager.com/doc/short-codes/wpdm_all_packages-list-all-downloads-in-tabular-format-in-a-page/

You can use TinyMCE Button Add-on ( https://www.wpdownloadmanager.com/download/advanced-tinymce-button/ ) to insert shortcode easily.

Thanks.

Apr 13, 2018 at 1:34 am
#73623
Moderator
Shahriar
Staff OP

Hi,

Could you please check your PHP error log? That should indicate the origin of the conflict. You can send the error log file in reply so we can take a look.

Thanks.

Apr 12, 2018 at 6:52 am
#73558
Moderator
Shahriar
Staff OP

Hi,

Calling the same hook in multiple locations doesn’t create any conflict. I tested the publish_wpdmpro hook from your code. I replaced the function code with simple email function and got the email when published a new package from admin area. The attached file was saved too, no package info was missing.

Here is the code I added to theme’s functions.php,

function wpdmpro_published_notification ( $ID, $post ) {

    wp_mail('youremail@site.com', 'On Publish', 'Sending mail on publish #'.$ID );
}
add_action('publish_wpdmpro', 'wpdmpro_published_notification', 10, 2);

So, the hook is working. The issue may be somewhere else. Please test this on your site, If it works then maybe the issue is related to your code in wpdmpro_published_notification function.

Apr 12, 2018 at 5:50 am
#73556
Moderator
Shahriar
Staff OP

Hi,

I have created frontend upload ( create new package ) form here http://www.luxury-italian-office.com/fashion-brands/frontend-upload/
It is working without any issue. I have used frontend-upload as page slug here. You can’t use download as your page slug because it is the URL base for your packages/downloads.

You are using an older version of Download Manager. Please install the updated version to get the best experience. You can download it here https://www.wpdownloadmanager.com/user-dashboard/purchases/

Thanks.

Apr 12, 2018 at 5:34 am
#73555
Moderator
Shahriar
Staff OP

Please replace $category with $cat->slug in /wpdm-extended-shortcodes/wpdm-extended-shortcodes.php file on line 251

https://www.evernote.com/l/AUdAnV-7JKBP2L1wO29thc6E5by5UrhwU44B/image.png

Apr 12, 2018 at 5:16 am
#73553
Moderator
Shahriar
Staff OP
Apr 11, 2018 at 4:24 pm
#73533
Moderator
Shahriar
Staff OP

Please send temporary wp-admin login info in private reply to check the issue. You can try changing the page slug download to something else.

Apr 11, 2018 at 4:21 pm
#73532
Moderator
Shahriar
Staff OP

Hi,

All packages shortcode doesn’t have category relation operator. You have to create a custom template for all packages table to add this AND relation between categories. Please check the related doc here https://www.wpdownloadmanager.com/doc/template-files/

Just add the following code at the top of the new template file.

if( isset( $tax_query ) )
    $tax_query = array(
            array(
                'taxonomy' ► 'wpdmcategory',
                'field' ► 'slug',
                'terms' ► $terms,
                'operator' ► 'AND',
                'include_children' ► false
            )
    );

Best regards.

Apr 11, 2018 at 4:06 pm
#73529
Moderator
Shahriar
Staff OP

Sorry, the correct location is /download-manager/libs/class.Package.php line 651

Apr 11, 2018 at 7:47 am
#73489
Moderator
Shahriar
Staff OP

1 ) reCaptcha error is related your reCaptcha API key. Please check if you have added the correct keys. Match your API key with your domain name.

2 ) Please update Download Manager to the latest version to fix the error reported in your last reply.

Apr 10, 2018 at 7:14 am
#73408
Moderator
Shahriar
Staff OP

Hi,

There is a jquery conflict on your site. Your theme is loading its own jquery script which conflicts with core WordPress jquery. Deactivating the theme jquery should fix the issue.

Thanks.

Apr 10, 2018 at 3:25 am
#73397
Moderator
Shahriar
Staff OP

Please send temporary wp-admin login info in private reply or share your custom template code. Removing wpdm-download-locked class from REQUEST COPY button should fix the issue.

Apr 10, 2018 at 3:07 am
#73395
Moderator
Shahriar
Staff OP

Hi David,

All packages table and Directory Add-on do not work together. But you can use custom link template with Directory add-on which will allow you to change the view of each package block. You can show one package per line just like the table view.

Thanks.

Apr 10, 2018 at 2:51 am
#73393
Moderator
Shahriar
Staff OP

Hi Scott,

Found the issue and working on it. I will let you know when there is an update on this.

Thanks.

Apr 9, 2018 at 3:38 pm
#73351
Moderator
Shahriar
Staff OP

Really sorry for the confusion. We did receive your replies but those are hidden due to a filter.

However, we can’t confirm the release yet. But it will be released as soon as possible. You will get update notification of plugins page when the update is available.

Apr 9, 2018 at 2:49 pm
#73347
Moderator
Shahriar
Staff OP

Please try now.

Apr 9, 2018 at 5:47 am
#73313
Moderator
Shahriar
Staff OP
This reply has been marked as private.
Apr 9, 2018 at 5:06 am
#73311
Moderator
Shahriar
Staff OP

Please send me the package/download link to check the issue.

Apr 9, 2018 at 5:01 am
#73310
Moderator
Shahriar
Staff OP

Sorry about that. Could you please try again? The key should work now.

Viewing 25 posts - 6,051 through 6,075 (of 12,513 total)