Close

Profile: Support

Avatar

User posts

10 years ago

[email protected] wrote:
Hi Nop-Templates

How can I add the ratings to the Jcarousel?

Currently the ratings is displaying on the featured products but not the items in the Jcarousel

Thanks

Philip


Hi Philip,

Unfortunately there is no functionality in the carousel for this, but I think it is really a good suggestions, so we will consider implementing it. Would you mind suggesting it in our user voice portal so that others can vote for it too.

Best Regards!

Bugs
10 years ago

zjerry wrote:
javascript:OpenWindow... effect is totally out of sync with this otherwise beautiful theme

I'm not a big fan of fancy box, for theme consistency sake it would be nicer to use same modal dialogs that you use elsewhere in the theme. (e.g. in the Quick View).

Do you plan to embed those changes in NeoFashion ?




Hi zherry,

I agree that the fancy box looks much nicer. We have decided to embed it back so that the theme looks nice. We will let you know once is done!

Thanks for the feedback!

Bugs
10 years ago

NaNetGestao wrote:
Hi,

I installed a paid version in my site on localhost and everything works fine.

But in trial version when mouse hover in a product, sometimes, he dont show button. it's necessary refresh page site for plugin works fine.
It's happening in FF, chrome, opera, IE 10 and Safari.
I check administration -> system -> log and no errors.
You try three or four times clicking in different products and you will see the problem.


Hi NaNetGestao,

If you use the trial version of the Nop Quick View plugin, the behavior you have described is correct. That is why it is trial. I think you should have received an error that you are running a trial version. We will also double check if this error message is visible enough.

With the paid version you should have no problems.

Thanks for the feedback!

Bugs
10 years ago

 if (Model.TermsOfServiceOnShoppingCartPage)
                    {
                    <div id="terms-of-service-warning-box" title="@T("Checkout.TermsOfService")" style="display:none;">
                        <p>@T("Checkout.TermsOfService.PleaseAccept")</p>
                    </div>
                    <div class="terms-of-service">
                        <input id="termsofservice" type="checkbox" name="termsofservice" />
                        @T("Checkout.TermsOfService.IAccept")
                        @*uncomment below to how simple pop-up*@ @*<span class="read" onclick="javascript:OpenWindow('@Url.RouteUrl("TopicPopup", new { SystemName = "conditionsofUse" })', 450, 500, true)">@T("Checkout.TermsOfService.Read")</span>*@
                        @*use fancybox to how nice pop-up*@
                        @{
                        Html.AddScriptParts("~/Scripts/jquery.fancybox-1.3.4.pack.js");
                        Html.AddCssFileParts("~/Content/fancybox/jquery.fancybox-1.3.4.css");
                        }
                        <a class="read" href='@Url.RouteUrl("TopicPopup", new { SystemName = "conditionsofUse" })'>@T("Checkout.TermsOfService.Read")</a>
                        <script type="text/javascript">
                            $(".terms-of-service .read").fancybox({
                                'speedIn': 600,
                                'speedOut': 200,
                                'width': 450,
                                'height': 500,
                                'type': 'iframe',
                                'centerOnScroll': true
                            });
                        </script>
                    </div>
                    }
                    <div class="checkout-buttons">
                        @if (String.IsNullOrEmpty(Model.MinOrderSubtotalWarning))
                        {
                            <script type="text/javascript">
                                $(document).ready(function () {
                                    $('#checkout').click(function () {
                                        //terms of services
                                        var termOfServiceOk = true;
                                        @if (Model.TermsOfServiceEnabled)
                                        {
                                                <text>
                                        if (!$('#termsofservice').is(':checked')) {
                                            $("#terms-of-service-warning-box").dialog();
                                            termOfServiceOk = false;
                                        }
                                        else {
                                            termOfServiceOk = true;
                                        }
                                                </text>
                                        }
                                        return termOfServiceOk;
                                    });
                                });
                            </script>
                            <button type="submit" id="checkout" name="checkout" value="checkout" class="button-1 checkout-button">
                                <span>@T("Checkout.Button")</span>
                            </button>
                        }
                    </div>


A similar change should be done in the Checkout/Confirm.cshtml view.

Hope that helps!

Bugs
10 years ago

zjerry wrote:
nopCommerce 3.2

If the "Terms of service (shopping cart page)" or "Terms of service (confirm order page)" option is in use, then if user clicks link to read terms the ugly new browser windows appears.

In 3.1 we have an elegant modal dialog displayed for that purpose.

Can you fix this?


Hi zjerry,

This is not a bug, but rather a change in nopCommerce. While in nop 3.1 a fancybox jquery plugin was used to show the TermsOfService topic, in nop 3.2 a new browser dialog is used for that purpose and as you know a browser dialog cannot be styled.

