• Resolved rosario78

    (@rosario78)


    In mine installation, wp with a lot of plugin are in conflicts with USP plugin then when i submit post not happening nothing. So, i had investigate this problem and i resolved it editing file /wp-content/plugins/user-submitted-posts/user-submitted-posts.php in line 99, with a high priority parameter (from 10 (default) to 1):
    // third parameter was 10 for default
    add_action ('parse_request', 'usp_checkForPublicSubmission');

    Now i’ve:
    add_action ('parse_request', 'usp_checkForPublicSubmission',1);

    I don’t know if this change is correct but i don’t see other problems for now.

    P.S. this change will lost with future plugin updates

    https://ww.wp.xz.cn/plugins/user-submitted-posts/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Jeff Starr

    (@specialk)

    Nice!

    Thanks for the tip, will test thoroughly and include in the next update if all looks good.

    Jeff Daigle

    (@jeff-daigle)

    rosario78’s change solved my problem as well–when I hit submit the page would reload but nothing would get submitted.

    Plugin Author Jeff Starr

    (@specialk)

    Just to follow up with this, I have implemented this change as of v20160815. Thanks for the suggestion and feedback.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘[resolved] Nothing happens when clicking submit button’ is closed to new replies.