Viewing 1 replies (of 1 total)
  • Near this line
    // Ajax vote
    add_action( ‘wp_ajax_wfp_action’, array($this, ‘favorite_post’) );

    Add another line
    add_action( ‘wp_ajax_nopriv_wfp_action’, array($this, ‘favorite_post’) );

    so the code will look like

    // Ajax vote
    add_action( ‘wp_ajax_wfp_action’, array($this, ‘favorite_post’) );
    add_action( ‘wp_ajax_nopriv_wfp_action’, array($this, ‘favorite_post’) );

    Thanks

Viewing 1 replies (of 1 total)
  • The topic ‘Only registered users can see the save to favorites’ is closed to new replies.