Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Dragan Nikolic

    (@nikolicdragan)

    In ts-fab.php file in Fancier Author Box plugin, locate this line:

    add_filter( 'the_content', 'ts_fab_add_author_box' );

    And update it to look like this:

    add_filter( 'the_content', 'ts_fab_add_author_box', 100 );

    You can change the number to adjust the location of the author box.

    Thread Starter Gtantra

    (@gtantra)

    Super !!! Thanks a lot for the quick help

    Plugin Author Dragan Nikolic

    (@nikolicdragan)

    No problem. Glad to help.

    Hi!

    I had the same problem and tried your solution: Works pretty good!

    But: It will be overwritten with every update!! Is there any way to make this modification update-safe? I’m thinking of something like a Child-Theme, but for your extension. But of course i’m open for any other idea!

    Thanks for help!

    Achim

    Plugin Author Slobodan Manic

    (@slobodanmanic)

    Hi,

    No, you’d have to make this update every time plugin gets upgraded.

    What you could try instead is adding this to your theme’s function.php (not tested, won’t break the site, but can’t guarantee it will work):

    remove_filter( 'the_content', 'ts_fab_add_author_box' );
    add_filter( 'the_content', 'ts_fab_add_author_box', 100 );
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Author Box appears above Wp Audio Player’ is closed to new replies.