Close

Profile: todor.atanasov

Avatar

User posts

baltavarna wrote:
Hello ladies and gentlemen. We have problem with iPhone safari browser, when we try to open website https://www.jsm.lt it opens but then it disappiers, background becomes black. We were testing some emulators on windows and every thing is fine on emulator, but once we try to load website on iPhone (we have 12 and 13) it's not loading.

We also deleted bundle folder files and it was working. now folder - bundles is empty but we still can not open site on iPhone.

Also we try to check/uncheck HTML minification but nothing has helped

Big big thanks to this comunity ! Have a great day


Greetings,

Please raise a ticket in our support system and provide us with access to your administration.

one year ago

ReemAbbas wrote:
I installed the plugin and used it without any issues on my local host application. Once the application was deployed on azure, I re-installed the plugin and tried to configure it. I am able to define a new slide but once I try to add a widget zone I get the following error.

We're sorry, an internal error occurred.

Our supporting staff has been notified of this error and will address the issue shortly.

We apologize for the inconvenience.

Please try clicking your browsers 'back' button or try reloading the home page.

If you continue to receive this message, please try again in a little while.

Thank you for your patience.


Greetings,

Please raise a support ticket in our support system and provide us with the full error message that you see in your system log. If you are not able to access the System -> Log in the administration, please follow this article to enable logging in the file system.

one year ago

groundzero2010 wrote:
Take this example:
'Product A' should filter for these two vehicles. (Year, Make, Model)
2005 Chevrolet Corvette
2007 Chevrolet Trailblazer

'Product A' includes these specifications.
- Year:
   -2005
   -2007
- Make:
   -Chevrolet
- Model:
   -Corvette
   -Trailblazer

A customer hits the home page and enters this as the criteria to search.
Year: 2007 Make: Chevrolet Model: Corvette

'Product A' is displayed in the search query because the specifications are in place, however, it's only intended to work for 2005 Chevrolet Corvette.

Keep in mind, this functionality is following in the same case as the Traction theme demo.




Greetings,

Thank you for reaching out to us!

Unfortunately, we were not able to replicate the issue locally or on our demos.

Please raise a ticket in our support system and provide us with access to your administration if possible, so we can have a look at the configuration.

one year ago

ilyaspatel wrote:
J carousel Set product display 6 , but don't know where this code come and set to 11

Click here for detail

I have checked in setting table , in coding of setting xml , and also check in all setting it cannot set any where

[{"breakpoint":10000,"settings":{"slidesToShow":11}},
we have not set any where in the code , but it showing every where

can you please support me I need to set 6 picture
can you please support me into this
Thanks


Greetings,

Thank you for reaching out to us!

Please raise a ticket in our support system and provide us with access to your administration, so we can investigate further.

one year ago

[email protected] wrote:
how can set on advance search


Greetings,

Thank you for reaching out to us!

Can you please explain in more details what are you looking to enable for the plugin?

one year 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.

one year 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.

one year 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

one year 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.

one year 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.