Modify the footer credit text

The code snippets below should be pasted into your child theme's functions.php file.

Here is how you modify the left footer credit text.

// Modify the footer credit left text.
add_filter( 'beans_footer_credit_text_output', 'example_footer_credit_text' );

function example_footer_credit_text() {

  return 'Your text';

}

Here is how you modify the right footer credit text.

// Modify the footer credit right text.
add_filter( 'beans_footer_credit_right_text_output', 'example_footer_credit_right_text' );

function example_footer_credit_right_text() {

 return 'Your text';

}

Here is how you overwrite the entire footer content text and HTML.

// Overwrite the footer content.
beans_modify_action_callback( 'beans_footer_content', 'example_footer_content' );

function example_footer_content() {

  ?><!-- your own HTML --><?php

}

Note that you don't need to overwrite the entire block to modify the default markup or add content. Please refer to the markup and attribute article for more advance explanations (requires good PHP understanding).