Hello. Awhile back I asked about how to add text and links above the main Blog page and I was able to do it with X Theme with your help. However recently I’ve updated to Pro Theme and it seems the code no longer works and the text and links no longer display above the blog posts. This is the code I have in my functions.php page. What do I need to edit for the code to work in Pro Theme? Thanks. https://www.thosecrazyvegans.net
<?php
// =============================================================================
// FUNCTIONS.PHP
// -----------------------------------------------------------------------------
// Overwrite or add your own custom functions to X in this file.
// =============================================================================
// =============================================================================
// TABLE OF CONTENTS
// -----------------------------------------------------------------------------
// 01. Enqueue Parent Stylesheet
// 02. Additional Functions
// =============================================================================
// Enqueue Parent Stylesheet
// =============================================================================
add_filter( 'x_enqueue_parent_stylesheet', '__return_true' );
// Additional Functions
// =============================================================================
add_action( 'x_before_view_global__index', 'print_custom_header_for_blog' );
function print_custom_header_for_blog(){
if( is_home() ){
?>
<div id="blog_section" class="x-section" style="margin: 0px;padding: 45px 0px; background-color: transparent;">
<div class="x-container max width" style="margin: 0px auto;padding: 0px;">
<div class="x-column x-sm x-1-1" style="padding: 0px;">
<p style="font-size:20px;">Welcome to Those Crazy Vegans Blog! Read up on all kinds of crazy and controversial issues, add your thoughts and comments, or <a href="https://www.thosecrazyvegans.net/register">register</a> and <a href="https://www.thosecrazyvegans.net/submit-a-blog-article/">share</a> your own blogs. Thanks for helping spread the message of peace and compassion for the earth and the animals!</p></div>
</div>
</div>
<?php
}
}
add_filter( 'bbp_get_forum_archive_title', 'tcv_forum');
function tcv_forum () {
Return 'Forum' ;
}