• Resolved stuartleech

    (@stuartleech)


    Hello,

    I’d like to simply add some info text beneath the title and above the speaker names rather than having to link through. I’m guessing this isn’t too tricky but wondering if anyone has done similar

Viewing 1 replies (of 1 total)
  • Plugin Contributor Steve Jones

    (@stevejonesdev)

    Hi,

    Currently it’s not possible to hook into between the title and speaker, although you can hook in after the speaker.

    In your themes functions file add this code.

    
    add_filter('wpcs_session_content_footer','my_session_footer');
    function my_session_footer($id){
    	return 'Your Text';
    }
    

    I hope that helps let us know if you have any other questions.

Viewing 1 replies (of 1 total)
  • The topic ‘Add info text’ is closed to new replies.