Hello,
Unfortunately, this cannot be done from the administration of the plugin. You will need to change the code of the Social Feed plugin in order to achieve that.
You need to change the date format seperately for each social network. Please follow the examples below:
Facebook 1. Edit the
~/Plugins/SevenSpikes.Nop.Plugins.SocialFeed/Views/SocialFeedPublic/Shared/_Facebook.cshtml2. On line 35 you will find the following code:
<span class="post-date">@feed.CreatedDate.Value.ToString("dd/MM/yyyy")</span>
3. Change the "
dd/MM/yyyy" string that is passed to the
ToString() function to "
MM/dd/yyyy"
Google+1. Edit the
~/Plugins/SevenSpikes.Nop.Plugins.SocialFeed/Views/SocialFeedPublic/Shared/_GooglePlus.cshtml2. On line 33 you will find the following code:
<span class="post-date">@feed.PublishedDate.Value.ToString("dd/MM/yyyy")</span>
3. Change the "
dd/MM/yyyy" string that is passed to the
ToString() function to "
MM/dd/yyyy"
Twitter1. Edit the
~/Plugins/SevenSpikes.Nop.Plugins.SocialFeed/Views/SocialFeedPublic/Shared/_Twitter.cshtml2. On line 32 you will find the following code:
<span class="post-date">@twitterStatus.CreatedAt.Value.ToString("dd/MM/yyyy")</span>
3. Change the "
dd/MM/yyyy" string that is passed to the
ToString() function to "
MM/dd/yyyy"
Hope that helps!