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.
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.
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.
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.
Please ask your server support to enable cURL. That should solve the issue.
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?
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/
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
Latest version of WPDM is 4.6.6 You can download it here https://www.wpdownloadmanager.com/user-dashboard/purchases/
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.
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.
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/
Please send temporary wp-admin login info in private reply to check this issue.
Slider image loaded normally in my test. Found no issue. Let me know if you are referring to something else.
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/
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.
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.
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 )
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'];
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.
Looks like Bootstrap CSS is disabled in your installation. Enable Bootstrap CSS from Downloads Settings Basic Tab. That should fix the layout.
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
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.