Forum Replies Created
In your app’s authentication settings add redirect URL ( OAuth 2.0 )
Add your website URL as redirect URL.
https://www.evernote.com/l/AUdrcra5Nw9K265UoEduE9gY6UHr81p0N1MB/image.png
Verified your license key. If you don’t need digital store feature disable WPDM – Premium Packages add-on.
This is coming from a JS conflict ( with another plugin or theme ) with WPDM’s <audio> tag.
Removing the marked line from wpdm-functions.php file, as shown in the following screenshot, should fix it.
https://www.evernote.com/l/AUf7ot2o60dA1YdWFdpVaVfnLFVuOXKvOukB/image.png
Please send temporary wp-admin login info in private reply, I can do that that If you can’t edit plugin file.
Mailchimp add-on doesn’t have any js or CSS. It just some PHP files. So clearly it is not a JS conflict. Please send temporary wp-admin login info in private reply to we can check this issue.
Fixed the checkbox issue by adding custom CSS in your theme’s custom CSS option.
In your Dropbox file list check if the two files in question has the share icons,
https://www.evernote.com/l/AUdv6w3Aj9lHh4KGK73L58b1RhBh2rAAEDoB/image.png
Please also check the package setting of those 2 packages. If you can;t find anything, send the temporary wp-admin login info private reply. Send the page URL too, where you have the download links.
What kind of problems arose from the conflict?
Please send temporary wp-admin login info in private reply to check the issue.
The solution is using custom link template.
If you don’t want to show download details page you can remove the [page_url] template tag from the link template.
Clone any link template from Downloads Templates page and remove [page_url] tag from there. Also, remove the HTML a tag. Then set this link template when inserting the shortcode.
Use TinyMCE add-on to insert the shortcode. Your custom link template will be available in the dropdown.
The Shortcode for Archive Page ( Directory Add-on ) Simple Search is [wpdm_simple_search]
Glad to know the plugin conflict has been resolved finally.
1 ) Yes, it is possible. You have to create a custom link template. Clone the link template you like or create one. Then remove the [download_link] template tag from there to hide download link. Now you will find [page_url] tag attached to HTML <a> tag. Add target blank there to open link in new page.
<a target="_blank" href="[page_url]">
2) If you are trying to apply a delay in download operation Lazy Download add-on is the one you need.
Select Extended Page Template in package setting to show individual download links.
https://www.evernote.com/l/AUc03JHfB-xAvLNvxY7_H_2L_HPxPB7plu0B/image.png
You can disable the auto redirect to the WPDM login.
In Downloads Settings Frontend Login Page option select None Selected and save settings. That will stop the auto redirect.
You have to show title and content both when listing multiple categories. Because iOS category contains the link in content but others don’t.
But a better solution is using Dropbox Explorer add-on if your iOS apps are served from Dropbox. You can show all packages using the same template any way you want in this case.
In Downloads Settings Frontend Login Page option select None Selected and save settings. That will stop the auto redirect.
Please send temporary wp-admin login info in private reply to check the issue.
Thanks fro reporting the issue. We will fix it in next release of TinyMCE add-on.
1 ) You have to edit default template value in wpdm_embed_category function on wpdm-functions.php file. No other option to change default template of category shortcode. But it seems unnecessary if you are using TinyMCE add-on to insert shortcode because you can select the link template when inserting the shortcode as shown in the screenshot above.
2) No code change required, but you have to delete all unnecessary templates from /download-manager/tpls/link-templates/ and /download-manager/tpls/page-templates/ directories.
3) Custom Templates has their readable name which is shown in template dropdown. You don’t need to remember or understand the template id ( a3sdsb3437… )
The good thing is if you want readable template id, you can create custom templates using php files too. Place you template files under your active theme dir like shown below,
/active-theme/download-manager/link-templates/custom-template-name.php
Copy any template from /plugins/download-manager/tpls/link-templates/ dir and edit on top of it.
Please try now. Unlocked your key from dev server.
Removed the audio tag. Reported issues are resolved now.
Thanks for notifying the update issue. We are already working on it.
Archive Page Sidebar view is working fine in my test here https://unitnetwork.axelspringer.de/cxo-summit-2017/
I have inserted the shortcode for category CxO Summit 2017 as the page name suggests. Initially, it shows newest items like the demo. Click on category links to filter packages.
Send FTP info or add following code in indicated position on file /download-manager/admin/menus/class.BulkImport.php ssd,
$my_post = array(
'ID' ► $post_id,
'post_title' ► $drow['title'],
'post_content' ► utf8_encode($drow['description']),
'post_date' ► $drow['create_date'],
'post_modified' ► $drow['update_date'],
);
wp_update_post( $my_post );
https://www.evernote.com/l/AUdNyv_sHp5IF4oapoIUXYdu0Az8Cuce6sQB/image.png
BTW, you shouldn’t heavily modify core plugin. If you want extra feature or modified feature create an add-on for that. Because in future there might be a case when you must update plugin to keep it compatible with latest WP.