• Resolved logicgame1001

    (@logicgame1001)


    Hi, I using the guestbook on wedding page for visitor to wish the couple. So there will be many same entries such as “Congratulation” or something like that. The thing is, gwolle treat same entries like that as a spam. Is there a way to allow multiple entries with same data?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Marcel Pol

    (@mpol)

    Hi,
    This PHP code should do that:

    function remove_gwolle_gb_check_double_entry() {
    	remove_filter( 'gwolle_gb_new_entry_frontend', 'gwolle_gb_check_double_entry' );
    }
    add_filter( 'init', 'remove_gwolle_gb_check_double_entry' );

    You can add it to functions.php of your theme, or add it to an own plugin.

    Thread Starter logicgame1001

    (@logicgame1001)

    thanks a lot. its worked

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

The topic ‘Allowing double entries’ is closed to new replies.