Close
Avatar

User posts

5 years ago

it must be this one:

//allow HTML body? Full page? - http://www.tinymce.com/wiki.php/Plugin:fullpage
    //false by default
    var enableFullPage = Convert.ToBoolean(ViewData["nop.RichEditor.EnableFullPage"] ?? false);

i tryed to change like this
var enableFullPage = Convert.ToBoolean(ViewData["nop.RichEditor.EnableFullPage"] ?? true);

but it wont make any difference ?

5 years ago

i try to set this tag into the head section, i use "head_html_tag" on one page

<META NAME="ROBOTS" CONTENT="INDEX, NOFOLLOW">

But i dosent work, it will just display the text "<META NAME="ROBOTS" CONTENT="INDEX, NOFOLLOW">
" on top of th page.

Deni wrote:
I would like to remove the "buy button" and "the price" from the products categories and from the featured producte.
I would like to replace it with a "Detail button"

 i cannot find the place in the code where i can change this.


Hi, 

Please go to this file: /Themes/Motion/Views/Shared/_ProductBox.cshtml.

The "add to cart" button is placed in the DIV element with class "buttons". Just find this code:
@if (!Model.ProductPrice.DisableBuyButton)
{
...
}

and comment it. On its place add this code:
<input type="button" onclick="window.location.href = '@Url.RouteUrl("Product", new {Model.SeName})'" class="button-2 product-box-add-to-cart-button" value="Details" />


If you want to hide the prices you can find the DIV element with class "prices" and comment it. Note that this may break the styling of the product box.


I hope this helped !

I would like to remove the "buy button" and "the price" from the products categories and from the featured producte.
I would like to replace it with a "Detail button"

 i cannot find the place in the code where i can change this.

8 years ago

www.thaisilk.dk  is my website

I can see that one of my images http://www.thaisilk.dk/dk/lette-silke-t%C3%B8rkl%C3%A6der
the left side image is displayed in the size 180x264px

The original uploaded images is 218x320.

Maybe this can be an explanation to the problem with image quality.

Peter

8 years ago


- Product thumbnail image size (catalog) is set to  180
- Product detail image size              is set to  370   
- Default image quality (0 - 100)        is set to  100 

I believe that this should be ok.
I dont have  problems with the quality of the other images on the webside.

8 years ago

www.thaisilk.dk

The quality of the images is not as good as the original 
uploaded image.
Also it looks like teh size of the picture are a little different than the original.

It is easy to control by downloading a images from the webside, the i can see that
the downloaded image is better quality than the images on the website.

http://www.thaisilk.dk/dk/lette-silke-t%C3%B8rkl%C3%A6der  is one example.

How to correct this ??

9 years ago

Ok thank you it works now
But i did try many times where it did not work.

9 years ago

hristo wrote:
I would like to remove the box shadow around the
slider. I have tried to edit in the Presentation\Nop.Web\Plugins\SevenSpikes.Nop.Plugins.AnywhereSliders\Themes\DefaultClean\Content\nivo\nivo.css

i can not see any changes in the slider on the pages.

Hi,
the file you are trying to edit is correct (Plugins\SevenSpikes.Nop.Plugins.AnywhereSliders\Themes\DefaultClean\Content\nivo\nivo.css),
check it again and look for this piece of code:

.nivoSlider {
    background: url("loading.gif") no-repeat scroll 50% 50% #fff;
    border-radius: 5px !important;
    box-shadow: 0 1px 5px 0 #4a4a4a;
    margin-bottom: 10px;
    overflow: hidden !important;
    position: relative;
}

... and delete the "box-shadow" line. This will remove the shadow around your main slider.