For the membership plugin, I have some questions/issues:
1. When they sign up and the username already exists or anything else they input, the button says “username already exists” but then I have to refresh the page to get the button back. The button goes away so I can’t just change what’s there and resubmit it. Shouldn’t have to refresh the page and re-input everything again. Can this be fixed?
2. Is there a way to add a phone number to the membership registration form?
3. Is there a way to verify their email when signing up in the membership? I see that this option is in with the download plugin itself when registering.
4. There’s a critical error when trying to download anything. I deactivated all the plugins and I turned on the display errors in the wp-config.php file but no errors showed up. I also updated the PHP to 7.3 but that didn’t work either.
5. When I click on edit profile in the upper right hand side bar, it shows me this error: -10520: Jetpack: [missing_token]. When I’m signed in as an admin person, I can edit my profile in WP. I’m assuming that when I’m a user and I click on the edit profile that it will go to the download/membership dashboard? If it doesn’t, is there a way to get to the dashboard using this?
6. Is there a way to have the regular download manager plugin do a free plan instead of using the membership plugin? I don’t see an option to be able to do anything free or list it for free but still have to register to get to it?
7. Also, I see that there’s an update to the membership plugin as I saw the changelog. However, the site hasn’t showed that it needs to be updated. Doesn’t this do automatic update push like the download plugin? Or do I have to periodically check the membership page to see if there’s been an update? If so, this is not very efficient.
8. I’ve requested this before to be fixed but it seems that it hasn’t been done. On the Your membership confirmation email, at the bottom it says “Log in to your membership account here: https://creeksidecontrols.com/membership-plans/” They need to go to /login or /wp-login.php and not /membership-plans.
9. Is there a way to add a link to the dashboard that will go to our downloads page? That way they can easily get back to where they are needing to go since after you sign up, it doesn’t automatically redirect you back to the downloads page to download anything.
When I use email lock is it possible for the email to actually include the image rather than the download link?
I ask because my users will primarily be iPhone users and will need to click the download a wallpaper, but when they do it doesn’t save to the camera roll but rather to the downloads folder, which a lot of users seem to struggle finding.
Thank you
Hello,
I found conflict between directorist plugin (https://wordpress.org/plugins/directorist/) and wpdm-archive.
How reproduce ?
Install plugin directorist
Install plugin wpdm-archive
Create page with [directorist_search_result] and go to this page.
Make a search in directorist plugin.
Error -
[You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near ') AND wp_posts.post_type = 'at_biz_dir' AND ((wp_posts.post_status = 'publish...' at line 1]
The problem
The wpdm-archive catch my directorist WP_Query in this file (wordpress/wp-content/plugins/wpdm-archive-page/wpdm-archive-page.php)
function Where($where){
...
}
Multiple replace add wrong parentheses and failed my WP_Query.
My workaround
Add if (strpos($where, 'at_biz_dir') !== false) return $where;
in function Where($where)
Example :
function Where($where){
global $wpdb;
// print_r($wpdb->prefix);
// Directorist workaround
if (strpos($where, 'at_biz_dir') !== false) return $where;
if( (!isset($_GET['wpdmtask']) || $_GET['wpdmtask'] != 'get_downloads') && !isset($_GET['q']) ) return $where;
if( (!isset($_GET['search']) || $_GET['search'] == '') && !isset($_GET['q']) ) return $where;
// Return because advanced search does not have a search keyword
if( isset($_GET['q']) && $_GET['q'] == '') return $where;
$where = str_replace(array("\n", "\r",""), "", $where);
$where = str_replace("AND ( ( ".$wpdb->prefix,"OR ( ( ".$wpdb->prefix, $where);
$where = str_replace(")) AND ".$wpdb->prefix, ") ) ) AND ".$wpdb->prefix, $where);
if(strpos($where, "post_type = 'wpdmpro'")) $where = str_replace("(((".$wpdb->prefix,"((((".$wpdb->prefix, $where);
return $where;
}
I hope this explains well.
Sorry for my english (French level)
Regards,
Hi –
I have just update my clients site to the latest versions of wordpress and updated all plugins. However now, the download links on the downloads page are not working. Clicking on the link does nothing, whereas it was opening/downloading a pdf.
This is a paid service for very urgent.
Thanks in advance for any help you can give me.
Barry
Hi
All the previously working download buttons are broken in google chrome in a large professional site I manage. This happened after the latest update that I installed this morning. This is very urgent, as downloads are a major part of my clients site.
The download buttons still work in Microsoft edge
For example, you can see the issue here – https://governance4fe.co.uk/knowledge-bank/challenge-support/
THIS IS VERY URGENT!! PLEASE ROLL BACK TO THE PREVIOUSLY WORKING VERSION!!