Close

Profile: Support

Avatar

User posts

11 years ago

Hi soulburner,

As to the sliders they should be activated as a widget. You can check this from the Administration -> Content Management -> Widgets page.

1. You can remove the phone and email contacts by opening the ~/Themes/Beauty/Views/Shared/Header.cshtml file in a text editor and remove the following piece of code:

<div class="header-contacts">
        <!-- Changed resources -->
        <span class="phone">@T("SevenSpikes.Themes.Beauty.Common.HeaderContacts.Phone")</span>
        <span class="mail"><a href="javascript:AntiSpam('@T("SevenSpikes.Themes.Beauty.Common.HeaderContacts.EmailName")', '@T("SevenSpikes.Themes.Beauty.Common.HeaderContacts.EmailDomain")')">@T("SevenSpikes.Themes.Beauty.Common.HeaderContacts.EmailName") [at] @T("SevenSpikes.Themes.Beauty.Common.HeaderContacts.EmailDomain")</a></span>
    </div><!--header-contacts-->

2. Open the following file in a text editor ~/Themes/Beauty/Views/Common/Footer.cshtml and remove the following:

<div class="footbox social">
                <h3 class="title">@T("SevenSpikes.Themes.Beauty.Common.FollowUs")</h3> @*changed*@
                <a href="@facebookUrl" class="facebook" target="_blank"></a>
                <a href="@twitterUrl" class="twitter" target="_blank"></a>
                <a  class="rss" href="@Url.RouteUrl("BlogRSS", new { languageId = workingLanguageId })"></a>
            </div>

3. Open the same file ~/Themes/Beauty/Views/Common/Footer.cshtml and remove the following:

<div class="footlist footer-contacts">
                <h3 class="title">
                    @T("SevenSpikes.Themes.Beauty.Common.ConnectWithUs")</h3> @*changed*@
                <ul>
                    <li class="phone">
                        @T("SevenSpikes.Themes.Beauty.Common.ConnectWithUs.Phone")</li> @*changed*@
                    <li class="mobile">
                        @T("SevenSpikes.Themes.Beauty.Common.ConnectWithUs.Mobile")</li> @*changed*@
                    <li class="email">
                        @T("SevenSpikes.Themes.Beauty.Common.ConnectWithUs.Email")</li> @*changed*@
                </ul>
            </div>


Hope that helps!


11 years ago

ThadiusZho wrote:
Hi ThadiusZho,

Yes you can show subcategories in the list view.
Go to Plugins\SevenSpikes.Nop.Plugins.MegaMenu\Views\MegaMenu and open the CategoryMenuTemplate.WithoutPictures.cshtml view. In this view you need to add one more foreach loop for the subcategories. You can open the CategoryMenuTemplate.WithPictures.cshtml view for reference.

Ivan Stoyanov

Thanks for the help. I'm trying to use the information you gave me, but in CategoryMenuTemplate.WithPictures.cshtml the Sub-subcategories are shown starting from the variable Item, that I cannot access in the CategoryMenuTemplate.WithoutPictures.cshtml view. Any ideas?

Thanks,
TZ


Hi TZ,

You need to be familiar with the Razor syntax to make these modifications that Ivan suggested.
Alternately you can simply uncheck the "Show Categories in a Single Menu" setting from the Administration of the Mega Menu and this way you will have each main category shown in the main menu.

Hope this helps!

11 years ago

Hi milo,

Thank you for your feedback.

The dropdown was missing in the theme. We have fixed that and uploaded the changes on our server. In order to integrate it just go to My Downloads and download the theme again.

Then replace the following two files with the one from the latest downloaded theme.

~/Themes/Fashion/Views/Shared/Header.cshtml
~/Themes/Fashion/Content/CSS/Fashion.css

After you have replaced the files, open your site in a web browser and click Ctrl+F5 in order to clear your browser's cache.

If the problem still occurs please let us know!

Best Regards!

Bugs
11 years ago

manager wrote:
This is what is the situation?The left and the right of equal

http://www.imachining.co.kr/Content/Images/uploaded/bug.jpg


Hi,

