-
AuthorSearch Results
-
May 14, 2020 at 10:35 am #128271
ShahjadaKeymasterIt 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 and0000with rating and review count.May 14, 2020 at 6:40 am #128251In reply to: New Page Template
Nayeem RiddhiModeratorFor the login button adjustment, is it related with WPDM membership add on. please give your page URL too.
Thanks.
May 10, 2020 at 2:05 am #127937In reply to: Paypal Payment Pro
ShahjadaKeymasterMay 6, 2020 at 4:50 pm #127679Topic: cols Parameter Affecting Subsequent Page Element
in forum Download Manager Pro
Linsey PerryParticipantHi!
I am building a grid of downloads using a featured image and title / download link.
My shortcode is…
[wpdm_category id="brochures" title="Brochures & Flooring Guides" template="5eb2d25e265b5" order_by="title" order="asc" cols=3 colspad=2 colsphone=1 download_link=1]My custom template is…
<div class="knowledge-base-download"><a href="[download_url]">[thumb_200x200] <b><a href="[download_url]" class="knowledge-base-download-heading" style="text-decoration: none;">[title]</b></div>Two problems…
- The first element after the wpdm_category shortcode is affected by this code. It looks like it’s throwing everything into a strange column layout, so I’m guessing it’s something to do with the columns.
- Second, less critical problem, is that the title doesn’t appear. Any obvious issues? I don’t mind adding this manually, but while I’m here 🙂
Any ideas or fixes would be massively appreciated.
Thanks so much in advance!
May 4, 2020 at 4:32 pm #127488In reply to: How to create direct download link
Nayeem RiddhiModeratorPlease put this code in your theme
functions.php, let me know if it works for you,add_filter("wpdm_download_url_base", function($base, $ID) { return home_url('/'); } , 10, 2 );Thanks.
Apr 27, 2020 at 7:19 am #126996In reply to: Help With AppShop Theme
Nayeem RiddhiModeratorHi,
For #option1, please your related page link and site URL
For #option2, Short-code for generating tree view of all packages and categories:
[wpdm_tree]are you talking about this? this is related to this add on, https://www.wpdownloadmanager.com/download/wpdm-extended-short-codes/.
Thanks.
Apr 25, 2020 at 8:54 am #126867In reply to: Product Name Not Displayed Properly in PayPal
ShahjadaKeymasterHi,
I had to set the tag[download_page]as return URL value to redirect to the order details page after purchase.

Now, it will redirect to the order details page after purchase.Also, I’ve updated to download limit add-on, and tested there, it is working fine.
However, I’m watching this topic now, please let me know if you need any other assistance or I missed something there.
Apr 24, 2020 at 11:19 pm #126847In reply to: Twitter Lock – Critical Error
ShahjadaKeymasterHi,
Please add your site URL as twitter redirect URL, that will resolve the issue:

