Forum search:
http://www.wpdownloadmanager.com/support/
Please give me temporary wp-admin login info in a private reply, I’ll set everything up there for you.
If you want to add custom field with email lock, you need to create custom field group from wpdm settings .
There are not option to configure for button template add-on, everything you need to know about button template add-on is mentioned here http://www.wpdownloadmanager.com/download/wpdm-button-templates/
Please give me temporary wp-admin login info and ftp access to plugins dir in a private reply to check your issue.
For now, please open wpdm-hooks.php
, fine and remove add_filter("wpdm_render_custom_form_fields", 'wpdm_render_custom_data', 10, 2);
( Approx line # 50 )
However, update is coming within next week.
@the-web-elite, unlocked
@neiltomlow, give me your license key in a private reply.
Most of those vars are explained here https://developer.wordpress.org/reference/functions/wp_insert_post/ , other vars formats are as mentioned in default value.
Give me ftp access to plugins dir to check the warning, but if you need “Unknown Network Error”, probably you may try to discuss it with your server/hosting support.
Sorry, little confused with your search issue, in our demo http://demo.wpdownloadmanager.com/wpdmpro/advanced-search/ it looks working fine.
Please give me temporary wp-admin login info in a private reply to check short-code issue.
For template modification:
Please add following css at the end of you theme’s style.css:
.modal-backdrop.in { display: none; opacity: 0.5; }
And please check this post
Sorry, API add-on doesn’t have any function to get license related info.
If you want to place package info in sidebar like demo, you need to use “Package Info” widget.
Sorry for the delay, it is working fine now.
That is not possible with short-code wpdm_direct_link
Unlocked.
Download is working fine from here:
https://www.evernote.com/l/AV1brmTOGSxJZ45abyB9QGnzH3id3U-8npYB/image.png
Your package and category url base slugs need to be unique, you can’t create any other page with same slug. I’ve changed those in wpdm settings and now it is working fine.
License verification api is already integrated with premium package.
Suppose your license server is http://www.domain.com
(where premium package is active), you need to set a post request to http://www.domain.com
with following parameters:
action=wpdm_pp_ajax_call
execute=verifylicense
domain={add a function in your script to find [domain name / IP]}
key=[get it from user input = license key they get from you]
product=product ID
In response if you get word “valid” or “invalid”
please give me the package URL to check
You may use css like this:
.jqueryFileTree a { font-size: 10pt; line-height: 23px; }
<strong>ERROR:</strong> your account is not yet activated.
Sorry for the delay, however I’ve found the issue, fixed file attached, please download unzip upload wpdm-functions.php to plugins/download-manager dir.
In case of tinymce button, you need to select link template from drop-down the one you want to use with short-code. But if you want to use the one already selected with package, simply remove template parameter from short-code.
You need to use function \WPDM\Package::Create($package_data)
to create a new package.
And $package_data
array is like this:
$package_data_core = array( 'post_title' ► '', 'post_content' ► '', 'post_excerpt' ► '', 'post_status' ► 'publish', 'post_type' ► 'wpdmpro', 'post_author' ► get_current_user_id(), 'ping_status' ► get_option('default_ping_status'), 'post_parent' ► 0, 'menu_order' ► 0, 'to_ping' ► '', 'pinged' ► '', 'post_password' ► '', 'guid' ► '', 'post_content_filtered' ► '', 'import_id' ► 0, 'files' ► array('file_path_1', 'file_path_2'), 'fileinfo' ► array(), 'package_dir' ► '', 'link_label' ► __('Download','wpdmpro'), 'download_count' ► 0, 'view_count' ► 0, 'version' ► '1.0.0', 'stock' ► 0, 'package_size' ► 0, 'package_size_b' ► 0, 'access' ► 0, 'individual_file_download' ► -1, 'cache_zip' ► -1, 'template' ► 'link-template-panel.php', 'page_template' ► 'page-template-1col-flat.php', 'password_lock' ► '0', 'facebook_lock' ► '0', 'gplusone_lock' ► '0', 'linkedin_lock' ► '0', 'tweet_lock' ► '0', 'email_lock' ► '0', 'icon' ► '', 'import_id' ► 0 );