Shahriar

Forum Replies Created

Viewing 25 posts - 5,801 through 5,825 (of 12,513 total)
May 29, 2018 at 6:22 pm
#77632
Moderator
Shahriar
Staff OP

If you are trying to the tree only to logged in user here is the simplest solution.

Add the following code after line no 24 in /plugins/wpdm-extended-shortcodes/wpdm-extended-shortcodes.php file,

if( ! is_user_logged_in() ) return '';

https://www.evernote.com/l/AUd27MP4jkhBvImZhVxHP32282eIAP38-csB/image.png

If you want better access control you can use Advanced Access Control add-on.

May 29, 2018 at 6:04 pm
#77629
Moderator
Shahriar
Staff OP
This reply has been marked as private.
May 29, 2018 at 6:01 pm
#77628
Moderator
Shahriar
Staff OP

Please send temporary wp-admin login info in private reply.

May 29, 2018 at 6:00 pm
#77627
Moderator
Shahriar
Staff OP

Hi,

We recently changed the text domain name from wpdmpro to download-manager. Looks like we missed some texts. Will make those translatable in next release.

Thanks.

May 29, 2018 at 5:56 pm
#77626
Moderator
Shahriar
Staff OP

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

May 29, 2018 at 5:52 pm
#77625
Moderator
Shahriar
Staff OP

The jQuery data table library is modifying the column width automatically. Width parameter works better when jstable=0 in your shortcode. We are looking into other options to handle this situation.

May 29, 2018 at 5:46 pm
#77624
Moderator
Shahriar
Staff OP

Are you using Windows server? Please add the following code after line no 158 in /download-manager/wpdm-start-download.php file,

$filepath = str_replace('\\','/', $filepath );

That should fix the naming issue.

May 29, 2018 at 5:42 pm
#77623
Moderator
Shahriar
Staff OP

Unlocked your keys. License key should work now.

May 28, 2018 at 7:03 pm
#77523
Moderator
Shahriar
Staff OP

Download Manager doesn’t use its own jQuery. It enqueues core WP jQuery which is the standard approach. Plugins shouldn’t use its own jQuery version as I assume your another plugin is using.

However, I have to check your installation to be sure. Please send temporary wp-admin login info in private reply so I can take a look.

May 28, 2018 at 6:58 pm
#77521
Moderator
Shahriar
Staff OP

Please install the latest version of TinyMCE add-on to fix the icon issue in shortcode inserter popup.

About the feature icon meta box, Which theme are you using there?

May 28, 2018 at 6:27 pm
#77518
Moderator
Shahriar
Staff OP

There is no easy way to do that for old entries. You can run the following SQL query from phpMyAdmin or ask your server support to run it.

UPDATE wp_ahm_download_stats set ip = ''

Here table name is wp_ahm_download_stats which might be different than yours if there is a different prefix.

May 28, 2018 at 6:18 pm
#77515
Moderator
Shahriar
Staff OP

We are releasing an update soon to fix it. If you want to add the fix now, please send wp-admin login info in private reply or add the following code after line no 411 in /wpdmpp-stripe.php file.

$cart_id = wpdmpp_cart_id();
            $coupon = get_option($cart_id."_coupon", array('code' ► '', 'discount' ► 0));
            $order_total = ($order_total - $coupon['discount']);
May 28, 2018 at 5:46 pm
#77511
Moderator
Shahriar
Staff OP

Hi, Sorry for the delay. I see there are many active plugins. Can I deactivate plugins for testing purpose?

May 28, 2018 at 5:42 pm
#77510
Moderator
Shahriar
Staff OP

Add the following css to remove the dots.

.w3eden .list-group li{ background: none; }

May 28, 2018 at 5:06 pm
#77509
Moderator
Shahriar
Staff OP

Please try now.

May 28, 2018 at 8:00 am
#77464
Moderator
Shahriar
Staff OP

It’s in your shortcode. Currently, it is jstable=1

May 28, 2018 at 8:00 am
#77463
Moderator
Shahriar
Staff OP

That’s coming from your theme or another plugin. However, please share the page URL to suggest custom CSS to fix it.

May 28, 2018 at 7:58 am
#77462
Moderator
Shahriar
Staff OP

Please check now.

May 28, 2018 at 7:48 am
#77456
Moderator
Shahriar
Staff OP

Hi, Looks like the issue is on our side. We are working on it. Will let you know when there is an update available. Thanks.

May 28, 2018 at 7:30 am
#77453
Moderator
Shahriar
Staff OP

Your theme is modifying the chosen select dropdown. You can disable chosen on link and page template drop down by performing the following customization. That’s the only thing could be done from plugin side. Another option is asking your theme provider why it is modifying chosen select.

Replace jQuery('.w3eden select').chosen(); with this jQuery('.w3eden select').not('#lnk_tpl, #pge_tpl').chosen(); in /tpls/wpdm-add-new-file-front.php file.

May 28, 2018 at 6:47 am
#77449
Moderator
Shahriar
Staff OP

Fixed the warning and overlay issue.

Add the following code to your theme’s functions.php file to remove frontend tabs you don’t need,

add_filter( 'wpdm_frontend', 'WPDMFrontendTabs', 99 );
function WPDMFrontendTabs($tabs){
    $fm = $tabs['file-manager'];
    $tabs = array();
    $tabs['file-manager'] = $fm;
    return $tabs;
}
May 27, 2018 at 7:22 pm
#77404
Moderator
Shahriar
Staff OP

Use clear stats data button to erase all previous stats.

https://www.evernote.com/l/AUcWMABCoadN3auLfY9R_OwcOqDNeqYx1zIB/image.png

May 26, 2018 at 9:00 am
#77273
Moderator
Shahriar
Staff OP

Please try now. Unlocked the key from the old domain.

May 26, 2018 at 8:57 am
#77272
Moderator
Shahriar
Staff OP

Could you please recheck the login info. Not working for me.

May 26, 2018 at 8:54 am
#77271
Moderator
Shahriar
Staff OP

Hi, It seems the width parameter can’t set the column width exactly as jquery datatable library adjusting the width automatically. It works slightly better when jstable=0

Viewing 25 posts - 5,801 through 5,825 (of 12,513 total)