• This errors after update.

    Warning: sprintf(): Too few arguments in …/public_html/wp-content/plugins/take-notice/includes/class-take-notice-plugin.php on line 89

    Warning: sprintf(): Too few arguments in …/public_html/wp-content/plugins/take-notice/includes/class-take-notice-plugin.php on line 104

    https://www.ads-software.com/plugins/take-notice/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Yes, line 104
    'label' => sprintf( _x( 'Show on Posts in Specific %s', 'Taxonomy name', 'takenotice' ) ),

    has to be:
    'label' => sprintf( _x( 'Show on Posts in Specific %s', 'takenotice' ) , 'Taxonomy name' ),

    and line 89:
    'label' => sprintf( _x( 'Show on Specific %s', 'Post type name', 'takenotice' ) ),

    has to be
    'label' => sprintf( _x( 'Show on Specific %s', 'takenotice' ), 'Post type name' ),

    All the best,
    Torsten

    Thanks Torsten,your solution worked.Now its time to close this thread.

    mi_cat

    (@micat)

    Hi Allison,

    I send pull requests to Github. Have you read that?

    https://github.com/aliso/take-notice/pulls

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Warning after update’ is closed to new replies.