If you want to preserve the old fancybox dialog you will have to edit the Themes/NeoFashion/Views/ShoppingCart/OrderSummary.cshtml view as shown below:

Replace the


if (Model.TermsOfServiceOnShoppingCartPage)
                    {
                        <div id="terms-of-service-warning-box" title="@T("Checkout.TermsOfService")" style="display:none;">
                            <p>@T("Checkout.TermsOfService.PleaseAccept")</p>
                        </div>
                        <div class="terms-of-service">
                            <input id="termsofservice" type="checkbox" name="termsofservice" />
                            @T("Checkout.TermsOfService.IAccept")
                            <span class="read" onclick="javascript:OpenWindow('@Url.RouteUrl("TopicPopup", new { SystemName = "conditionsofUse" })', 450, 500, true)">@T("Checkout.TermsOfService.Read")</span>
                        </div>
                    }
                    <div class="checkout-buttons">
                        @if (String.IsNullOrEmpty(Model.MinOrderSubtotalWarning))
                        {
                            <script type="text/javascript">
                                $(document).ready(function () {
                                    $('#checkout').click(function () {
                                        //terms of service
                                        var termOfServiceOk = true;
                                        if ($('#termsofservice').length > 0) {
                                            //terms of service element exists
                                            if (!$('#termsofservice').is(':checked')) {
                                                $("#terms-of-service-warning-box").dialog();
                                                termOfServiceOk = false;
                                            } else {
                                                termOfServiceOk = true;
                                            }
                                        }
                                        return termOfServiceOk;
                                    });
                                });
                            </script>
                            <button type="submit" id="checkout" name="checkout" value="checkout" class="button-1 checkout-button">
                                <span>@T("Checkout.Button")</span>
                            </button>
                        }
                    </div>


with the following:

10 years ago

[email protected] wrote:
Hi Nop-Templates

How can I get the "ratings" to display in the bestsellers on the homepage?

I am using the Nop3.20 Jewelry template

thanks


Hi Philip,

This had been fixed and uploaded on our website.

In order to integrate the fix just download the theme again and replace the Themes/Jewelry/Content/css/styles.css file with the one from the package. You can also merge the change manually by editing the file as shown below:

.product-grid .item-box {
- height: 400px;
+ height: 420px;
}
-.product-grid .product-rating-box,
-.product-list .product-rating-box {
- display: none;
-}


The lines with "-" are the ones that should be deleted and the ones with "+" are the ones that should be added.

Best Regards!

p.s. please do not duplicate forum posts with emails sent

AjaxFilters
10 years ago

violabg wrote:
when you click on a filter nothing happen, inspecting the code I see a javascript error:
FiltersManager its not defined.
I'm referring to internet explorer 8


Hi,

Thank you for the fast response!

Can you double check whether a NopFilters.min.js file is included. If you try with another browser I suppose everything is working?

Thanks again!

AjaxFilters
10 years ago

violabg wrote:
AjaxFilters don't work on i.e. 8


Hi,

Can you be a little more specific. Do you receive any errors and if yes what are these.

We will appreciate any details so that we can have a closer look at them.

Thanks in advance!

10 years ago

glhays wrote:
Update:
Just found & would like to post for others.
In All settings Advanced of Admin site, locate the "beautythemesettings.facebookurl" setting name and enter your url.
Kind Regards to all.


Hi,

Just to further explain that this setting can be found in Administration -> Plugins -> Nop Beauty Theme -> Settings where there is a textbox with all social links that can be used in the theme. It is not necessary to set this setting via the All Settings menu.

Best Regards!

10 years ago

joster wrote:
Howdy,
In our user testing we're enjoying the layout of the Alfresco theme.  One request that keeps coming up involves the location of the search bar on the index page vs all other pages.  On the index page the search bar is in the upper left corner but it moves to the lower rightt hand side of the top border on all other pages.  i understand that if it were to go in the top border tool bar, more than 4 task buttons would push the search bar off of the page.
Any way we can orient the search bar on the index page to a location lower right so that the search bar is found consistently in one spot on all pages?
Thanks.
Jeff


Hi Jeff,

The search box is placed in the left corner by design when having a slider on the home page, because if it was on the right an empty space will occur on the left corner. If there is no slider on the home page, the search box will be placed on the right below the currency selector. You can achieve a similar look if you have a slider as well, but I am not sure it will look fine, as an empty space will be left on the left corner. But if you want to achieve this, you should change some styling for the case when you have a slider on the home page. For that purpose you can use the css class of the parent element("home-page-header main-slider-header") so that no other styling is broken for the cases when having no slider on the home page.

Hope that helps!

Please let us know if you need any further help!