Forum Replies Created
It it is Yoast SEO, you need the add the following PHP code at the end of your active theme’s functions.php:
add_filter("wpseo_schema_webpage", function($ldjson){
if(!is_singular("wpdmpro")) return $ldjson;
$ldjson['@type'] = 'SoftwareApplication';
$ldjson['@id'] = get_permalink(get_the_ID()).'#SoftwareApplication';
$ldjson['applicationCategory'] = "http://schema.org/OtherApplication";
$ldjson['fileFormat'] = "application/zip";
$ldjson['downloadUrl'] = get_permalink(get_the_ID());
$ldjson['softwareVersion'] = get_post_meta(get_the_ID(), '__wpdm_version', true);
$ldjson['operatingSystem'] = 'Any';
$ldjson['aggregateRating'] = array(
"@type" ► "AggregateRating",
"worstRating" ► 0,
"bestRating" ► 5,
"ratingValue" ► "*.*",
"ratingCount" ► 0000,
"reviewCount" ► 0000
);
$ldjson['interactionStatistic'] = array(
"@type" ► "InteractionCounter",
"interactionType" ► "http://schema.org/DownloadAction",
"userInteractionCount" ► (int)get_post_meta(get_the_ID(), '__wpdm_download_count', true)
);
return $ldjson;
}, 999);
There, replace *.* with an average rating and 0000 with rating and review count.
Hi,
Which SEO plugin you are using there?
Yes, you’re right, we missed the expire period for private links generated from lock option. However, we shall adjust it with the nexty update.
They are UI library, please check:
How to manage the styles and scripts of WordPress Download Manager Pro?
You’re welcome.
And many thanks for your appreciation :).
that is not a generic issue, it probably happened due to css conflcit with your theme.
You’re welcome :D.
BTW, if you get some free moments someday, please give us a 5* here https://wordpress.org/support/plugin/download-manager/reviews/#new-post. Thanks in advance.
Also, let me know if you need any other assistance.
However, I see, you also have configured PayPal smart button, which also works fine and customers can pay with PayPal or credit card without leaving your site, why are you trying to use PayPal pro.
On right side you are not seeing anything, there there is no message yet, you need to click on “Compose” button to send a message.
You can change template, you need to follow the steps:
#1. Create a dir named download-manager inside your active theme dir
#2. Copy /wpdm-private-message/tpls/chatbox dir in side {active-theme}/download-manager dir.
#3. Edit any chatbox template from {active-theme}/download-manager/chatbox dir.
Okay, I’ve adjusted the custom add-on accordingly, now download limit is working fine, but, plese let me know if I missed something.
Hi,
Default value update all function will work even there are 1000s of packages, if it terminates in the middle, that will be due to your server’s connection timeout, if that case, you may need to increase php execution time in your server:
https://stackoverflow.com/questions/16171132/how-to-increase-maximum-execution-time-in-php










