Please send temporary wp-admin login info in private reply to check the issue.
The simple search shortcode is [wpdm_simple_search template="link-template-panel" cols=3 ]
This shortcode requires WPDM Directory add-on, however, the Special Pack has it included.
Hi,
Do you want to add a package from Frontend? In that case, create a page with [wpdm_frontend flaturl=0]
shortcode. The tab with “Add New” label will provide necessary options to create a new package.
Thanks.
Hi,
Please deactivate the plugin and then reactivate it. That should create the missing cache directory. If that doesn’t solve the issue send temporary wp-admin login info in private reply.
Thanks.
In new template, replace the following code,
"oLanguage": { "sLengthMenu": "_MENU_ per page" }
with
oLanguage: { sLengthMenu: "_MENU_ per page", sZeroRecords : "No records found!", sSearch : "Search", oPaginate:{ sNext: "Next", sPrevious: "Previous", } }
After that, Replace these english strings with your target language.
Before http://prntscr.com/pll6rm
After http://prntscr.com/pll6yq
Hi, Default Values add-on isn’t part of Special Pack. So, you have to purchase it separately. Thanks.
Looks like the audio tag has some limitations in Safari. In safari, we can’t get the duration of the requested song which may be related to the page reload issue. Anyway, we are already working on a more advanced audio player which will be available soon with the core plugin.
Hi,
You can modify the Email Lock Template from Downloads > Settings > Templates > Email Templates.
Download Manager uses the email-lock
email template to send the email from the lock feature. So, it shouldn’t be plain text. Are you using the Email Notification add-on?
Please send temporary wp-admin login info in private reply if you want me to take a closer look at this issue.
Thanks.
Please send the wp-admin login.
I have downloaded several packages without any issues. Please send me the package URL where you encountered the issue.
Please send temporary wp-admin login info in private reply to check the issue.
Please send temporary wp-admin login info in private reply to check the issue.
REST API is working now. Some Apache module was removing the authorization header from the request. I had to add CGIPassAuth On
in your .htaccess file to allow the bearer token in the header.
Hi,
It is not a core WordPress feature. Looks like you are using a plugin to rearrange the pages/posts. Please check if your ordering plugin supports custom post types too.
Thanks.
Have you installed the Default Values add-on https://www.wpdownloadmanager.com/download/wpdm-default-values/ ?
You can utilize the wpdm_embed_category_query_params
hook to modify the query parameters to sort packages by custom field. Add the following code to your theme’s functions.php
file. Based on the custom filed value type use meta_value_num
or meta_value
Also make sure you are using the correct meta_key
name. Replace acf_CustomField_tag
with your custom field name ( same as template tag excluding the brackets )
function wpdm_modify_category_query_params( $params ){ $params['orderby'] = 'meta_value_num'; $params['meta_key'] = "__wpdm_"."acf_CustomField_tag"; return $params; } add_filter('wpdm_embed_category_query_params', 'wpdm_modify_category_query_params');
When do you encounter this error? Could you please send your error log file? Or just send temporary wp-admin login info in private reply.
Please add the following CSS to Appearance > Customize > Additional CSS,
.w3eden .row .col-md-3:nth-child(4n)::after { content: '\a'; white-space: pre; }
Fixed the saving issue in Basic Settings Tab.
We do not have the USA ePay payment gateway yet. But I am looking into the possibility of a new add-on to support the gateway.
Please use items_per_page
parameter instead of posts_per_page
Hi,
Your key was linked to your staging site stage.agnitas.de
I have unlocked it from there. Now the license key should work fine on your new site.
Thanks.
Please send temporary wp-admin login info in private reply to check the issue.
We are aware of this issue and already working on it. The fix is coming soon. The issue originated from API changes on Twitter.
The issue may be originated from some kind of conflict with another plugin. May I deactivate other plugins temporarily for testing purposes? I have tested this feature on my demo site and there was no issue with safari.
Reset password feature is working perfectly now.