Shahriar

Forum Replies Created

Viewing 25 posts - 3,376 through 3,400 (of 12,513 total)
Feb 4, 2019 at 5:51 pm
#93244
Moderator
Shahriar
Staff OP

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

Feb 4, 2019 at 5:49 pm
#93243
Moderator
Shahriar
Staff OP

Yes, WPDM will link new files automatically.

Feb 4, 2019 at 5:48 pm
#93242
Moderator
Shahriar
Staff OP

Do you mean you can’t add new files? Please send temporary wp-admin login info in private reply so I can check the issue.

Feb 4, 2019 at 5:45 pm
#93240
Moderator
Shahriar
Staff OP

Unlocked the key from the old site.

Feb 4, 2019 at 4:50 am
#93226
Moderator
Shahriar
Staff OP

You can enable the email lock when creating or editing pacakge. Go to Package Settings Metabox Lock Option Tab and check the “Email Lock”.

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

Please send temporary wp-admin login info in private reply if you want me to setup a package for you.

Feb 3, 2019 at 12:49 pm
#93213
Moderator
Shahriar
Staff OP

Add the following code ( visit the link to copy the code ) at the bottom active theme’s functions.php file. This code should hide “Upload” and “URL” tab and activate the “Browse” tab.

https://codeshare.io/aY4j1N

Feb 3, 2019 at 12:11 pm
#93211
Moderator
Shahriar
Staff OP

Please edit the sale-notification template from Templates Email Templates page. You have to add a recipient address there.

https://www.evernote.com/l/AUcrMJCOrttPGppvhFe9eK3cvZFXkO-HryoB/image.png

Feb 3, 2019 at 12:01 pm
#93208
Moderator
Shahriar
Staff OP

Tested from Chrome too. However, you can use the embedded form instead of popup as you are facing the issue. You have to use a page template with [download_link_extended] to show the embedded form.

The built-in ” Single Column, Image Top, Extended ” uses the embedded form. Or you can clone the current template and replace [download_link] with [download_link_extended]

Feb 3, 2019 at 9:32 am
#93203
Moderator
Shahriar
Staff OP

Here is a sample shortcode with card template. The template id is link-template-bsthumnail

[wpdm_package id=53 template="link-template-bsthumnail"]

Feb 3, 2019 at 8:14 am
#93201
Moderator
Shahriar
Staff OP

Some link templates in Free version shows the featured image i.e. Card. But to make the exact template like the demo you need Pro version. Using Pro you can build custom templates.

Feb 3, 2019 at 8:10 am
#93200
Moderator
Shahriar
Staff OP

You can use a SEO plugin to add the meta description.

Feb 3, 2019 at 6:55 am
#93199
Moderator
Shahriar
Staff OP
This reply has been marked as private.
Feb 3, 2019 at 5:20 am
#93198
Moderator
Shahriar
Staff OP

Please re-check your app credentials. Getting the “Client Authentication failed” error on console. Save the sandbox id and secret too.

Feb 3, 2019 at 4:39 am
#93197
Moderator
Shahriar
Staff OP

Download Manager is using your post template single.php which is displaying the first thumbnail. And the second one is coming from WPDM Page Template.

To remove the second image, use a custom page template. Clone the page template you are using from Downloads Templates Page Templates Tab page. Then remove the thumb template tag from your custom template and set this new custom template in Package settings Page template option.

Feb 3, 2019 at 4:34 am
#93196
Moderator
Shahriar
Staff OP
This reply has been marked as private.
Feb 3, 2019 at 4:31 am
#93195
Moderator
Shahriar
Staff OP

At first, I got the expired link error because your “Private Download Links Usage Limit:” was set to 0 I have increased it to 10.

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

Now downloads are working fine for me. Please test the download and let me know if still having an issue.

https://www.evernote.com/l/AUcFCVe9CHFF-oOJjTSFH7U7wbzVKHLHMV0B/image.png

Feb 2, 2019 at 6:13 pm
#93192
Moderator
Shahriar
Staff OP

Could you please check which PHP version is installed in your server? Or send temporary wp-admin login info in private reply. I will check the issue there.

Feb 2, 2019 at 6:10 pm
#93191
Moderator
Shahriar
Staff OP

Please check the Downloads Templates page to be certain about the missing templates. However, restoring a backup should restore the custom template considering they existed when the backup was created.

Custom templates are saved in wp_options table under _fm_link_templates and _fm_page_templates name. So, you can check those entries in your backup DB in case don’t want to restore the whole site.

Feb 2, 2019 at 6:00 pm
#93190
Moderator
Shahriar
Staff OP

1 ) Add the following CSS in Customize Additional CSS to remove uppercase,

.wpdm-cat-link.btn {
    text-transform: none;
}

2 ) Use a custom link template with [icon] tag to show package icon. You can clone the current template and edit on top of it.

3 ) Use [description] tag in your custom link template to show package details.

Please check this tutorial to understand how to create custom templates https://www.wpdownloadmanager.com/building-a-wordpress-download-manager-link-template-from-scratch/

Feb 2, 2019 at 5:53 pm
#93189
Moderator
Shahriar
Staff OP
This reply has been marked as private.
Feb 2, 2019 at 8:05 am
#93183
Moderator
Shahriar
Staff OP

Authors can edit/update their own packages only from the frontend. It is possible to allow editing other’s packages but requires the following code customizations,

1 ) Remove the following line from savePackage function in /download-manager/libs/class.Apply.php file,

if($current_user->ID != $p->post_author && !current_user_can('manage_options')) return;

2 ) Remove author parameter from $params array in /download-manager/tpls/list-packages-table.php file.

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

Feb 2, 2019 at 6:25 am
#93182
Moderator
Shahriar
Staff OP

Hi,

Please replace line 97 in /download-manager/admin/menus/class.Subscriber.php with the following code,

if( isset( $_GET['lockOption']) && wpdm_query_var('lockOption') != 'email'){

That should fix the issue. Send login info in private reply if you want me to do it for you. We will also add the patch in the next version of the Download Manager.

Thanks.

Feb 1, 2019 at 8:23 pm
#93177
Moderator
Shahriar
Staff OP

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

Feb 1, 2019 at 8:18 pm
#93176
Moderator
Shahriar
Staff OP

Unlocked your key.

Feb 1, 2019 at 8:16 pm
#93175
Moderator
Shahriar
Staff OP

How did you create your custom templates? Updating plugin doesn’t delete the custom templates if you used the Template editor. There is no way to recover ( unless you keep periodic backups in your server ) template files after update if you placed those inside plugin folder.

Viewing 25 posts - 3,376 through 3,400 (of 12,513 total)