Close

Profile: Support

Avatar

User posts

Hi Jose,

I looked at your site and I could not reproduce the problems you have described in your post.

There is one issue however which is not strange at all. You have one slider on all the pages except the category page which is trying to render images that are referenced from localhost(http://localhost/content/images/thumbs/0003608.jpeg, http://localhost/content/images/thumbs/0003609.jpeg), which is incorrect. The slider on category pages uses images that are referenced correctly via your domain name(http://www.spininc.com/content/images/thumbs/0003608.jpeg, http://www.spininc.com/content/images/thumbs/0003609.jpeg).

Can you please make sure that you have cleared nopCommerce'c cache from the administration. Do you have just one slider mapper to the left_column_before widget zone. Do you have any store, category mappings for this slider.

We have already replied to you from our support email, so any details regarding this issue you can  also send there.

As to the other issue you have described related to the Nop Mega Menu, I could not reproduce it.

Looking forward to your reply!

11 years ago

Hi IMPRINTABLESWAREHOUSE,

With the Nop Mega Menu you can show categories up to 3 levels of depth. This can be done if you uncheck the "Show products in a single menu" and use the CategoriesWithPictures option for showing the categories. How many levels of categories you need to display. We think that is confusing for clients if a site has more than 3 levels of depth and that is why the Nop Mega Menu show only the first 3 levels of depths, which appear as more major categories.
The solution that you have found will not work as it uses an old version of the Nop Mega Menu which used to build all categories no matter whether they were displayed or not, which was a crucial performance bottleneck.

Hope that makes sense!

11 years ago

lnetdev5 wrote:
we checking nop ajax plugin, and trying to adjust it for our needs.
is it too complicated to change the filters group panels to regular divs instead of dropdowns and the spec options in each to sort of div buttons? when trying to do so the filtering stop working afcourse, i guess because the class names and their mean for the minified javascript of nopAjax.

someone already did it? can one guide me in general to achieve my goal?
thanks.


Hi lnetdev5,

I am not completely sure what you mean by changing the filter group panels to be regular divs instead of dropdowns as the filter group panel is a div and can contain either a dropdown or checkboxes, depending the UI mode that is set from the administration of the plugin. The Nop Ajax Filters have two UI modes - in dropdowns or in checkoboxes. Changing the html structure will break the functionality and it will not be straightforward to change the html and the filters to continue to work, as the javascript rely on the structure.
However you can change the styling of the elements to simulate what you need. If you can be more specific on what you try to achieve, we might be able to tell you more on how to do it.

Hope that helps!

11 years ago

jkeeler wrote:
Ok I took the _ColumnTwo.cshtml file and duplicated it to be _ColumnsTwoHome.cshtml and then used it in my index.html layout call function.  To get the slider on the home page, I created it and assigned it to widget home_page_top and then added:

`<div class="hmslider">
  @Html.Widget("home_page_top")
</div>`

before the center-2 div tags. Worked perfectly.  

Now I need to add the blog to the home page within some custom div tags within the center-2 div's How can I display the latest blog post on the home page? Thanks in advance.


Hi JKEELER,

I am glad that you managed to make the modification successfully!

Unfortunately in nopCommerce there is no functionality to display blog posts on the home page. You can show news instead. There is a setting in the Administration -> Configuration -> Settings -> News Settings that is called "Show on home page" and if checked news will be shown on the home page.

Hope that helps!

Hi LFTALERO,

You can refer to our How Do I article related to updating a plugin to its latest version. After that you should uninstall and install the Nop Ajax Filters plugin so that the new stored procedure that is used for filtering gets created.

Please let us know if you have any troubles updating the plugin.

Best Regards!

Sliders
11 years ago

Ho COLIN,

These widgets are valid for the Nop Fashion Theme and not the Nop NeoFashion Theme. The widget zone that is used for the home page main slider in the Nop NeoFashion Theme is home_page_slider_top . You can have a look at our online documentation for the theme.

Hope that helps!

11 years ago

[email protected] wrote:
Hi there,

Reading through your documentation I noticed, that the Ajax Filters are only applied to the category page. Is it possible to apply the filters to the home page via  a custom widget ?


Hi,

The Nop Ajax Filters can be integrated only on category and manufacturer page. There is no option to add them on any other page.

Should you have any other queries please do not hesitate to contact us again!

Hi MANISHAK79,

As you know we do not provide source code, so you will not be able to modify the JCarouselModel.

You can add your logic in the view itself on the Model.Items property which will contain the products returned for a given data source type.
Or if you are more familiar with MVC you can create your own controller and add your logic there, have a view from which you can call a specific action from the JCarousel and passing an IEnumerable<ProductOverviewModel> which will be rotated in the carousel.

Please let us know if you need help with the second option with the action and the custom controller.

Best Regards!

11 years ago

Hi Philip,

You can achieve the center by applying the changes as shown below:

.bottomline .center {
  width: 980px;
  margin: 0 auto;
    text-align: center;
}

The line from above in bold is the one that should be added.

.footer-disclaimer {
  /*float: left;*/
}
.footer-poweredby {
  /*float: right;*/
}

The two floats above in bold are the ones that should be changed(actually commented out).

All these styles you can find in the styles.css

Hope that helps!

11 years ago

Hi CICCIUZZO,

We have identified this bug and already fixed it. You can integrate the fix by editing the Plugins/SevenSpikes.Nop.Plugins.AnywhereSliders/Themes/{Theme_Name}/Content/nivo/nivo.css, where {Theme_Name} is the name of the theme from which the css is loaded. In your case most probably will be DefaultClean, as shown below:

change from

.nivoSlider {
  position:relative;
  background:#fff url(loading.gif) no-repeat 50% 50%;
....
}

to

.nivoSlider {
  position:relative;
  background: url(loading.gif) no-repeat 50% 50%;
....
}

The change is removing the background #ff . After that clear your browser's cache and refresh the page.

Hope that helps!