Close

Profile: hristian.dimov

Avatar

User posts

8 years ago

tyebeach wrote:
Hello I have a product that is named "50 Family Reunion Shirts." I would like my customers to be able to order as many of a certain color and size as they need and also have a way of validating that a total of 50 shirts were selected.

I would like for the page to function as follows:

Customer has a choice of shirt color (1,2,3,4...etc)
If the customer chooses 1, then 1 dropdown box will appear for color choice, if they pick 2, then 2 boxes will appear...etc

For each color chosen there needs to be size and quantity relating to the choice of color.

Is this possible?


Hi,

there is no such functionality in nopCommerce that will allow you to accomplish this. It will require a lot of customization in order to achieve it.

I suggest you ask in the nopCommerce forums as there might be someone who already did something like this.

Hope this helps!

8 years ago

mcuria wrote:
Would like the replace the Coordinates column in the admin Store Locator list (/admin/StoreLocatorAdmin/List) with Street Address.  This would make it easier for admins to select the correct store to edit.  Is this possible with this plugin?  Can it be accomplished programatically?


Hi,

Unfortunately, this is not possible with the current version of the plugin.

Hope this helps!

Bugs
8 years ago

aresk wrote:
Hi, our company is using version 3.7 for one of our websites and the custom head styles in the theme settings don't apply anymore, they're nowhere to be found when checking the page source with developer tools.

I'd just like to know the solution if this is a known bug and if not at least have some hint of where to look to solve it.

Thanks


Hi,

That's really weird. Could you please submit a ticket providing admin credentials and a link to your site so that we can check what might be wrong?

Looking forward to your reply!

Bugs
8 years ago

n812F wrote:
After updating my Element theme to 3.9.137.23544 I get an error from AjaxFilters when using the price range slider.

System.Data.SqlClient.SqlException (0x80131904): Invalid column name 'SpecialPrice'. Invalid column name 'SpecialPriceStartDateTimeUtc'... and so on


URL <store>/getfilteredproducts

Afaik these columns have been dropped with nopCommerce 3.9


Hi,

I searched through all of the code in the Ajax Filters plugins and there is no SpecialPrice left in the code anywhere. Are you sure that you have updated the plugins properly - deleted the old and uploaded the new ones?

Also, you can try to clear the Temporary ASP.NET files to make sure that the .dll files aren't loaded from there.

Hope this helps!

jirwin wrote:
Hello,
I was hoping you could help me with an issue I'm having. This isn't an issue with 7spikes code, per se, but the Nop Element theme is indirectly causing an issue that I'm hoping you have encountered.

I wrote a plugin and am overriding a partial view (_OrderDetails.Shipping). Note: this partial view resides in the admin portion of the site, and is not accessed from Nop.Web. I've taken the standard steps of adding a custom view engine and injected it so that it is the first ViewEngine that MVC finds. When I run this without the 7spikes Element/Code/etc. plugins installed, I see the correct content, for example:

http://imgur.com/a/n1zkU

However, when I install the Element theme (and accompanying 7spikes plugins) I see the original partial view without my changes. With the help of Glimpse I can see the View location is being provided by the ViewEngine7Spikes view engine, and not my own:

http://imgur.com/a/js1tZ

Removing these plugins results in me seeing my partial view again. Since the Element theme does not alter the admin site in any way, I'm wondering if it is possible to create exceptions so that the 7spikes ViewEngine does not intercept admin controller and partial view requests. I'm sure you're well seasoned in doing so, but the following guide outlines the process I followed and can be used to reproduce the issue:

http://alexwolfthoughts.com/overriding-nopcommerce-admin-views-and-partial-views/


Any insight is greatly appreciated,
Thank you


Hi,

you can follow this example - https://www.nop-templates.com/boards/topic/3135/working-with-another-plugin#13316

So, basically, if your ViewEngine is registered at position 0, your views will be always found first before any other view engine.

Hope this helps!

8 years ago

baloghc wrote:
I need help making a modification to the Instant Search plugin.  

The problem is we have the trademark symbol in some of our product names(&#174).  I need to find a way to encode this in the InstantSearch.cshtml view.  

I need to modify this line...
'<div class="title">${ data.Name }</div>' +

but I'm not sure with that kendo code how to do it.  Please advise.

Thanks,
Chris


Hi Chris,

Just replace this:

${ data.Name }

with this:

#= data.Name #

Hope this helps!

chongtto wrote:
I'm using Pavilion theme.
I want to add font-awesome.min.css to Nop.Plugin.Payments.CheckMoneyOrder. So I did:

In Nop.Plugin.Payments.CheckMoneyOrder plugin project, under Views\PaymentInfo.cshtml, I added the file like below.
After that I built and gave a it a run. The css file is not loaded even though the code is executed when I debugged. What am I missing?

PaymentInfo.cshtml:

@{
    Layout = "";
    Html.AddCssFileParts("~/Plugins/Payments.CheckMoneyOrder/Content/font-awesome.min.css");
}

@using Nop.Web.Framework.UI
@model Nop.Plugin.Payments.CheckMoneyOrder.Models.PaymentInfoModel
<table width="100%" cellpadding="0" cellspacing="0">
    <tr>
        <td>
            @Html.Raw(Model.DescriptionText)
        </td>
    </tr>
</table>

Also I already checked that the css file was always copied to deployment dir.


Hi,

I don't think that the problem comes from the theme. You can switch to DefaultClean and check if the result is the same.

My best guess is that as the payment plugins are loaded "dynamically" this means that you cannot use extension methods like "AddCssFileParts". Just try to add the CSS file with the <link> tag e.g.:  <link rel="stylesheet" type="text/css" href="link-to-your-css-file.css">

8 years ago

abc_nopdev wrote:
Hello,

I am using NOP 3.80, Pavilion Theme, Nop Anywhere Sliders.

Is it possible to have the links in the slider to open in a new window?

Thanks!


Hi,

Unfortunately, this is not possible out of the box. You can, however, suggest your idea in our UserVoice portal and if people vote for it, we will implement it.

Hope this helps!

8 years ago

vwaonline wrote:
It would be great if i could add a target to the image in the slider. For example target _blank to my Google+ page.

Kind Regards,

Niels


Hi Niels,

Sorry for the late reply!

Could you please suggest your idea in our UserVoice portal and if people vote for it - we will implement it as soon as possible.
Thanks!

sapphire wrote:
Hello,

We have a blog that is has two different categories.We want to display only posts from one of the categories on the homepage.... is this possible?

I'm guessing that i can just modify the RichBlog.cshtml file but i couldn't find a property on the model to filter by.


Hi,

Unfortunately, this is not possible with the current version of the plugin. You can, however, suggest your idea in our UserVoice portal and if people vote for it, we will implement it.

Hope this helps!