';
printf( __( 'This child theme is not maintained anymore, consider using the parent theme %1$s or check-out our latest free one-page theme: %2$s.','responsiveboat' ), sprintf( '%s', 'Zerif Lite' ), sprintf( '%s', 'Hestia' ) );
echo '
';
}
}
add_action( 'admin_notices', 'responsive_boat_admin_notice', 99 );
function responsiveboat_background_fix(){
return array(
'default-image' => get_stylesheet_directory_uri().'/images/bg.jpg',
'default-repeat' => 'no-repeat',
'default-position-x' => 'center',
'default-attachment' => 'fixed'
);
}
add_filter('wp_themeisle_custom_background_args','responsiveboat_background_fix');
function responsiveboat_setup_fix() {
register_default_headers( array(
'wheel' => array(
'url' => get_stylesheet_directory_uri().'/images/bg.jpg',
'thumbnail_url' => get_stylesheet_directory_uri().'/images/bg.jpg',
'description' => __( 'Header', 'responsiveboat' )
)
) );
}
add_action('after_setup_theme', 'responsiveboat_setup_fix');
function responsive_boat_style_fix() {
$custom_css = "
.testimonial .section-header .white-text{
color: #404040;
}
.big-title-container .btn.red-btn, .big-title-container .btn.green-btn {
background: rgba(255, 255, 255, 0.15);
}";
wp_add_inline_style( 'responsiveboat-style', $custom_css );
}
add_action( 'wp_enqueue_scripts', 'responsive_boat_style_fix' );