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

    (@scorpiongod)

    Hi, That’s because WP Related Posts widget is outputted just after the content. You can fix it by changing below line.

    add_action( 'genesis_entry_footer', 'optimized_counters_html5', 1 );

    Change above one to,

    add_action( 'genesis_after_entry_content', 'optimized_counters_html5', 1 );

    You’d need to find the right number for 1 above. I can’t say it without checking myself. So you find it.

    Thread Starter Bluemad

    (@bluemad)

    Thanks ScorpionGod.

    Are there any way to do it using php code?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to change the widget position?’ is closed to new replies.