@monicavilas: In Pro version, there is built-in option for editing footer content. I recommend you to Pro version. Or it seems you are already using a child theme, you can add the function to override the default footer content.
function catchbase_footer_content() {
//catchbase_flush_transients();
if ( ( !$catchbase_footer_content = get_transient( 'catchbase_footer_content' ) ) ) {
echo '<!-- refreshing cache -->';
$catchbase_content = catchbase_get_content();
$catchbase_footer_content = '
<div id="site-generator" class="two">
<div class="wrapper">
<div id="footer-left-content" class="copyright">' . $catchbase_content['left'] . '</div>
<div id="footer-right-content" class="powered">' . $catchbase_content['right'] . '</div>
</div><!-- .wrapper -->
</div><!-- #site-generator -->';
set_transient( 'catchbase_footer_content', $catchbase_footer_content, 86940 );
}
echo $catchbase_footer_content;
}
Replace variable $catchbase_content['left']
in the above code with your desired content. And remove the default action hook and add the new function to the same hook using remove_action and add_action.
Let me know if any problem.
Note: You can find this code in catchbase-core.php line 1410
Regards,
Mahesh