URLS

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
Il y a 5 ans
Hi

I am using nopcommerce 4.10. When I change the urls for facebook twitter through >Configuration > Genral Settings

it doesn't update them on my home page

Thanks
Il y a 5 ans
can you please let us know which theme you are using ??

it could be possible that your theme has issue and it don't getting social icons URL from settings
Il y a 5 ans
Thanks Vipul I am using the Default Clean Theme
Il y a 5 ans
have you try to hard refresh by ctrl + F5 ?? if that not works

try to clear cache from nop admin and then check.
Il y a 5 ans
Did both am getting the same issue
Il y a 5 ans
Did both am getting the same issue
Il y a 5 ans
Did both am getting the same issue
Il y a 5 ans
wmorrogh wrote:
Did both am getting the same issue


It should work, did you have any customization ? or any third party theme or plugins installed ??
Il y a 5 ans
The only customization I made was configuring PayPal which was already installed
Il y a 5 ans
If you are using defaultClean theme then go to Nop.Web\Views\Shared\Components\SocialButtons\Default.cshtml

can you please verify that above file has code like below ??


@model SocialModel
<ul class="networks">
  @if (!string.IsNullOrEmpty(Model.FacebookLink))
  {
    <li class="facebook"><a href="@Model.FacebookLink" target="_blank">@T("Footer.FollowUs.Facebook")</a></li>
  }
  @if (!string.IsNullOrEmpty(Model.TwitterLink))
  {
    <li class="twitter"><a href="@Model.TwitterLink" target="_blank">@T("Footer.FollowUs.Twitter")</a></li>
  }
  @if (Model.NewsEnabled)
  {
    <li class="rss"><a href="@Url.RouteUrl("NewsRSS", new {languageId = Model.WorkingLanguageId})">@T("Footer.FollowUs.RSS")</a></li>
  }
  @if (!string.IsNullOrEmpty(Model.YoutubeLink))
  {
    <li class="youtube"><a href="@Model.YoutubeLink" target="_blank">@T("Footer.FollowUs.Youtube")</a></li>
  }
  @if (!string.IsNullOrEmpty(Model.GooglePlusLink))
  {
    <li class="google-plus"><a href="@Model.GooglePlusLink" target="_blank">@T("Footer.FollowUs.GooglePlus")</a></li>
  }
</ul>


if its there then it should work.

FYI : I am talking about the social icon which is showing on footer
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.