• Resolved samrot

    (@samrot)


    Hi! The plugin says that it supports Custom Post Types on the free version however I don’t see that option anywhere. If it’s only on the premium version than you should modify the description of the plugin, if not please let me know since it’s something we would like to test.

Viewing 1 replies (of 1 total)
  • Plugin Author WP Shuffle

    (@wpshuffle)

    Hello @samrot ,

    Thank you for writing to us. Yes that is our premium feature and we have adjusted our plugin description and thank you for the heads up.

    You can create a new form in the premium version where you can select the post type which is not available in the free version but still we will assist you to submit the custom post type through a small block of code which you can add in your active theme’s functions.php file.

    Please replace your_cpt_name_here with the slug of your custom post type in the below code.

    add_filter('fpsml_insert_postdata', 'fpsml_support_cpt', 10, 3);
    
    function fpsml_support_cpt($postarr, $form_data, $form_row) {
      $postarr['post_type'] = 'your_cpt_slug_here';
      return $postarr;
    }

    Please let us know if you encounter any issues or have any confusions.

    Thanks.

    • This reply was modified 7 months, 2 weeks ago by WP Shuffle.
Viewing 1 replies (of 1 total)
  • The topic ‘Custom Post Type support’ is closed to new replies.