Close

Profile: Boyko

Avatar

User posts

12 years ago

shayt wrote:
OK, thanks for the answer.

what about Full Text Search,
i guess that the instant search plugin support it
probably it's doesn't matter if the results are coming from a LIKE query or from a FTS query, right ?
(i just want to be sure)

Thanks,
Shay


HI Shay,

As I said both plugins work the same way internally.
I forgot to mention that the Instant Search also offers you the option to search in the full description of the products, which if turned off can increase performance.

Thanks

12 years ago

shayt wrote:
Hi,

what is the difference between normal site (version 3.00) without the instant search plugin
and a site with this plugin ?

i am asking because even without the plugin, there is an autocomplete, and i can see results while i type.
so what is the advantage of using this plugin ?

Thanks,
Shay


Hi Shay,

The Nop Instant Search plugin was released for nopCommerce 2.4 when there wasn't such search in nopCommerce. nopCommerce added this functionality in the later versions of nopCommerce. Even though there is a default autocomplete search in nopCommerce and both do the same job, we prefer to use the Nop Instant Search as it allows more settings in the administration, which makes it easier to manipulate for a store owner. For example with the Instant Search plugin you can change when the search results to appear i.e after typing at least 4 chars and also you can set the size of the images in the search results.
So it is up to you which one to use as a matter of personal preferences.
In summary - both do the same internally and give the same results and there are no performance differences but the Instant Search has more options in the administration and better visual styling(I personally think that it looks better).

Thanks

12 years ago

codestream wrote:
Has anyone managed to display the tabs as an accordion? The JQuery UI tabs can be styled as an accordion but it also requires manipulating the HTML slightly to accommodate the different layout. I assume this is generated on the fly by the plugin so where would I go to edit this appearance?


Hi codestream,

You are free to modify the html by editing the view(.cshtml) of the Quick Tabs.
Plugins\SevenSpikes.Nop.Plugins.NopQuickTabs\Views\ProductTab\_ProductTabs.cshtml

I guess then we can rename the plugin to Quick Tabs\Accordion :)

Thanks

12 years ago

toanhnt wrote:

Hi,

I need to make the homepage featured products smaller so I can fit 3 products per row.
I need it just like nop version 2.7


Hi toanhnt,

You can find the css file of the DarkOrange theme here:
Themes\DarkOrange\Content\styles.css

Add this style:

.home-page-product-grid .product-item
{
width:160px;
}


But please note that you need to change other styles as well so that it could look nicer.

Thanks

12 years ago

atzmonca wrote:
hi,
now when i mouse over the "about us" link, the text shown on popup
how can i fix that that only click on "about us" will redirect the user to the "about us" page?


Hi atzmonca,

You need to edit this file:
Plugins\SevenSpikes.Nop.Plugins.MegaMenu\Views\MegaMenu\MegaMenu.cshtml

The changes you need to make are described in the file above. Simply comment some of the code  and uncomment the other.

Comment this line of code:

<li>@aboutUsTopicBlock</li>


Uncomment the line below:

 <li><a href="@Url.RouteUrl("Topic", new { SystemName = "aboutus" })">@T("AboutUs")</a></li>


Thanks

12 years ago

pawrisian wrote:
If possible I need some help configuring the Nop Customer Reminders as I don't understand very well how to set up the "conditions met dates".

I would like to send one reminder within an hour of cart abandonment which is the most common practice I think ?

How should I set it up ?

Please help !

Thank you so much !
Sonia


Hi Sonia,

Please refer to this post as I have already explained this there. Just change the time to be 1 hour rather then 12 hours.

Should you have other questions regarding the Reminders don't hesitate to ask.

Thanks

12 years ago

toanhnt wrote:
hi,

to make the homepage image smaller, I have to modify the style.css file right? Can you point me the exact location of the code? thanks


Hi toanhnt,

Could you specify which home page image you want to make smaller?
There are many images on the home page - Sliders, Featured products, Carousels etc.
If you are talking about the hope page featured products then do you want to make only the images smaller or the whole product boxes?

Thanks

Hi David,

It is perfectly fine to have more than one nopCommerce theme on the same instance of nopCommerce during development. Actually this is how we develop our themes locally. We have all of them installed and just switch between them but we still haven't seen a real production store that allows theme selection.

Thanks

david.hirst wrote:
Thanks for the reply, that made sense and following the advice, things are looking much better now.

Curiously, there's a "SevenSpikes.Theme.Fashion" plugin. There are various settings and configurations for the plugin via the control panel as well as many more settings in the two xml files it uses. How does this plugin relate to using clones of the Fashion theme? Does it need cloning itself somehow (indeed can it be?) to work only on a cloned Fashion theme or will whatever it does be applied to all cloned themes anyway as appears to be the case? I ask because I tried changing one of the settings in the control panel (plugins/nop fashion theme/settings - remove copyright) and it affected my newly named cloned theme. I hope you understand what I'm asking!


Hi David,

The Fashion theme plugin is required to manage the settings used by the Fashion theme. Since you have cloned the Fashion theme views (.cshtml) files then your new theme uses the same settings as the original Fashion theme. And having in mind that all settings in nopCommerce are shared between all themes this means that changing a setting via the plugin will apply in all themes that use it. In summary it is not a good idea to have multiple themes running at the same instance of nopCommerce as all the settings are shared as you are having a single database. I don't know why you want to run two themes on the same instance of nopCommerce but we wouldn't recommend doing this in production web site unless you are running Multiple web sites (Multi store) and be able to set a given setting per store.

I hope all these make sense.

Thanks

david.hirst wrote:
Hi, I am using the Fashion theme and have the multi-site licence. I developed my first website by leaving the theme with the name "Fashion" and tweaked its files as necessary as the site only required to run the one theme variation. All was OK. I now want to develop new theme variations and tried copying the theme as detailed in the nopcommerce documentation to create a new theme with a new name. Whilst the new theme runs, it looks like it probably isn't running the nop-templates plugins. Do you have instructions how to successfully clone and run the Fashion theme by another name?

Thanks.


Hi David,

When you copied the Fashion theme into a new theme i.e FashionNew did you also made a copy of the Fashion theme folders into the plugins. Please note that each of our plugins is themeable, which means that it has a folder Themes that contains the styles, the additional widget zone and the views for the plugin specific for each theme. So if you have a clone of the Fashion theme then you basically need to clone the Themes\Fashion folders in our plugins as well.

Hope this helps!