Close

Profile: Support

Avatar

User posts

Bugs
12 years ago

MattyLB wrote:
Product Ribbons all show centered - no matter the Position chosen - on both Small & Big product pictures.


Hi Matt,

Thank you fro your observations. We will fix it asap and will let you know!

Thanks again!

Bugs
12 years ago

Hi Shawn,

I tested this scenario and the logo goes smaller and smaller on smaller devices. So there should be anything else that prevents the logo to go smaller.

If you can send an email to our support with admin credentials and url of your site, we will be able to investigate what is going wrong and fix it.

Looking forward to your reply!

Bugs
12 years ago

MattyLB wrote:
alternative payment method (paypal, google, etc) button does not show below the checkout button on any of the views. :)


Hi Matt,

The alternative payment methods are displayed below the cross sells by default in nopCommerce. We will change this and will let you know once is done.

Thanks!

12 years ago

Hi Matt,

Thank you for your suggestion. It is really a good idea. The only issue I see is that on catalog pages(category, manufacturer) there is no wishlist button present, so we will need to add it as well. It is not a matter of styling it similar to the add to cart button. The design will have to change, because the price is shown near the add to cart button, so adding a wishlist button instead will change the design.

We will consider implementing this functionality for adding a wishlist button on catalog pages.

Thank you for your suggestion!

Bugs
12 years ago

MattyLB wrote:
share button space on 480.css & 768.css is too narrow. changed mine to 237px and it seems to work fine. :)

is there an easy way to move the wishlist button down next to the cart/buy now button?


Hi Matt,

The product share button space is reserved for a share button with size 16x16, while you have updated your to be bigger with size 32x32. It really looks nice and you have correctly increased the reserved space about it.

If you want to move the wishlist button down to the buy now button, you will need to edit the Themes/Alicante/Views/Catalog/ProductTemplate.Simple.cshtml view and move the @Html.Partial("_ProductAddToWishlistButton", Model.AddToCart) call to the  @Html.Partial("_AddToCart", Model.AddToCart, dataDictAddToCart) call. But you may need some styling to adjust the button as you wish to look like.

Let me tell you about one of our latest features. Now you can write your own custom css in the administration of the plugin for the theme, rather than editing manually the styles.css file. I think thus is much more easy for our customers. So if you need to add some css for the new position of the wish list button, you can do it via the administration.
                            
Hope that helps!

12 years ago

Hi DKL73,

I am not sure I quite understand you. Can you please be a little more specific. Which button exactly do you have in mind - the buy button on category page, on product page, on quick view window, .. ? What do you want to happen when the button is clicked. For example when the Buy Now button on the category page is clicked or the Buy Now button on product page.

Looking forward to your reply!

12 years ago

Hi WEBWINKELADVISEUR,

There is a category setting for the Display Per Page options. You will need to go through all your categories and change this setting to whatever you want. You can have a look at the following video for "How to set the "view per page" number of products".

Hope that helps!

12 years ago

Hi LFTALERO,

This is an interesting idea. I suppose there are a lot of ways you can do that.
One place where you can place the new functionality might be to place it in the Themes/Alfresco/Content/Scripts/Alfresco.js file, but you should be careful in a future upgrade to merge this change to the new version of the theme. Alternatively you can create your own separate js file, called MyCustomScript.js for example and include it in the Themes/Alfresco/Views/Shared/Head.cshtml file just as the Alfresco.js file is included. Thus your functionality will be separate and in a future upgrade you would need just to copy this file and include it in the new version of the theme.

As to the actual functionality you can implemented it for example on a page load a java script can change the background-image property of the body element. You can have a logic that pics a number from 1 to n and sets the background-image property of the body to be background-n.jpg for example. You can place these images in a known folder, so that you can guarantee that the image will be always available on your server. Something like this:


$(document).ready(function () {
    var n = {your_logic_for_generating_a_random_number};
    var backgroundImageFileName = 'url(/Themes/Alfresco/Content/{My_Images_Folder_Name}/' + 'BackgroundImage_' + n + ')';

    $('body').css('background-image', backgroundImageFileName)

});

where
{your_logic_for_generating_a_random_number}; is a js function which will generate a random number form 1 to n;
{My_Images_Folder_Name} is a folder created in Themes/Alfresco/Content folder. There you can place all your images that will be used as background images. All background images should be with names "BackgroundImage_1", "BackgroundImage_2", ... , "BackgroundImage_n".

Hope that helps!


Should you need any further help, please do not hesitate to contact us again!

12 years ago

Hi MATTYLB,

First let me thank you for your proposal. I agree that the feature with the shopping basket will be really very helpful and will be a great feature to our responsive themes. We will implement it for sure, just cannot commit to a deadline for this. As nopCommerce 3.2 is going to be out till the end of the year, we will do our best to have it implemented by then. You can also propose it for voting in our user voice portal so that other customers can vote for it too.

We are also thinking of implementing a theme roller for the Jewelry theme, but it can be a little  tricky as the theme has its unique design and might be not as straightforward as we think. We will let you know once it is decided.


Thanks again for the feedback!

Bugs
12 years ago

Hi MATTYLB,

Thank you for your feedback. We have fixed that and uploaded the fix on our site. You can either download the theme again and replace the Themes/Jewelry/Content/css/styles.css file with the one from the package or just edit it in a text editor as shown below:

line 140:

.category-description p,
.manufacturer-description p,
.full-description p,
.topic-html-content p,
.topic-page p,
.post-body p,
.news-body p
{
  margin: 10px 0;
}

The line in bold is the added selector that needs to present.

Hope that helps!