Close

Profile: Support

Avatar

User posts

Bugs
10 years ago

UserThomas wrote:
copying the allure folder over erased all my css changes...


Hi,

If you make any modifications to the theme, you will need to merge them when you update the theme and replace the modified files. If the changes are mainly css and not large ones you can use the administration -> plugins -> nop allure theme -> settings and the Custom Head Styles property. Just have in mind that the text that can be entered there should be no more than 2000 chars. If you make any bigger modifications, it is a good idea to have your own css file, say custom.css and include it in the theme. Thus when updating you will need only to keep and include this file in the updated theme.

Best Regards!

10 years ago

UserThomas wrote:
How do I change the size of the category round pictures on the home page and the sub-category round pictures on the category pages?

I believe I have got this. Please confirm if this is the setting I change:
File: 980.css
.home-page-category-grid .item-box {
        width: 15.33333333333333%;



Hi,

This is partially correct. The categories on the home page and category page are a bit different and that is why there are two separate styles:

.home-page-category-grid .item-box
.category-page .item-box


If you need to change the size of the round pictures just change the width as you have written above for those two styles.

Please have in mind that for the different resolutions the sizes are different and in the different files. For the desktop version the styles are in 980.css file.

Hope that helps!


changing this setting also changes the size of the products being displayed.  this causes formatting and quickview style errors.

.category-page .item-box {
        width: 32.3333333%;
        float: left;

is there anyway to just change the sub-category circles only, like i can on the home page?

Also, as an option, is there anyway to remove the sub-categories from showing up at all?
Clicking "computers" and it shows me all the items under that category, but then on the left navigation, i click on "desktops" and it shows me only desktops.


Hi,

You can use the .sub-category-grid parent class to change the size for the subcategories only. So use the following:

.category-page .sub-category-grid .item-box

If you want to remove the subcategories from showing you will need to add the following css:

.sub-category-grid {display: none;}

You will need to enable the following options so that on a category page products from subcategories are displayed also. The setting can be found in administration -> configuration -> settings -> catalog settings  - the Include products from subcategories: option.

Best Regards!

10 years ago

UserThomas wrote:


Hi,

Can you please send the screenshot and a link to your site to our support email so that we can sort this our quickly!

Best Regards!

i emailed it.


Hi,

You need to just delete the topic title from the administration. The contact us page contains the contact us topic as a block. So it is better not to have a title itself for the topic so that you do not have duplicate titles. Opening the topic as a topic page is not a real case scenario because in the public part all the links for the contact us point to the contact us page and there is no option to open the contact us topic page. So that is why just remove the title for the topic itself.

Best Regards!

10 years ago

UserThomas wrote:
Hi Thomas,

Yes, I was talking about topics and not widgets. Sorry for the typo.

You need to have a ContactUs topic in your administration -> content management -> topics .If it is missing you should create it yourself as it is part of nopCommerce and is not created by any of our plugins. This topic is displayed as a topic block on the Contact Us page. So when you open the Contact Us page this topic is displayed just before the inputs for entering name, email and enquiry.

You can see it here .

Hope that helps!



When I create a Contact Us page it inserts the information I type in onto the contact us form on the website. However, it has two "contact us" titles listed.  One because of the email form (it has contact us written with a pink underline) and a second time below that (contact us written and two thin grey lines on each side).  Then it has the information I enter for the topic page. Then it has the user form.

I think it it combining the topic page I make with a page you have for the form.

In my previous post, the admin site for the topic page contact us is /t/ContactUs , but the link on the website is /Contactus.

I wish I could send a screen shot.


Hi,

Can you please send the screenshot and a link to your site to our support email so that we can sort this our quickly!

Best Regards!

10 years ago

UserThomas wrote:
Regarding the color themes:
I copy pasted the theme colors in the styles.css, renamed it from orange to blue, change the hex colors, but how do I apply it to the site?  The color does not show in the admin side so that I can select it.


Hi Thomas,

You need to open the Themes/Allure/Views/Shared/_Root.Head.cshtml file and edit as shown below:

<body class="color-blue @texture">

Best Regards!

Bugs
10 years ago

europhile wrote:
Hi, great menu (v3.20) - like it! However, if you add a MegaMenuTopic, it displays all the text in the ajax drop-down panel as centred!

This doesn't make sense because the Topic is a content page just like any other Topic, so is highly unlikely to be centred text - it's going to be normal text. In fact, clicking this actual menu button will load that page- so why is the panel displaying it differently to the page? That's why this seems to be a bug / design oversight, and it looks a mess! Thanks, Phil.


Hi Phil,

You can easily remove the centering. Just add the following to your administration -> plugins -> nop motion theme -> settings in the Custom Head Styles:

.topic-wrapper {text-align: left;}

As the topic can be any html I think it will be best if there are no styles applied to the content of this topic in the mega menu.

Hope that helps!

Best Regards!

10 years ago

Hi Thomas,

Yes, I was talking about topics and not widgets. Sorry for the typo.

You need to have a ContactUs topic in your administration -> content management -> topics .If it is missing you should create it yourself as it is part of nopCommerce and is not created by any of our plugins. This topic is displayed as a topic block on the Contact Us page. So when you open the Contact Us page this topic is displayed just before the inputs for entering name, email and enquiry.

You can see it here .

Hope that helps!

Bugs
10 years ago

UserThomas wrote:
I just installed the plug-in this morning on my site and it has the same error as above.  How do I implement the fixes?

Also, on your demo, when you hover over the and the quick-view pops up, it shows the description of the product.  On the demo site that part of the quick-view is clickable and takes the user to the product page, but on my site, that part is not clickable.  the only way to the product site is by clicking on the name of the product.


Hi Thomas,

We have now uploaded the fix on our site and you can download it from your My Downloads section. Please replace the Themes/Allure folder and the Nop Ajax Filter plugins with the ones from the downloaded package in order to integrate the fix.

Please let us know if the issue still exist.

Best Regards!

Bugs
10 years ago

Hi EUROPHILE,

Thank you for your feedback!

We will fix the missing description and sku of the associated products on the grouped product template and will let you know once it is fixed.

As for the product name it is limited by default to one line, but you can easily change it to be two lines for example. Just open the Themes/Motion/Content/Css/styles.css file and edit the following as shown below:

line 1365:

.item-box .product-title {
height: 50px;
}

As a matter of fact we will change it to be two lines by default and will include it with the fix for the sku and description.

Unfortunately sku cannot be shown on a category page because it is missing in the nopCommerce product model for the category page and is something we cannot change without modifying nopCommerce's source.

Hope that helps!

Thanks again for the feedback and we will let you know once the issues with the sku and description are fixed.

10 years ago

UserThomas wrote:
On the demo site, when you click the contact us link on the bottom, you see the email form and a line that says "Put your contact information here. You can edit this in the admin site."  I believe this is a topic page?? However, after I installed the theme, I do not have that line to add my own information.

Please help.


Hi,

There is a topic called "contactus" which you can edit from the administration -> content management -> widgets.

Hope that helps!