Close

Profile: Boyko

Avatar

User posts

9 years ago

ceejay34 wrote:
Ive installed an extra language, german. Now i get sevenspikes placeholders in several places, the footer menu when using quickview etc.


I know i can add these by hand but can i somehow uninstall and reinstall all the plugins so the system makes these entries in the database for my added language?
See http://shop.aimeefashion.nl and click german or english flags. Yes english has the problem too.


Hi ceejay34,

If there are no language specific resource files for a given plugin then the plugin adds the English resources for all active languages on startup.
This is true for all our plugins.
So you just need to restart the application when you add a new language and you will have all the necessary resources installed for all plugins.
I don't see any missing resources in your web site.

9 years ago

raftech wrote:
Hey ,

As announced on NopForums official version 3.6 is going to be released 15th of June 2015. How does your planning for upgrade looks like for plugins/theme ? 

Thanks for info
Rafal


Hi raftech,

We will be ready to release all our products the same day when nopCommerce 3.6 is officially released. But our practice shows that it is not a good idea to do so, because there have been times when new changes are added to the release several days after that.
This is due to the fact that a lot of people start installing a new version of nopCommerce only when it is officially released. Which means that in the first 1-2 days it is more likely that someone finds a major bug that will need fixing for the release.
So most probably we will wait and release all our products on 16th of June, so that at least 24 hours have passed after the official release and save our clients from possible updates later.

I hope this information is useful!

9 years ago

dcsupp wrote:
I have setup Nop JCarousel to show manufactures on the home page.
The problem is thaht the width of the Nop JCarousel   exceeds the template's width size

http://nop.dataconsulting.gr/tonermedia/



Hi dcsupp,

This is because you are missing the Smart theme styling for the JCarousel plugin.
Please make sure you have a folder named Smart in the Themes folder of the JCarousel plugin.
I can see that at the moment this file is not reachable, so it is either missing from the server or there is no access to it.
http://nop.dataconsulting.gr/tonermedia/Plugins/SevenSpikes.Nop.Plugins.JCarousel/Themes/Smart/Content/JCarousel.css

Please double check this and everything will be fine when the correct css is loaded.

9 years ago

pacific nature wrote:
Dear Boyko Stanev, thank you for quick response, and I read the link you give to me, but this answer doesn't solve my problem, it's only explain how add a slider, I want to know how to setup homepage step by step same as demo. would you please send me a link with the solution via email. Thank you very much!


Hi pacific nature,

Please submit a ticket and we will provide you the demo database, so that you can see how all the plugins are setup.

9 years ago

pacific nature wrote:
Hi, I got same problem, could you please provide details of setting it with photo? Thank you!


Hi pacific nature,

You can refer to the Tiffany theme documentation. We have added a screenshot of the theme settings page where you can see the dropdown with the categories layout setting.
The rest is as already explained by Peter in the previous posts, to add a Slider in the specified widget zone (again there is a screenshot of how to add a Slider).
You can check the Anywhere Sliders plugin documentation of how to add a slider.

sathish1.sunka wrote:
Hi,

we are using nop 3.4 version motion theme. Now we are facing issue with safari browser in other browsers it is working fine. when we hit any page first it is taking to bottom/footer of the site then I need to go up for selection, same thing happens if I click other pages

Regards
Sunka Satish


Hi Sunka,

Could you provide a link to your web site, so that we can take a look?
You can also submit a ticket if you don't want to share your web site details.

9 years ago

raftech wrote:
Hey - I would like to be able to change colors of theme the same way I was able to do it on demo page to adjust it to my needs like background color of buttons / transparent canvas etc


Hi raftech,

Unfortunately this is not possible to be done on your local machine. You can change the colors etc. only from the demo store but you can download the changes you have made to your local machine and apply them. You can refer to this video of how to generate a color preset from the demo store and then save it on your local machine.

9 years ago

winebear wrote:
Thanks Boyko. I presume then, if this is done in the javascript, we could hack in to that javascript and make some changes so that store.com/category/friendlyurl submits the ajax request as it would for store.com/category#/specFilters=14m!#-!436?


Not really as you still have 2 separate requests. One to load the whole page with all the products and another one that returns a partial view with the filtered products.
Let me explain again assuming you have hacked the javascript.
1. Open store.com/category/friendlyurl in your browser.
2. The whole page loads as it is store.com/category
3. Another request is made to get the filtered products based on friendlyurl.

Now lets say you have 2 links in the menu:
store.com/category/friendlyurl1 and store.com/category/friendlyurl2

Both of them will load the same category page, so for google they are actually the same links as they open the exact same page with the exact same markup (same products).

What you are trying to do is the following:
When you open store.com/category/friendlyurl1 then the markup that the server return should contain already filtered products.
When you open store.com/category/friendlyurl2 then the markup returned by the server should contain another set of filtered products.
This way google can index these 2 pages as if they are 2 different ones.
But this is not possible with the current architecture of the Ajax Filters.
We need to completely rewrite the backend and the frontend of the Ajax Filters to support what you want.

I hope it is clear now!

9 years ago

To add to Iliyan's answer:

It is not just a matter of having access to the dll files.

Actually if you open this link in your browser "www.yourstore.com/some_category_name#/specFilters=14m!#-!436" you will not be able to get this part "#/specFilters=14m!#-!436" on the server as it is not transferred to the server at all.

The way the Ajax Filters plugin works is also important here.

The Ajax Filters are loaded via Ajax and they are not directly accessible via a URL.
The links that you have are not direct links to a specific controller's action and that is why they can't be accessed via the regular SEO Slugs in nopCommerce.

Let me illustrate this with an example. Let's say you open this link "www.yourstore.com/some_category_name#/specFilters=14m!#-!436".

1. This actually opens the some_category_name in nopCommerce.

2. When the page loads in the browser the javascript of the Ajax Filters sees that there is some hash code #/specFilters=14m!#-!436 and makes a new request via Ajax to simulate the clicking of these specification filters by the client.

So the page loads with all the products in that category and then an ajax called is made to filter them. So it doesn't make sense to make this URLs to be SEO friendly as this pages never get accessed by the search engines.

I hope this makes sense!

9 years ago

winebear wrote:
There is no traction.js file in the downloaded package, what am I missing?


Hi winebear,

Maybe you are not looking in the correct folder.
In the package for 3.5 there should be a folder Themes then folder Traction then Content then Scripts then a file called traction.js.
If you haven't made any modifications then it is best to update the theme as described in this article or video.