ideabuzz
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: More problems with updating, or saving a draftI fixed the problem in the plugin. Line 1157 is looking to parse_url($url) and the variable $url is empty on submissions not using the redirection. Tracing up through the function there is logic that is looking for check boxes to be populated to trigger the creation of the redirection. The variable $_POST[‘pprredirect_url’] does exist but is empty for normal submissions. By adding an extra condition that the $_POST[‘pprredirect_url’] must not be blank the routine will be skipped.
Change line 1185 from :
if(isset($_POST['pprredirect_active']) || isset($_POST['pprredirect_url']) || isset($_POST['pprredirect_type']) || isset($_POST['pprredirect_newwindow']) || isset($_POST['pprredirect_relnofollow']) ):
To:
if((isset($_POST['pprredirect_active']) || isset($_POST['pprredirect_url']) || isset($_POST['pprredirect_type']) || isset($_POST['pprredirect_newwindow']) || isset($_POST['pprredirect_relnofollow']) ) && $_POST['pprredirect_url'] != ''):
Forum: Plugins
In reply to: [Cimy User Extra Fields] Issue with Paid Memberships ProResolved: The modifications to the functions.php file in the them had not been transferred over from the stage site. This file contained the logic for displaying the user extra fields and also suppressing email alerts to the users. If you want a copy of this integration file just let me know the two plugins work well together once these changes are made.
Forum: Plugins
In reply to: [Cimy User Extra Fields] Issue with Paid Memberships ProUpdate: I have done a clean install of WordPress and then:
- Configure anyone can register in General Settings
- Install Cimy Extra fields
- Install Cimy User Manager
- Configure extra fields (all visible at registration)
- Verify visible at registration
- Install PM Pro
- Configure one membership typev
- No extra fields visible at registration