Shahriar

Forum Replies Created

Viewing 25 posts - 10,551 through 10,575 (of 12,510 total)
in reply to: Suggestion – add search to forum #45962

Shahriar
Moderator
in reply to: WPDM – Advanced Custom Fields #45960

Shahriar
Moderator

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/

in reply to: Mega Conflict with Press Permit Core #45959

Shahriar
Moderator

Please give me temporary wp-admin login info and ftp access to plugins dir in a private reply to check your issue.


Shahriar
Moderator

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.

in reply to: Invalid License Key! #45957

Shahriar
Moderator

@the-web-elite, unlocked

@neiltomlow
, give me your license key in a private reply.

in reply to: Creating packages programatically #45954

Shahriar
Moderator

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.

in reply to: Probel with download #45951

Shahriar
Moderator

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.

in reply to: Simple Search #45950

Shahriar
Moderator

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.

in reply to: Modal window issue #45949

Shahriar
Moderator

For template modification:

Remove/Hide table columns

in reply to: Modal window issue #45946

Shahriar
Moderator

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

Remove/Hide table columns

in reply to: WPDM Api & Desktop APP #45945

Shahriar
Moderator

Sorry, API add-on doesn’t have any function to get license related info.

in reply to: installation support #45943

Shahriar
Moderator

If you want to place package info in sidebar like demo, you need to use “Package Info” widget.


Shahriar
Moderator

Sorry for the delay, it is working fine now.

in reply to: Stop Permission-Denied.txt #45885

Shahriar
Moderator

That is not possible with short-code wpdm_direct_link

in reply to: Invalid License Key! #45880

Shahriar
Moderator

Unlocked.

in reply to: Probel with download #45875

Shahriar
Moderator
in reply to: installation support #45874

Shahriar
Moderator

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.

in reply to: WPDM Api & Desktop APP #45872

Shahriar
Moderator

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”

in reply to: Probel with download #45868

Shahriar
Moderator

please give me the package URL to check

in reply to: Style wpdm_tree #45865

Shahriar
Moderator

You may use css like this:

.jqueryFileTree a {
    font-size: 10pt;
    line-height: 23px;
}
in reply to: installation support #45864

Shahriar
Moderator

<strong>ERROR:</strong> your account is not yet activated.

in reply to: Sorting by download_count not working #45862

Shahriar
Moderator

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 reply to: TinyMCE only renders Panel template #45861

Shahriar
Moderator

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.

in reply to: Creating packages programatically #45860

Shahriar
Moderator

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
        );
Viewing 25 posts - 10,551 through 10,575 (of 12,510 total)