And as you know you can create twitter app from here:
https://developer.twitter.com/en/appsApr 20, 2020 at 12:57 pm #126301
BParticipantHi, we are experiencing something similar. The requests that worked fine a couple of weeks ago now returns “404 no route was found matching the url”, which I suspect was caused by the upgrade of WP. Were you able identify the issue?
I’ll add wp-admin login details in a private reply below in case you want check our setup
Apr 17, 2020 at 8:49 pm #126159In reply to: User defined file access
Nayeem RiddhiModeratorThere is also available for download URL generate in the PRO version, but it is limited with the user access role. however, for sharing files you can also use file hosting and sharing add on.
Thanks.
Apr 17, 2020 at 1:07 pm #126089In reply to: Icons not changing inside the packages
Associação Brasileira de FacilitiesParticipantThis reply has been marked as private.Apr 15, 2020 at 3:04 pm #125931
Nayeem RiddhiModeratorHere, One line code has been
$preview = wp_get_attachment_url($preview);updated. for that, it may be missing the earlier additional images. Earlier code settings maybe now deprecated.Apr 14, 2020 at 6:51 pm #125870
FrebersParticipantThis reply has been marked as private.Apr 8, 2020 at 5:00 am #125399In reply to: Download Link not working
AnkushMemberHi Nayeem,
You’re trying the direct download link – which is not what users see.
Go to this page: http://www.nutemplates.com/invoices/blank-invoice-template/
You will see I have an “email lock” on Word & Excel download – they are not working.
When user clicks on them it adds #unlock in the URL and nothing happens.
Please note: there is no email lock on PDF download, which is working fine.So, it is a problem with “email lock” functionality with download.
Please check again!
Apr 7, 2020 at 4:45 pm #125377
ShahjadaKeymasterOkay now. However, here is the explanation:
get_post_meta(get_the_ID(),'__wpdm_additional_previews', true);returns media object ids for additional previews, so code should be like this:$previews = get_post_meta(get_the_ID(),'__wpdm_additional_previews', true); foreach($previews as $preview){ $preview = wp_get_attachment_url($preview); //...... //..... }And to get the featured image, user wordpress’s native function
the_post_thumbnail( 'full' );Apr 7, 2020 at 1:03 pm #125349In reply to: Custom icon
Christiaan van DurenParticipantBut can I add an icon to that library? So I don’t have to find the right url every time?
Apr 4, 2020 at 2:17 pm #125113In reply to: SOCIAL UNLOCK PRO PACKAGE NOT WORKING
Elizabeth MorleyParticipantThis reply has been marked as private.Mar 29, 2020 at 8:41 am #123005In reply to: File Cart Is Empty
Vlado DjuricicParticipantThis reply has been marked as private.Mar 13, 2020 at 9:43 pm #121971In reply to: Change Logout Redirect URL?
safetysystemsMemberThank you – this is just what I was after:
add_action('wp_logout', 'wpdm_logout_redirect'); function wpdm_logout_redirect(){ wp_redirect(home_url("")); exit(); }Mar 11, 2020 at 6:49 pm #121818In reply to: Underscore issue with Stripe
Krys PetersenParticipantThis reply has been marked as private.Mar 11, 2020 at 12:28 pm #121793In reply to: Open in a new tab/window
SebastianParticipantHi there..
i guess i didn’t understand it right..
– created a dir named download-manager in my child theme dir
– copied the link template in it
– added [link_label] instead of [download_link]but it doesn’t work..
<!– WPDM Link Template: Default Template –>
<div class=”link-template-default card mb-2″>
<div class=”card-body”>
<div class=”media”>
<div class=”mr-3 img-48″>[icon]</div>
<div class=”media-body”>
<h3 class=”package-title”>[page_link]</h3>
<div class=”text-muted text-small”><i class=”fas fa-copy”></i> [file_count] [txt=file(s)] <i class=”fas fa-hdd ml-3″></i> [file_size]</div>
</div>
<div class=”ml-3″>
[link_label]
</div>
</div>
</div>
</div>Mar 10, 2020 at 5:19 pm #121762
Nayeem RiddhiModeratorHi,
1. For Opening file instead of downloading you have an option in the
Settings > Basic Settingsunder theFile DownloadoptionOpen In Browser.
2. For pdf viewer, you can follow this add on doc, https://www.wpdownloadmanager.com/download/wordpress-pdf-viewer/, usedoc_previewfor your pdf viewer.
3. For opening in a new window, you can follow this doc, https://www.wpdownloadmanager.com/doc/template-files/, by default, you are usinglink-template-default.phpfor link template andpage-template-default.phpfor the page template. As documentation, you have to copy the file in the theme directory naming a folder called download-manager, then paste it intpls>page-templatesfor page template ortpls>link-templatesfor link template. And you have to replace[download_link]with<a href="[download_url]" class="btn btn-primary" target="_blank">[link_label]</a>in related php file.Thanks.
Mar 5, 2020 at 12:26 pm #121435In reply to: Custom Templates after 5.0.7 CSS missing
welswebmasterParticipantThis reply has been marked as private.Feb 29, 2020 at 4:46 pm #121142In reply to: Change text button into image button
Hatch FirstParticipantThis reply has been marked as private.Feb 29, 2020 at 1:40 pm #121131In reply to: Form Lock for Gravity Forms doesn’t work
Jory HogeveenParticipantHi Nayeem,
The error you are referring to is fixed, this is actually unrelated to the issue from this topic.
This is an AJAX call to add a view count to the package.
This is also unrelated to this plugin as it is part of the Download Manager core plugin.
It’s addingindex.phpin the URL and this is forbidden by a lot of servers due to security. Also, adding this is not needed.
I’ve made a patch but can’t find Download Manager free plugin on GitHub, where can I provide the patch?Back to topic.
I’ve searched more in depth and found an issue, probably Gravity Forms specific.
GravityForms handles form submissions in the WordPresswphook. See plugin filegravityforms.phpin root on line 176 (add_action( 'wp', array( 'GFForms', 'maybe_process_form' ), 9 );)The problem is that Download Manager handles form lock in the WordPress
inithook, which is run before thewphook.
See file:/libs/class.Apply.phpline 30 (add_action('init', array($this, 'wpdmIframe'));).By the time
WPDM_FormLock::gravityforms_html()is called thewphook isn’t run yet so no form handling is done by GravityForms.
This is the reason the form keeps displaying without processing any submissions.I’ve reproduced this issue over and over again on a completely fresh local installation with only Download Manager, WPDM Form Lock and Gravity Forms active on a default WordPress theme.
My guess is that you are testing locally with an outdated GravityForms version. Please make sure you are up to date.Jory
-
This reply was modified 6 years, 2 months ago by
Jory Hogeveen. Reason: File references
-
AuthorSearch Results
Search Results for 'Add Url'
-
Search Results
-
Hi!
I am building a grid of downloads using a featured image and title / download link.
My shortcode is…
[wpdm_category id="brochures" title="Brochures & Flooring Guides" template="5eb2d25e265b5" order_by="title" order="asc" cols=3 colspad=2 colsphone=1 download_link=1]My custom template is…
<div class="knowledge-base-download"><a href="[download_url]">[thumb_200x200] <b><a href="[download_url]" class="knowledge-base-download-heading" style="text-decoration: none;">[title]</b></div>Two problems…
- The first element after the wpdm_category shortcode is affected by this code. It looks like it’s throwing everything into a strange column layout, so I’m guessing it’s something to do with the columns.
- Second, less critical problem, is that the title doesn’t appear. Any obvious issues? I don’t mind adding this manually, but while I’m here 🙂
Any ideas or fixes would be massively appreciated.
Thanks so much in advance!
