Forum Replies Created
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.
Please send temporary wp-admin login info in private reply.
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.
Please send wp-admin login info in private reply to check the theme icon issue.
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.
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.
Unlocked your keys. License key should work now.
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.
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?
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.
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']);
Hi, Sorry for the delay. I see there are many active plugins. Can I deactivate plugins for testing purpose?
Add the following css to remove the dots.
.w3eden .list-group li{ background: none; }
It’s in your shortcode. Currently, it is jstable=1
That’s coming from your theme or another plugin. However, please share the page URL to suggest custom CSS to fix it.
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.
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.
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;
}
Use clear stats data button to erase all previous stats.
https://www.evernote.com/l/AUcWMABCoadN3auLfY9R_OwcOqDNeqYx1zIB/image.png
Please try now. Unlocked the key from the old domain.
Could you please recheck the login info. Not working for me.
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