Archived topic
Hide Author Box Area For some wp category in Generatepress Themes
3 replies · Started by Mehedi on December 6, 2020
Hello Sir,
hope you are doing well. i want to hide Author box area for Some Wp Category. Currently i use <b>"Simple Author Box"</b> Plugins for showing Author box.(Simple Author Box how can i hide this category box some Selected wp category?
Thank & Regards,
Mehedi
Hi,
You can use a Hook element with this code in it:
<style>
.saboxplugin-wrap{
display:none;
}
</style>
You then hook it to wp_head and set the Display Rule location dropdown values to: Post Category - [Your Selected category].
Read more about Hook Element here:
https://docs.generatepress.com/article/hooks-element-overview/
Wow! Working,but it's not hook with wp_head. its hook with after_content.Thank You So Much.
Wow! Working,but it’s not hook with wp_head. its hook with after_content.Thank You So Much.
Ah yes, as this is CSS, it should work anywhere you hook it as long as it's within the page. :)
Glad its working for you. No problem. :)