Close

Profile: todor.atanasov

Avatar

User posts

3 years ago

itechra wrote:
After upgrading from 4.30 to 4.50.3, the popup is no longer showing.

How do I configure it to display?


Greetings,

Thank you for reaching out to us!

Please raise a ticket in our support system and provide us with the URL of the store inside, so we can have a look.

3 years ago

officialreseller wrote:
Can a new Select products mapping be added for completed orders reminder. 

Use case: customers who bought a Subscription products or yearly renewal product can be reminded to renew their license or subscription before expiry. 

This will be great to get new orders from existing customers.

Greetings,

Thank you for reaching out to us!

Unfortunately, we cannot integrate our Conditions framework in this plugin, as this would cause a lot of issues with the performance.

Do you provide customization for paid service? Can you please let me know the estimate via a PM or email.


Hi,

Please check with our sales team at [email protected] in regards to any custom development inquiries.

3 years ago

kh_s wrote:
Hi, blog category pages title and blog page title they are the same.i created 5 categories for blog with rich blog, now with blog page in my site 6 pages They have the same h1.
You know that in terms of SEO, 2 pages should not have the same h1. can i resolve this?


Greetings,

Thank you for reaching out to us!

Unfortunately, we cannot override the nopCommerce view, but this change would be possible with a small modification to the view in question - \Views\Blog\List.cshtml (or the overridden equivalent if you are using one of our themes which is overriding this file).

With the new version of Rich Blog 4.5, that we have released just now, we have added a custom property called CurrentCategoryName, that can be used in the view to replace the static <h1> element.

After you update the plugin to the latest version, you have to add two things to \Views\Blog\List.cshtml (or \THEME_NAME\Views\Blog\List.cshtml if it exists):

In the C# code section at the top, you have to add the following code:

var currentCategoryName = Model.CustomProperties.ContainsKey("CurrentCategoryName") ? Model.CustomProperties["CurrentCategoryName"] : "Blog";

So now the C# code section should look like this:

@{
    Layout = "_ColumnsTwo";

    //title
    NopHtml.AddTitleParts(T("PageTitle.Blog").Text);
    //page class
    NopHtml.AppendPageCssClassParts("html-blog-page");

    var currentCategoryName = Model.CustomProperties.ContainsKey("CurrentCategoryName") ? Model.CustomProperties["CurrentCategoryName"] : "Blog";
}

After this, you may replace:

@T("Blog")

with

@currentCategoryName;

P.S.: Please let me know if you are not using nopCommerce 4.5

3 years ago

officialreseller wrote:
Can a new Select products mapping be added for completed orders reminder. 

Use case: customers who bought a Subscription products or yearly renewal product can be reminded to renew their license or subscription before expiry. 

This will be great to get new orders from existing customers.


Greetings,

Thank you for reaching out to us!

Unfortunately, we cannot integrate our Conditions framework in this plugin, as this would cause a lot of issues with the performance.

3 years ago

nikolaosk wrote:
are you planning to add the in stock, on sale filters in the search page?


Greetings,

Thank you for reaching out to us!

Unfortunately, we are not able to add the on sale and in stock filters on the search page, due to performance issue, coming from the nopCommerce database structure.

ActionWebsites wrote:
What is the simplest method for having the homepage laid out like the AllShops page e.g. map and then listing datagrid below it?


Greetings,

Thank you for reaching out to us!

Unfortunately, the shops grid cannot be added on the homepage mainly for performance/design concerns.

Bugs
3 years ago

danthorndyke wrote:
Hello Team,

we are using attachment plugin into our website.

And we migrate that site from 4.30 to 4.50 but  after migration we getting issue like as per below image when some one click into PDF file from product details page.

https://prnt.sc/Yk36wv_R_lio


Same case still working fine into 4.30 as of now so we don't know what going wrong into some products only.

This is admin side SS : https://prnt.sc/6WI4TmnMh7hI  it's same as 4.30

So please let me know if you want any further info or solution for this issue.

Thanks,


Greetings,

Thank you for reaching out to us!

The download URL should be a valid URL, so please try adding one.

I have reported this to our developers as well, so they can add a validation for a correct URL and to display a message that this should be a valid URL.

JRon wrote:
Hi!
I am working on a website with very few categories and we would like to show the available subcategories on top of the filters. This is easy to do on desktop as you can see in the screenshot below, but this only works on desktop not in mobile.

Can I somehow add the categories above the filters in the mobile version, in the div element with classes
nopAjaxFilters7Spikes filterBox responsive-nav-content

Where is the view for this box below that renders below the footer?


Greetings,

Thank you for reaching out to us and sorry for the late reply!

The quickest way to move the filters below the categories is to use different widget zone for the Ajax Filters:

https://imgur.com/5yXvmEs

You may do this under Nop-Templates -> Plugins -> Ajax Filters -> Settings -> General Settings.

3 years ago

jaseefar wrote:
if i downlead the latest urban theme , can i get the theme for  nop version 3.8 also??

we are migrating from 3.8 to the latest.

if we are purchasing the latest urban what are the steps to integrate it with our latest nopcommerce.

we have customization on 3.8 urban theme can i replace the old cstml file in latest theme views.


Greetings,

Thank you for reaching out to us!

Yes, we support 3.8 version for the Urban theme and you may download it on the My Dowloads page.

Bear in mind that if you upgrade to 4.5, your customizations would be deleted and you have to manually merge your customized templates.  

Bugs
3 years ago

manager wrote:
Why often don't the logo images appear?
It reappears after restart application and disappears again after a while.
Is it a web server problem? How to fix it?


Greetings,

Thank you for reaching out to us!

Please raise a ticket in our support system and provide us with the URL of your store there.