You can use the following WordPress hooks to add new behaviours and content to parts of the theme.
To use these hooks you must use the add_action() WordPress function and create a custom function to handle your custom behaviour. See the WordPress codex for information on how to use add_action().
Hooks
livingos_abovecontent
Executes before #content on each page
livingos_belowcontent
Executes after #content on each page
livingos_abovemain
Executes before #main on each page (in header.php)
livingos_belowmain
Executes after #main on each page (in footer.php)
livingos_abovefooter
Executes before #footer
livingos_postfooter
Used to build footer for each post content
livingos_pagefooter
Used to build footer for each page content
livingos_post_before_title
Executes before post ttile
livingos_post_after_title
Executes after post title
livingos_share_btns
Executes after default share buttons so you can add your own additional buttons.