1. Homepage
Can you show me your Index.cshtml?
I think you have couple of code
@Html.Widget("home_page_bottom")
I can change all in next update tomorrow.
But if you need dot at once
>When yo get to the Article page, the date overlaps with the title.
Add this css-style
.article-date {
display: block;
}
<span class="article-date">-@Model.DateUserTimeZone.ToString("D")</span>
<span class="article-date">-@Model.DateUserTimeZone.ToString("dddd, dd MMMM yyyy")</span>
> Would need to have this in French as well.
I saw it at your site. I don't know. I'll try to find solution.
>If you mean if I have any "redirect" plugins, no I don't.
Ok... I must think too.
>When yo get to the Article page, the date overlaps with the title.
CSS style isn't comfortable for your site... I'll change it for you. Thank you.
> But when I click on "Home Page - Enable Articles on Home Page", it appears twice.
Did you see two article block on Home page? I see only one block on my test site...
>Home page. Enable pager for articles
This feature add pager for Home page for Articles block... By default customer sees on new 4 (you can change this value) articles.
I'll check and answer you tomorrow.
We don't have demo or full version of plugins.
Plugins have only serial number protection.
Open plugin page and download it.
Don't worry. This is the same version.
How to upgrade plugin?
Replace plugin folder on your site (all files) and restart your site.
Plugin will upgrade itself.
You should download plugin from our site from product page.
It's free.
You have had serial number.
We released a new version v2.0 (for Nop 3.60, 3.70 and never) and added date.
You can show this date value too.
Example
Add this code
<span class="article-date">@item.DateUserTimeZone.ToString("D")</span>
>It would be nice to be able to have a date added automatically.
By default plugin takes current date and time for new articles, but the store's owner can change it. Did I understand you correctly?
>The other thing I notice is that when you check the box to have the list of articles on the Left Panel
I saw the problem...
Do you have any plugins for changing routes in your store?
I don't know, but this method is in standart NopCommerce kernel libraries.
1. Download the new version of plugin from our site (download from the product page).
[url=www.foxnetsoft.com/content/files/foxnetsoft.feedmanager.zip]www.foxnetsoft.com/content/files/foxnetsoft.feedmanager.zip[/url]
2. Replace plugin folder (all files), you needn't uninstall and install plugin.
3. Open the Global.asax in site root folder and add spacebar to the end of the file. After it IIS recreates internal cache.
4. Try it.
5. Write me about result.
I think you must add your code to the file Completed.cshtml from your themes folder.
Example
@model CheckoutCompletedModel
@using Nop.Web.Models.Checkout;
@using Nop.Core.Infrastructure;
@using Nop.Services.Orders;
@{
Layout = "~/Views/Shared/_ColumnsOne.cshtml";
//title
Html.AddTitleParts(T("PageTitle.Checkout").Text);
var checkoutEmail = "";
var checkoutTotal = decimal.Zero;
var order = EngineContext.Current.Resolve<IOrderService>().GetOrderById(Model.OrderId);
if (order!=null)
{
checkoutEmail = order.Customer.Email;
checkoutTotal = order.OrderTotal;
}
}
<!-- BEGIN: NSG_GUARANTEE -->
<span id='_GUARANTEE_GuaranteeSpan'></span>
<script type="text/javascript" src="//nsg.symantec.com/Web/Seal/gjs.aspx?SN=********"></script>
<script type='text/javascript'>
if(window._GUARANTEE && _GUARANTEE.Loaded) {
_GUARANTEE.Hash = '*******************************************';
_GUARANTEE.Guarantee.order = '@Model.OrderId';
_GUARANTEE.Guarantee.subtotal = '@checkoutTotal';
_GUARANTEE.Guarantee.email = '@checkoutEmail';
_GUARANTEE.WriteGuarantee('JavaScript', '_GUARANTEE_GuaranteeSpan');
}
</script>
<!-- END: NSG_GUARANTEE -->
<div class="page checkout-page order-completed-page">
<div class="page-title">
<h1>@T("Checkout.ThankYou")</h1>
</div>