The skin you are trying to use is developed for 3, 4 or 5 items horizontally and not for one item. But you can fix the margin that is left above the carousel by editing the css used(depending on the skin being selected) by adding margin-top:0; to the .carousel_holder h2 css class.

Hope that helps!

11 years ago

Hi tbazick,

We have fixed and uploaded the styles and the images for the ratings. In order to integrate the fix you should download the theme again and do the following:

1. Copy the following two images from the package to your nopCommerce installation:

~/Themes/Electronics/Content/images/star-x-active.gif ... and
~/Themes/Electronics/Content/images/star-x-inactive.gif

2. Add the following css styles to your ~/Themes/Electronics/Content/css/styles.css

.product-review-list .product-review-item .rating
{
    float: right;
    height: 13px;
    width: 55px;
    background: url(images/star-x-inactive.gif) 0 0 repeat-x;
}

.product-review-list .product-review-item .rating div
{
    height: 12px;
    background: url(images/star-x-active.gif) 0 0 repeat-x;
}


You should now be able to see the ratings after restarting the browser by clicking Ctrl + F5 in order to clear your browser's cache.

Please let us know if the problems still occurs!

Bugs
11 years ago

manager wrote:


Hi,

Thank you for reporting this. Please edit your ~/Themes/Electronics/Content/styles.css file and update the following as shown below:

.page-title .link-rss
{
        float:right;
  width: 14px;
  height: 14px;
  background: url('images/icon_rss.gif') no-repeat;
  margin: 14px 0 0;
        text-indent:-9999px;
}

The lines in bold are the ones that should be edited or added.

Thanks!

11 years ago

Hi Mark,

Thanks for letting us know for the problems you have!

The first one you have experienced is due to incorrect upgrade. I assume you have not deleted the old ~/Themes/ShopAll folder as it is stated in the Readme.txt file for upgrading to nopCommerce 2.7. That is why you have this problem with the CategoryNavigation.cshtml view - you are trying to use the old view. In version 2.7 there is no CategoryNavigation.cshtml view in the theme.

As to the second error we have fixed it already.

So i suggest that you download the theme again from your My Downloads section. Delete the whole ~/Themes/ShopAll folder from your current site and then copy the new one. Thus views that are no longer overridden in the theme will be deleted as well.

This applies for the plugins as well. When doing an upgrade everything should be deleted from the old installation of nopCommerce(except the Settings.txt, InstalledPlugins.txt and images if they are stored on the file system) and then the new ones should be copied.

Hope that helps!

If you need any further assistance please let us know!

Thanks!

11 years ago

Hi embryo,

There is no particular reason for the name of the class. I suppose that due to the fact that some of the view have been started from scratch and that is why the css class is different than the default one. I am not sure how this can be a problem as the views are open to modification and the css file as well, but we have changed the class in the views and in the styles.css file in the latest version 2.7.

So now if you download the theme again you should see the new changes.

Hope that helps!

11 years ago

TWatson wrote:
How do I get the black navigation bar at the top above the light colored content area? And/OR narrow the blue space at the top.

As in the demo.


Hi TWatson,

See this post where you have asked the same question.

Best Regards,
Nop-Templates Support Team

11 years ago

TWatson wrote:
How do I get the black navigation bar at the top above the light colored content area?


The black navigation bar is not part of the theme. It is added on purpose on our Demo site only.

TWatson wrote:


OR narrow the blue space at the top.


You need to edit the css styles of the theme.
Edit this file Themes\nopClassic\Content\styles.css
By changing the margin from 80px to 40px for example.
Now

.master-wrapper-page {
margin: 80px auto 100px;

Change:

.master-wrapper-page {
margin: 40px auto 100px;

TWatson wrote:

Also: It seems the site is loading very very slow????

And it is a new site, without products added yet. I added the nop classic theme and 1 slider only. http://shippersmall265.com.mytempweb.com


At the time of writing your site seems to be loading just fine.
Please note that the site performance greatly depends on your hosting provider.
It is definitely not from the nopClassic theme, which is basically only css changes to the default nopCommerce.

TWatson wrote:

And; why is there a line under my logo at the top left? It isnt in the png? I made it the same size as the other pic that was there.


We don't see any line under your logo.

Hope this helps!