HappyPlugins
Forum Replies Created
-
Thanks, sorry for the late response we have published a new version that solve this issue.
As it appears it was only happening on specific WordPress configurations.
Hi Cais,
In the latest version of Wishlist Member there is one issue that make it harder to debug.
In the wpm.php file it’s defined not to report errors, so even if you enable the debug mode on wp-config.php you will still a blank page and could not see the error that is causing the problem.
To solve it you just to change the line in wpm.php inside Wishlist Member plugin folder.
We are using NextGen Gallery and Wishlist Member on many websites and all the menus displayed correctly.
Are you using the latest version of Wishlist Member, Version 2.90.2515 ?
What menus are not shown on your website, NextGen or Wishlist Member?Bob Tolbert
https://happyplugins.comForum: Plugins
In reply to: Checkout with Gravity Forms, add to WishList MemberHi
There isn’t any ready made plugin that integrate Wishlist Member with Gravity Forms.
The only to do it is by using the Wishlist Member API but you need to consider security issues and handles some cases as you don’t want that your website will not filled with bots registration.
I have create a more in depth answer for this question as we getting in a lot.
Here is a link:
https://wishlistmemberplugins.net/does-wishlist-member-integrate-with-gravity-forms
Bob
Forum: Fixing WordPress
In reply to: Wishlist member registration page redirects to homepageHi
Redirection is a very subtle subject inside any WordPress plugin because it’s very easy for another plugin to bypass and conflict with the original redirection.
There was a problem with old versions of Wishlist Member 2.8 and it’s got solved.
Also there was one version of Wishlist Member 2.9 (the new version) but a fix already issued that solved this problem.
There an option under Settings ? Configuration ? Miscellaneous
Allow WishList Member To Handle Login Redirect: yes / no
Try to set it to yes and check
Try to check plugin conflicts and disable all other plugins excepts Wishlist Member.
Bob
https://happyplugins.com
https://wishlistmemberplugins.netForum: Plugins
In reply to: [Yoast SEO] Wishlist member compatibility with SEOHi
We are using both and there isn’t any problem with RSS and WordPress SEO plugin.
Maybe you are using another plugin that block/change the RSS also without knowing the specific error it’s hard to find the exact cause.
~Bob
Forum: Plugins
In reply to: [Shortcodes AnyWhere] Not working at allHi
Sorry for the late delay custom fields are not supported as they are unique for every product / theme.
We may add this feature in the future.
Forum: Reviews
In reply to: [Prevent Email Change] Does what it says on the tin.Thanks and thank you for you review!
Forum: Reviews
In reply to: [Delete Multiple Themes] Wow ! Super !Thank you for your review and for your suggestion.
We will definitely add this option in the next version.Forum: Plugins
In reply to: [EDD Auto Register] Not sending email, or registering user?Thanks
Forum: Plugins
In reply to: [EDD Auto Register] Not sending email, or registering user?Is there’s any news with PayPal integration?
Forum: Plugins
In reply to: [Theme My Login] Are there known conflicts with WishList member PluginTheme my login plugin does not work well with Wishlist Member.
There are few redirects that cause the problem that you are describing.
Some older versions have worked and the new version does not work at all.
Forum: Plugins
In reply to: [WordPress Social Login] Has anyone got this working with WishList Member?Regarding Social Login registration hook it does not really matter which one you use.
You just need to use a one that is sending you the user ID that has been registered.
As for the code:
You will need to build an array for all the parameters and then transfer it to the Wishlist API
$level_id is the Wishlist level number
$data = array ( "Users" => array ($user_id)); $api = $this->loadAPI(); $response = $api->post('/levels/'.$level_id.'/members/', $data);
This is the loadAPI functions
private function getAPIkey() { global $wpdb; $table = $wpdb->prefix . 'wlm_options'; $query = " SELECT option_value FROM $table WHERE option_name = 'WLMAPIKey' "; $key = $wpdb->get_results($query); return $key[0]->option_value; } public function loadAPI() { $api = new wlmapiclass(site_url() . '/', $this->getAPIkey()); $api->return_format = 'php'; return $api; }
Hope this is helpful
We will publish later a post with more information about this process on our blog and link here.
Forum: Plugins
In reply to: [WordPress Social Login] Has anyone got this working with WishList Member?Hi
We are doing custom development for Wishlist Member & WordPress and and this your issue actually is very simple with even getting into the code of Wishlist Member
All you need is add_action to ‘user_register’ hook.
Write a custom function that use Wishlist Member API to add every one that is registering to a specific level on Wishlist Member.
You can use the Wishlist Member API documentation for more information about that.
You can also follow HappyPlugins Blog there we publish there code snippets for various membership and eCommerce platforms.