Close

How can I use the Twitter function to another purpose

martinmik
7 years ago
#12473 Quote
Avatar
  • 4
Is it possible to disable the twitter box, so we can write our own text?

Hope someone can help

Best regards
Aleks
7 years ago
#12481 Quote
Avatar
  • Moderator
  • 70
martinmik wrote:
Is it possible to disable the twitter box, so we can write our own text?

Hope someone can help

Best regards


Hi,

to hide the twitter section, go to Themes\Native\Views\Shared open the file _FooterUpper.cshtml and find this code and comment it by enclosing it like this @* <code> *@ or just remove it:

        <div class="footer-upper-block twitter">
            <h3 class="title">
                <span>@T("SevenSpikes.Themes.Native.LatestTweet")</span>
            </h3>
            <div class="twitter-plugin">
                <!--include twitter plugin-->
                @Html.Widget("native_twitter_profile_footer")
            </div>
        </div>
Regards,
Aleksandar Ivanov
Nop-Templates.com
martinmik
7 years ago
#12494 Quote
Avatar
  • 4
Thank you :)