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

    (@scribu)

    I’m assuming ‘slidedeck’ is a custom post type. If so, this should work:

    function fee_restrict( $allow, $post_id ) {
      if ( 'slidedeck' == get_post_type( $post_id ) )
        return false;
    
      return $allow;
    }
    add_filter( 'front_end_editor_allow_post', 'fee_restrict', 10, 2 );
    Thread Starter DavidGMiles

    (@davidgmiles)

    No it is inserted into a page via shortcode – similar to this

    [SlideDeck id='174' width='98%' height='240px']

    it can exist on any page – is there anyway of delimiting an area as not editable by the “Front-End Editor”

    Thanks

    Plugin Author scribu

    (@scribu)

    Try this: Go to Settings -> Front-end Editor and disable uncheck the Title field.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: Front-end Editor] Adds odd class tags to SlideDeck plugin’ is closed to new replies.