BB Theme with Yoast

Hi, I was previously having trouble with using Yoast in conjunction with my BB theme, the website title/tagline was not showing up correctly in Google (I think the tagline was showing up as the site title, and I can’t remember if there was also a duplication issue). Either way- I think I previously modified the header.php or something to try to fix it (my bad!). Even though my site tite should show up in Google as “Daniel Toma Chartered Accountant” with the tagline “Accounting, Tax & Advisory” it now just shows up as “Daniel Toma” and nothing else. Here’s my Header.php, any ideas what I can do to fix my issue (or at least put it back to the way it was previously?)

<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<?php do_action(‘fl_head_open’); ?>
<meta charset="<?php bloginfo(‘charset’); ?>" />
<meta name=“viewport” content=“width=device-width, initial-scale=1.0” />
<meta http-equiv=“X-UA-Compatible” content=“IE=edge” />
<link rel=“profile” href=“http://gmpg.org/xfn/11” />
<link rel=“pingback” href="<?php bloginfo(‘pingback_url’); ?>" />
<?php FLTheme::title(); ?>
<?php FLTheme::favicon(); ?>
<?php FLTheme::fonts(); ?>
<link rel=“stylesheet” href="<?php echo get_template_directory_uri(); ?>/css/bootstrap.min.css" />
<!–[if lt IE 9]>
<script src="<?php echo get_template_directory_uri(); ?>/js/html5shiv.js"></script>
<script src="<?php echo get_template_directory_uri(); ?>/js/respond.min.js"></script>
<![endif]–>
<?php

wp_head();

FLTheme::head();

?>
</head>

<body <?php body_class(); ?> itemscope=“itemscope” itemtype=“http://schema.org/WebPage”>
<?php

FLTheme::header_code();

do_action(‘fl_body_open’);

?>
<div class=“fl-page”>
<?php

do_action('fl_page_open');

FLTheme::fixed_header();

do_action('fl_before_top_bar');

FLTheme::top_bar();

do_action('fl_before_header');

FLTheme::header_layout();

do_action('fl_before_content');

?&gt;
&lt;div class="fl-page-content" itemprop="mainContentOfPage"&gt;

	&lt;?php do_action('fl_content_open'); ?&gt;

Hey Daniel,

That code seems to be identical from the header.php file on my local dev so you should be good there. It would have to be the setting you placed on your Yoast SEO meta boxes. I’m not really an SEO expert but I’m guessing the changes you’ve made wouldn’t reflect in Google in an instant.

Ben