Thanks. This I added this to my functions.php in child theme and I get a parse error. Please see functions.php file below
Parse error: syntax error, unexpected $end in /home/penbr0/public_html/wp-content/themes/customizr-child/functions.php on line 48
<?php
// Adds a widget area.
if (function_exists(‘register_sidebar’)) {
register_sidebar(array(
‘name’ => ‘Extra Header Widget Area’,
‘id’ => ‘extra-widget-area’,
‘description’ => ‘Extra widget area after the header’,
‘before_widget’ => ‘<div class=”widget my-extra-widget”>’,
‘after_widget’ => ‘</div>’,
‘before_title’ => ‘<h2>’,
‘after_title’ => ‘</h2>’
));
}
// Place the widget area after the header
add_action (‘__after_header’, ‘add_my_widget_area’, 0);
function add_my_widget_area() {
if (function_exists(‘dynamic_sidebar’)) {
dynamic_sidebar(‘Extra Header Widget Area’);
}
}
add_filter( ‘tc_slide_background’ , ‘my_custom_slide’ , 10, 4);
function my_custom_slide( $original , $link , $attachement_id, $slider ) {
//apply only to a specific slide in a specific slider name
if ( ‘ pembroke-slider-sept-2014-c’ != $slider || 2547 != $attachement_id ) // <= set the name of your slider and the id of the slide’s media
return $original;
ob_start();
?>
<div class=”row-fluid” style=”position: absolute;top: 0px;z-index: 1;text-align: center;”>
<div class=”span3 product1″>product1</div>
<div class=”span3 product2″>product2</div>
<div class=”span3 product3″>product3</div>
<div class=”span3 product4″>product4</div>
</div>
<?php
$html = ob_get_contents();
if ($html) ob_end_clean();
return $html.$original;