Support » Plugin: Super Contact Form » [Plugin: Super Contact Form] Wrong filename in options form

  • Super Contact Form 2.0.3 inserts its options page with the wrong path name on line 407:

    add_options_page( __( 'Easy Contact', 'easy_contact' ), __( 'Contact', 'easy_contact' ), 'manage_options', 'easy-contact/econtact-menu.php', '' );

    This should instead be:

    add_options_page( __( 'Easy Contact', 'easy_contact' ), __( 'Contact', 'easy_contact' ), 'manage_options', 'super-contact-form/econtact-menu.php', '' );

    Or, to allow for renaming of the plugin directory and files:

    add_options_page( __( 'Easy Contact', 'easy_contact' ), __( 'Contact', 'easy_contact' ), 'manage_options', str_replace('.php', '-menu.php', plugin_basename(__FILE__)), '' );

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

    (@pedromaia)

    Hi,

    thank you for your feedback. This is being solved and a new version is being released in less than 24 hours.

    This plugin was built from antoher, like mentioned, and the programers left a lot of bugs. Will release the working version asap.

    Regards,
    Pedro

    Thread Starter Richard Thripp

    (@richardxthripp)

    Wow, thanks for the quick response! I found your plugin is just what I needed and implemented it on my site: http://richardxthripp.thripp.com/contact/.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: Super Contact Form] Wrong filename in options form’ is closed to new replies.