• Resolved jmackler

    (@jmackler)


    Getting this error on every save, with the pro version:

    Warning: Missing argument 2 for AdvancedSidebarMenuProTitle::filterTitle() in /public_html/wp-content/plugins/advanced-sidebar-menu-pro/src/AdvancedSidebarMenuProTitle.php on line 45

    Any ideas?

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

    (@mat-lipe)

    Hello,

    It looks like you have something in your theme or plugins that is filtering ‘the_title’ without passing the post_id as the second argument.

    Look for something like this

    apply_filters( 'the_title', $post_title );

    Which should actually be

    apply_filters( 'the_title', $post_title, $post_id )

    Thread Starter jmackler

    (@jmackler)

    Any thoughts on where I might find that? I’m using Jupiter theme.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Error On Save’ is closed to new replies.