• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space
  • Chevereto Support CLST

    Support response

    Support checklist

    • Got a Something went wrong message? Read this guide and provide the actual error. Do not skip this.
    • Confirm that the server meets the System Requirements
    • Check for any available Hotfix - your issue could be already reported/fixed
    • Read documentation - It will be required to Debug and understand Errors for a faster support response

Social Network Follow Us in Top Menu

SMP

💖 Chevereto Fan
Add the following code (dont forget to change the social media urls) to your theme header file above
Code:
<li data-nav="about" class="phone-hide pop-btn pop-btn-delayed">
(appx line 381)


Code:
<li data-nav="social" class="phone-hide pop-btn pop-btn-delayed">
                <span class="top-btn-text"><span class="icon icon-info tablet-hide laptop-hide desktop-hide"></span><span class="text phone-hide phablet-hide"><?php _se('Follow Us'); ?></span><span class="arrow-down"></span></span>
                <div class="pop-box arrow-box arrow-box-top anchor-right">
                    <div class="pop-box-inner pop-box-menu">
                        <ul>
                            <li><a href="yourfacebookurl" rel="nofollow"><?php _se('Facebook'); ?></a></li>
                            <li><a href="yourtwitterurl" rel="nofollow"><?php _se('Twitter'); ?></a></li>
                            <li><a href="yourgoogleplusurl" rel="nofollow"><?php _se('Google+'); ?></a></li>
                            <li><a href="yourpinteresturl" rel="nofollow"><?php _se('Pinterest'); ?></a></li>
                            <li><a href="youryoutubeurl" rel="nofollow"><?php _se('Youtube'); ?></a></li>
                        </ul>
                    </div>
                </div>
</li>

follow.jpg
 
Rodolfo,

If possible (and others request it) do include this (in header or footer) directly into one of your future releases (with an option to show/not) as not every one is comfortable with file edits.
 
Code:
<li data-nav="follow" class="phone-hide pop-btn pop-btn-delayed">
<span class="top-btn-text"><span class="icon icon-info tablet-hide laptop-hide desktop-hide"></span><span class="text phone-hide phablet-hide">Follow</span><span class="arrow-down"></span></span>
<div class="pop-box arrow-box arrow-box-top anchor-right">
<div class="pop-box-inner pop-box-menu">
<ul>
<li><a href="" target="_blank" rel="nofollow"><span class="btn-icon icon-facebook"></span> Facebook</a></li>
<li><a href="" target="_blank" rel="nofollow"><span class="btn-icon icon-twitter"></span> Twitter</a></li>
<li><a href="" target="_blank" rel="nofollow"><span class="btn-icon icon-pinterest"></span> Pinterest</a></li>
<li><a href="" target="_blank" rel="nofollow"><span class="btn-icon icon-googleplus"></span> Google+</a></li>
</ul>
</div>
</div>
</li>

This one come with icons
 
Back
Top