Shahriar

Forum Replies Created

Viewing 25 posts - 8,476 through 8,500 (of 12,513 total)
in reply to: WPDM not save button #57708

Shahriar
Moderator
This reply has been marked as private.
in reply to: Downloads No longer Display #57707

Shahriar
Moderator

Looks like you were using a custom link template and now that template is not available anymore ( someone deleted it).

You have to change your shortcodes and set the link template to an available one. That will fix the issue.

in reply to: Access denied on packages for all roles after update #57706

Shahriar
Moderator

Maybe you latest installation was incomplete ( some files was not imported properly ). Could you please try re-installing the latest version? What was your previous version before the update?

Please send wp-admin login info in private reply if re-installation doesn’t fix your issues.

in reply to: Test server to Live #57705

Shahriar
Moderator

If you are using an old version of Download Manager please install the latest version which is available here https://www.wpdownloadmanager.com/user-dashboard/purchases/

If already have the latest version but still getting this error, send temporary wp-admin login info in private reply.

in reply to: Add search function #57704

Shahriar
Moderator

Hi,

Directory addon to has search feature with lots of shortcodes. You can check the demo here https://demo.wpdownloadmanager.com/wpdmpro/archive-page-default/

Thanks.

in reply to: Can't Insert License Key #57703

Shahriar
Moderator

Please ask your server support to enable cURL. That should solve the issue.

in reply to: Really, really slow #57701

Shahriar
Moderator

Please send temporary wp-admin login info in private reply. As you are facing this issue after the latest update, Did you make any other changes like installing some plugin recently?

in reply to: Stats not working #57699

Shahriar
Moderator

Please send the admin login info in private reply.

If you are using an old version of Download Manager, updating the plugin usually fixes most issues. Latest version available here https://www.wpdownloadmanager.com/user-dashboard/purchases/

in reply to: Amend layout of File List Extended #57698

Shahriar
Moderator

No direct option available to change the thumbnail size of [file_list_extended]

You can create your own template tag by replicating [file_list_extended] code { File Location: /download-manager/libs/class.Filelist.php function: Box }. Then make required changes there. But it requires coding expertise. Related doc https://www.wpdownloadmanager.com/doc/filter-reference/wdm_before_fetch_template/

You will find thumbnail size code in line 257 ( /download-manager/libs/class.Filelist.php )

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

in reply to: Pin/thumtack icon and strange formatting #57696

Shahriar
Moderator

Latest version of WPDM is 4.6.6 You can download it here https://www.wpdownloadmanager.com/user-dashboard/purchases/

in reply to: crypton theme #57695

Shahriar
Moderator

Please send temporary wp-admin login info in private reply to check the issue. Maybe it is related to generating the thumbnail image for the first time. However, I have to check to understand clearly what is going on.

in reply to: WPDM not save button #57694

Shahriar
Moderator

Hi,

Looks like a js issue. Try disabling other plugins to find out if the issue is coming from one of those. Also, update the Download Manager to the latest version ( 4.6.6 ) if you are using an older version.

Send temporary wp-admin login info in private reply if still not getting any result.

in reply to: Update Created Issue with Files showing #57693

Shahriar
Moderator

Free version of Download Manager was installed there. I have installed Pro, now all pages are working as expected. You can always download the latest pro version from your purchase area https://www.wpdownloadmanager.com/user-dashboard/purchases/

in reply to: Update Created Issue with Files showing #57668

Shahriar
Moderator

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

in reply to: crypton theme #57665

Shahriar
Moderator

Slider image loaded normally in my test. Found no issue. Let me know if you are referring to something else.

in reply to: Amend layout of File List Extended #57663

Shahriar
Moderator

Yes, you can create your own page/link template ( From Downloads Templates Page ) using available template tags and your own design. Please read more about custom template here https://www.wpdownloadmanager.com/doc/templates/creating-a-new-template/

in reply to: Default view #57660

Shahriar
Moderator

Hi,

You can create a custom link template to change the outlook of the pacakge shortcode. I have created a simple custom template there, please check it it works for you. You can create your own from Downloads Templates page.

You can read more about custom template here https://www.wpdownloadmanager.com/doc/templates/creating-a-new-template/

Let us know if you need help in any step.

Thanks.

in reply to: Search Individual Files in Packages #57649

Shahriar
Moderator

Please send temporary wp-admin login info in private reply to check the issue. Result will return the package that contains the file with matched keyword.

in reply to: translation #57630

Shahriar
Moderator

Hi,
Sorry for delayed reply.

#1. I found none of the strings are translated:
https://www.evernote.com/l/AV25uUbHVo1LV5lNpnh3q-VwfUzVQ6pdJdwB/image.png

#2. Hardcoded text label inside page/link template are not translation ready, but values are. However, we are bringing those under translation file soon.

Language file names are like wpdmpro-it_IT.po ( wpdmpro-languagecode_COUNTRYCODE.po )

in reply to: How to Show all Categories Images in Single page #57627

Shahriar
Moderator

When you are in package  category archive page, you can get the category image using following  code,

$obj = get_queried_object(); $MetaData = maybe_unserialize(get_option( "__wpdmcategory" )); $cat_image_url = $MetaData[$obj->term_id]['icon'];

Or if you want to get package category image using category slug using following code ( here I retrieved the category image of category with plugins slug ),

$wpdm_category = get_term_by('slug', 'plugins', 'wpdmcategory');  $MetaData = maybe_unserialize(get_option( "__wpdmcategory" )); $cat_image_url = $MetaData[$wpdm_category->term_id]['icon'];

in reply to: All Packages – navigation issue #57604

Shahriar
Moderator

Hi,

When packages in the table are filtered using category page reload event occurs and loads a different URL ( adds category info in URL ). Shouldn’t these two events enough to provide the user a sense that back button will bring all packages back?

However, if you want you can make your own template for All Packages table and add following code to create a Back to all packages button,

<?php if(isset($_GET['wpdmc'])): ?> <a href="<?php echo get_permalink(); ?>">All Downloads</a> <?php endif; ?>

Thanks.

in reply to: Pro Version, but says invalid license key #57603

Shahriar
Moderator

@brave, unlocked your key from the old domain. License key should work on new domain now.

in reply to: Pin/thumtack icon and strange formatting #57602

Shahriar
Moderator

Looks like Bootstrap CSS is disabled in your installation. Enable Bootstrap CSS from Downloads Settings Basic Tab. That should fix the layout.

in reply to: default output like this… #57601

Shahriar
Moderator

Follow the steps below to make your package page like https://demo.wpdownloadmanager.com/wpdmpro/wpdm-package/mobile-app-for-wpdm/

Install Following addons first.,

1. Page Template – https://www.wpdownloadmanager.com/download/wpdm-page-templates/

2. Image Button – https://www.wpdownloadmanager.com/download/wpdm-image-button/

Now in your edit package page set the page template to Default Template and set Single Column, Flat as page template in package settings area.

https://www.evernote.com/l/AUeQdvtZ96dFlqTS0c1x-54QN1uvWRVqQX0B/image.png

Then Go to Downloads Settings Image Button and set the button image there.

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

in reply to: crypton theme #57598

Shahriar
Moderator

You can change Crypton Homepage content. It is designed only for downloads and blog posts as it is in the demo. If you don’t like the Homepage design, you can use any page as you Homepage.

You can do that by setting another page as homepage from Dashboard Settings Reading page.

Viewing 25 posts - 8,476 through 8,500 (of 12,513 total)