Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • I 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'] != ''):

    Thread Starter ideabuzz

    (@ideabuzz)

    Resolved: 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.

    Thread Starter ideabuzz

    (@ideabuzz)

    Update: I have done a clean install of WordPress and then:

    1. Configure anyone can register in General Settings
    2. Install Cimy Extra fields
    3. Install Cimy User Manager
    4. Configure extra fields (all visible at registration)
    5. Verify visible at registration
    6. Install PM Pro
    7. Configure one membership typev
    8. No extra fields visible at registration
Viewing 3 replies - 1 through 3 (of 3 total)