Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #305495

    I am trying to add this site seal on my child theme.
    How would I go about that?

    http://blue.bbb.org/public/bbbonline/online_seal.html

    CLC Landscape & Irrigation BBB Business Review

    #305663

    Hey deerstonedevelopment!

    Please refer to my post here – https://kriesi.at/support/topic/adding-a-logoimage-to-the-right-of-the-header/#post-304859

    Regards,
    Yigit

    #305917

    I DID the following in the post the recommended

    echo avia_logo(AVIA_BASE_URL.’images/layout/logo.png’, $addition, ‘strong’, true);
    echo “<div class=’header-custom-image’>CLC Landscape & Irrigation BBB Business Review</div>”;

    After I inserted this in the site I got the following error

    Parse error: syntax error, unexpected ‘class’ (T_CLASS), expecting ‘,’ or ‘;’ in /home/deerstone/public_html/clclawncare/wp-content/themes/enfold/includes/helper-main-menu.php on line 103

    This is a SEO SITE SEAL with a backlink to the clients BBB Review site. So its not just an an Image. How do I get this code to work properly?

    #305936

    Hi!

    Please paste the code you have inserted in http://pastebin.com/ and post the link here

    Best regards,
    Yigit

    #305994
    #306065

    Hey!

    Thank you for the info.

    Please use this on functions.php:

    function ava_add_seal() { ?>
    <div class="header-seal"><a target="_blank" title="CLC Landscape & Irrigation BBB Business Review" href="http://www.bbb.org/wyoming-and-northern-colorado/business-reviews/landscape-contractors/clc-landscape-irrigation-in-windsor-co-46013758/#bbbonlineclick"><img alt="CLC Landscape & Irrigation BBB Business Review" style="border: 0;" src="http://seal-wynco.bbb.org/seals/blue-seal-280-80-clc-landscape-irrigation-46013758.png" /></a>
    </div>
    <?php }
    
    add_action('ava_main_header','ava_add_seal');

    Use this on Quick CSS to adjust the position of the seal:

    .header-seal {
    position: absolute;
    right: 0;
    top: 0;
    }

    Regards,
    Ismael

    #306116

    Ok THis is what I have in my Functions file right now

    http://pastebin.com/50B2yJWF

    what is the correct syntax for both functions to work?

    #306121

    I figured it out Thank you for all of your support! ;)

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘How TO add BBB Accredited Site seal In Header’ is closed to new replies.