Hello all ,
I am trying to use this plugin https://wordpress.org/plugins/wp-job-manager/ , so I have some issues
as Its automatically generated single job page so I can’t do (hide sidebars , show footer with socket)
and I don’t want to use blog template and replace it with Default template .. !!
my website
http://royalunitednigeria.com/job/test/
Hey!
Try adding this code to the Quick CSS:
.single-job_listing .sidebar {
display: none !important;
}
.single-job_listing .content {
width: 100% !important;
}
Regarding footer and other options you’d need to set those to show as default in the Theme Options panel.
Cheers!
Josue
thanks alot dear Josue , also in links shared of blog post section there is a string “Share this entry” how to change this text !!?
Hey!
Try adding this to the bottom of your /enfold/functions.php file.
add_filter( 'avia_social_share_title', function(){ return 'new text goes here'; } );
Cheers!
Elliott
awesome thanks ;)