Shahriar

Forum Replies Created

Viewing 25 posts - 976 through 1,000 (of 12,513 total)
in reply to: REST API always returns 401. #113503

Shahriar
Moderator

Hi,

You are using a very old version of Download Manager Pro. Could you please install the latest version? The issue may be related to it. You can download the latest version here https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases

Let me know the status after installing the latest version of WPDM. Also, allow plugin editor access to the temporary user.

Please reply to the forum topic, not in email.

Thanks.

in reply to: How to change color of text in table? #113495

Shahriar
Moderator

Looks like you have changed the table header color. The following code should work too.

#wpdm-all-packages table thead tr th { background: #2D2D2D !important; }

in reply to: How to change colours (colors) on template buttons #113494

Shahriar
Moderator

Hi Lydia,

You can control button colors from the Downloads > Settings > User Interface Tab. The code above was meant for an older version.

Thanks.

in reply to: Howto use shorten link? #113492

Shahriar
Moderator

Hi,

How do you want to use these with Download Manager? You can copy the package URL and shorten it with any of these services. Or do you want another procedure?

Thanks.

in reply to: shortcode #113491

Shahriar
Moderator

Hi,

Use a template with [file_list] or [file_list_extended] template tag to show all attached files with the download button. You can clone the template you are using now and add the tag there.

Let me know if you have any further queries.

Thanks.

in reply to: Deactivate Link of Filename #113490

Shahriar
Moderator

You are using the “Call to Action 3” link template there. You have to modify the link template to remove the link from the title.

1 ) Clone “Call to Action 3” from Downloads > Templates > Link Template page.
2 ) The replace <a style="font-weight: 700" href="[page_url]">[title]</a> with just [title] and save the custom link template.
3 ) Copy the template id from Link Templates page to use it in your shortcode.

in reply to: Double buttons #113489

Shahriar
Moderator

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


Shahriar
Moderator

You are checking the profile page. The profile page lists the packages created by the user. You have to create a page with the shortcode I sent above.


Shahriar
Moderator

You have to use the png version of icons to support IE 11

1 ) Make a copy of /download-manager/tpls/wpdm-all-downloads.php
2 ) Find $ext = $ext.".svg"; and replace it with $ext = $ext.".png"; in this new template.
3 ) Place it in /active-theme/download-manager/wpdm-all-downloads.php

Now this new template with png icons will override the default one.

in reply to: FormLock not working #113486

Shahriar
Moderator

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

in reply to: WPDM API package properties – Missing fields #113485

Shahriar
Moderator

– Thanks for reporting the issue. Noted for the next release.

– For tags use an array of slugs and for categories use an array of ids.

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

in reply to: File Cart in Lightbox popup instead of same page #113484

Shahriar
Moderator

You have to modify the plugin code to replace the original button. Please check the following screenshot, It points to the location of the original button in wpdm-file-cart.php file.

https://www.evernote.com/l/AUfC-KMsMplKWIpsyL0Yt1HPfWG3AiCaH2AB/image.png

in reply to: Thumbnails vs Featured Image #113483

Shahriar
Moderator

Link and Page templates use [thumb_WxH] template tag to display featured image ( post thumbnail ). Here W refers to the image width and H refers to the image height. An example of this tag is [thumb_500x250] which will display the featured image at 500x250 dimension. You can set any height and width when using this tag [thumb_WxH], so we are creating a copy of the featured image with variable dimensions. That’s why we are calling these “dynamically sized featured images”.

in reply to: Edit Package > Package Settings Tabs not responding #113482

Shahriar
Moderator

Your “Hybrid Composer” plugin is creating this issue with package settings tabs. Tabs are working as expected when this plugin is deactivated.

Btw, You are using an older version of Download Manager Pro. Please install the latest version to get the latest features and improved performance. You can download it here https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases

in reply to: Using Carousel and Slider #113481

Shahriar
Moderator

1 ) Slider resizes thumbnails to 100×400 and carousel to 300×200 size. WPDM will do the resizing task to fit the expected dimension.

2 ) Featured images are used in many places like link template, page template using [thumb_WxH] tag. Based on the requested thumbnail size WPDM resizes the featured image. Are you referring to these dynamic images as auto-generated thumbnail?

3 ) These 2 packages don’t have any featured image. That’s why in the carousel there is nothing for these 2 packages.


Shahriar
Moderator

Looks like the issue is related to your excel settings or missing font in windows. I have tested the stats CSV in mac preview and in another mac app. Both displayed the texts properly.

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

in reply to: Adding a "Show Off Your Site" Section to the Forums #113474

Shahriar
Moderator

Hi,

This is actually a brilliant suggestion ?. We will implement this option as soon as possible. This will help users to understand various use cases of Download Manager Pro.

Thanks.


Shahriar
Moderator

The OSM plugin is adding some CSS in .tab-content class but didn’t add any unique prefix. So, it is messing up WPDM CSS as it uses the same class for the attach file area. They could add the CSS with their own class like this .osm-plugin .tab-content to avoid interfering with third party elements.

https://www.evernote.com/l/AUfj-JR5oW9IgrpyjagVM2a0fyXemGYMylsB/image.png


Shahriar
Moderator

Please use another link template. You can try the link-template-bsthumnail Use template parameter in your package shortcode to define the link template.

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

in reply to: Dropbox folders and files whit Download Manager #113471

Shahriar
Moderator

Currently, Dropbox add-on doesn’t support restricted packages when attaching a folder. Allow access option has to be “All Visitors” in case of Folder attachment. Check this demo package https://ferraricontabil.com.br/downloads/dropbox-test/


Shahriar
Moderator

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


Shahriar
Moderator

Make a custom template for /download-manager/tpls/lock-options/email-lock-form.php and add the following code after line 78. That should close the modal after submitting the email.

setTimeout(function () {
    window.parent.hideLockFrame();
}, 1000);

Template file documentation https://www.wpdownloadmanager.com/doc/template-files/ Basically, copy the file and place it in /active-theme/download-manager/lock-options/email-lock-form.php. Then make the necessary changes.

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

Shahriar
Moderator

No, your setting and data won’t be affected by the update.

in reply to: Login not working – I using last version. #113464

Shahriar
Moderator

You can add redirect parameter with login shortcode like the following example.

[wpdm_login_form redirect="https://ferraricontabil.com.br/meus-downloads/"]

One of your plugins or the active theme is injecting irregular <p> tags in login shortcode content which is breaking the JS http://prntscr.com/pibgak The login issue is coming from there. You can try deactivating other plugins temporarily to check where it is coming from. Let me know the update.

Thanks.

in reply to: How to change color of text in table? #113461

Shahriar
Moderator

Add the following CSS to Appearance > Customize > Additional CSS. Adjust the color code if you want differernt color.

#wpdm-all-packages tbody {
    color: #fff;
}
Viewing 25 posts - 976 through 1,000 (of 12,513 total)