Shahriar

Forum Replies Created

Viewing 25 posts - 2,851 through 2,875 (of 12,513 total)
Mar 21, 2019 at 6:18 pm
#95076
Moderator
Shahriar
Staff OP

I checked some package and email lock seems to be working fine there. Could you please send me the package URL where you faced the hang-up issue? And how are you using the download link in external sites? Locked package download links won’t work in external sites as it requires WPDM scripts to show the email popup.

Mar 21, 2019 at 5:58 pm
#95075
Moderator
Shahriar
Staff OP

Hi,

WPML has a string translation feature which translates the texts saved as options. It also translates the post meta values ( i.e. terms lock texts ). But I don’t know, specifically how it is done. Please contact the WPML support to help you on this.

Thanks.

Mar 21, 2019 at 5:41 pm
#95074
Moderator
Shahriar
Staff OP

You need Directory Add-on ( https://www.wpdownloadmanager.com/download/wpdm-directory-add-on/ ) to use that view. After activating the add-on insert the following shortcode in a page.

[wpdm-archive cat_view="sidebar" button_style="default" items_per_page=10 order_by="post_title" order="asc"]

Mar 21, 2019 at 5:37 pm
#95073
Moderator
Shahriar
Staff OP

Removed the localhost and sub-domains. You can link 4 new sites now.

Mar 21, 2019 at 5:30 pm
#95072
Moderator
Shahriar
Staff OP

Hi,

Code customization is required to add files column. Where do you want to search for the filename? The search in admin panel doesn’t search the file names.

Best regards.

Mar 21, 2019 at 5:25 pm
#95071
Moderator
Shahriar
Staff OP

Do you want to retrieve the icon URL set in Package Settings Icons Tab?

Here is the code to get the icon URL.

$icon_url = get_post_meta( $postid, '__wpdm_icon', true );

Mar 21, 2019 at 5:19 pm
#95068
Moderator
Shahriar
Staff OP

So, you want to limit the access to premium package even before purchase?

You can do that by setting “Hide Everything” in “When user is not allowed to download:” option. ( Downloads Settings Basic Access Settings )

Now only users from “Select Members:” field will be able to make the purchase.

Mar 21, 2019 at 4:04 pm
#95066
Moderator
Shahriar
Staff OP

Please send login info in private reply. I will verify the key. I unlocked the key twice, it shouldn’t link to the staging automatically after that.

Mar 21, 2019 at 8:17 am
#95043
Moderator
Shahriar
Staff OP

Users with manage_options capability can access the Stats page. So, you can either give this capability to the “Customer Support” role or change the Download Manager code to allow menu access for lower capabilities.

Mar 21, 2019 at 7:08 am
#95042
Moderator
Shahriar
Staff OP

Hi,

Add the following code to your theme’s functions.php file to include child category posts too. This code uses the wpdm_embed_category_query_params filter which allows you to modify any query parameter.

function wpdm_embed_category_query_params( $params ){

    $tax_query  = $params['tax_query'];
    $taxonomy   = $tax_query[0]['taxonomy'];
    $terms      = $tax_query[0]['terms'];
    $operator   = $tax_query[0]['operator'];

    $params['tax_query'] = array(array(
        'taxonomy' ► $taxonomy,
        'field' ► 'slug',
        'terms' ► $terms,
        'include_children' ► true,
        'operator' ► $operator
    ));

    return $params;
}
add_filter('wpdm_embed_category_query_params', 'wpdm_embed_category_query_params');

Best regards.

Mar 21, 2019 at 6:53 am
#95041
Moderator
Shahriar
Staff OP

Did you manage to solve the issue? Let us know if you still need help on this.

Mar 21, 2019 at 6:47 am
#95040
Moderator
Shahriar
Staff OP
This reply has been marked as private.
Mar 21, 2019 at 6:44 am
#95039
Moderator
Shahriar
Staff OP

The search option in this page https://ps-cardiagnostics.com/software/ is coming from the “all packages” shortcode. It is not possible to use show this without the shortcode.

You can place the WPDM Search Widget in the footer to make the search option available in all pages.

Mar 21, 2019 at 6:34 am
#95037
Moderator
Shahriar
Staff OP

We removed to Ninja Form support long ago. Currently, Form Lock supports the following Form Plugins,

  • Live Forms
  • Contact Form 7
  • Gravity Forms
  • Formidable Form
  • WP Forms
Mar 21, 2019 at 6:30 am
#95036
Moderator
Shahriar
Staff OP

Please send temporary wp-admin login info in private reply to check the issue.

Mar 21, 2019 at 6:24 am
#95035
Moderator
Shahriar
Staff OP

Hi Marie, Unlocked your key from the old domain. You can use it on your new domain now. Thanks.

Mar 21, 2019 at 6:21 am
#95034
Moderator
Shahriar
Staff OP

PLease install WPDM – Custom Access Level in version 2.8.3

Mar 21, 2019 at 6:20 am
#95033
Moderator
Shahriar
Staff OP

Please try now.

Mar 20, 2019 at 7:45 pm
#95010
Moderator
Shahriar
Staff OP
This reply has been marked as private.
Mar 20, 2019 at 7:40 pm
#95009
Moderator
Shahriar
Staff OP

I can’t access the clone site, it is asking the http password. So, not clear what kind of issue you are facing there. Could you please check the PHP error log? Send me the log file or latest entries. That will indicate if there is any PHP related error.

Mar 20, 2019 at 7:36 pm
#95008
Moderator
Shahriar
Staff OP

Please try the following shortcode ( Panel template with 3 cols layout ),

[wpdm-archive button_style=”inverse” link_template=”link-template-panel” cols=3 order_by=”title” order=”ASC” items_per_page=”9″]

Mar 20, 2019 at 4:47 pm
#95005
Moderator
Shahriar
Staff OP

Document preview doesn’t work on localhost
For video use [video_player_1200] template tag and for audio use [play_list] tag in your custom link/page template.

Mar 20, 2019 at 4:45 pm
#95004
Moderator
Shahriar
Staff OP

You can use the Default View. It has the category filter and the search option.

Demo link https://demo.wpdownloadmanager.com/wpdmpro/archive-page-default/

[wpdm-archive button_style="inverse" link_template="link-template-calltoaction1" order_by="title" order="ASC" items_per_page="9" cols=1]

Mar 20, 2019 at 4:22 pm
#95002
Moderator
Shahriar
Staff OP

Hi,

Purchases are accessible by only the user who purchased the file. No extra restriction is required in this case.

If you meant something else, please explain little more. I am referring to the purchases made using Premium Package add-on.

Thanks.

Mar 20, 2019 at 4:17 pm
#95001
Moderator
Shahriar
Staff OP

Just released an update to fix the issue. Please install the latest version. You can download it here https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases

Viewing 25 posts - 2,851 through 2,875 (of 12,513 total)