Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Nick the Geek

    (@nick_thegeek)

    you can try this

    remove_action( 'gfwa_before_post_content', 'gfwa_do_byline', 10, 1 );
    add_action( 'gfwa_before_post_content', 'gfwa_do_byline', 8, 1 );
    Thread Starter joelmoney

    (@joelmoney)

    Thanks!!!

    Actually just swapping the 10 for an 8 worked like a charm..so…

    add_action( ‘gfwa_before_post_content’, ‘gfwa_do_byline’, 10, 1 );

    became:
    add_action( ‘gfwa_before_post_content’, ‘gfwa_do_byline’, 8, 1 );

    Awesome and appreciate the quick response!

    Plugin Author Nick the Geek

    (@nick_thegeek)

    you shouldn’t be editing the plugin files. You should add the code I provided to your child theme functions.php file. If you edit plugin files those edits will be lost when you update.

    Thread Starter joelmoney

    (@joelmoney)

    Totally man. I was just telling you it works. I did it the right way w/in functions.php

    Appreciate it!

    Plugin Author Nick the Geek

    (@nick_thegeek)

    cool

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘[Plugin: Genesis Featured Widget Amplified] Moving byline above title’ is closed to new replies.