Close

Profile: hristian.dimov

Avatar

User posts

houmam wrote:
Hi,

We will start a new project soon and I wonder about the future of this plugin. As we know, AngularJs development cycle reached its end.

https://docs.angularjs.org/misc/version-support-status

So, will the plugin stick with AngularJs for the next 3 year?
Or, is there any plan to re-engineer this plugin (or invent a new one) with another technology?

Best,



Hi houmam,

We don't have plans to rework the plugin anytime soon. This means that the plugin will 'stick' with AngularJs for the time being. If there are some issues that we cannot overcome(fix), then we will move to another technology.

Hope this helps!

5 years ago

tadsolutions wrote:
Hi,
I bought the theme without multidomain license, now I would like to add the multidomain license, is it possible?


Hi,

Yes, just contact our sales department - [email protected] and they will explain you the process.

Hope this helps!

5 years ago

steelgr1 wrote:
Is it possible to show knowledge base in the registered users or in specific user group?






Hi,

we answered you in the ticket, but I'll leave the answer here as well.

Unfortunately, there is no such functionality in the plugin. But you can suggest your idea in our UserVoice portal and if people vote for it, we will implement it.

Hope this helps!

5 years ago

rpgrisen wrote:
Will you be adding Cross Sell as a data source for this plugin any time?


Hi,

Currently, we do not have plans for adding such data source to the plugin. But you can suggest your idea in our UserVoice portal and if more people vote for it, we will implement it.

Hope this helps!

5 years ago

Gandalf wrote:
New user of NOP Templates. Finding the theme that I purchased very nice. I have one problem where I am not sure what I am doing wrong.  I created some grouped products. When selecting a 'Quick View', the result looks very nice.  Options are presented. However, the prices displayed are $0.00.  Going to the specified page presents the correct price.  

Following page contains sample grouped products. Each one shows a price on the main page and the product page. However, the quick view page does not show the price: http://naturalgoodnessllc.com/starwest-botanicals-2

Please let me know what I need to do to make this work right.  Thanks.


Hi Gandalf,

Thank you for reporting this!

We fixed this issue. You can either download and update the theme to the latest version or you can apply the fix manually by replacing a few lines in the Plugins\SevenSpikes.Nop.Plugins.QuickView\Themes\Venture\Views\QuickViewCatalog\_Multi.cshtml file. Just find:

dataDictPrice.TemplateInfo.HtmlFieldPrefix = $"price_{Model.Id}";
@await Html.PartialAsync("_ProductPrice", Model.ProductPrice, dataDictPrice)

and replace it with these lines:

dataDictPrice.TemplateInfo.HtmlFieldPrefix = $"price_{item.Id}";
@await Html.PartialAsync("_ProductPrice", item.ProductPrice, dataDictPrice)

Hope this helps!

5 years ago

usrs wrote:
How do I disable the "Ship to same address" checkbox on checkout? I disabled it in the Admin section, but it is still showing (after clearing my cache.)

Want to ensure any shipping is always done to the Billing Address.


Hi,

The setting you mentioned is not taken into account into the OnePageCheckout plugin. It is working only with the default checkouts.

In the OnePageCheckout plugin, you can either hide it with CSS:

.ship-to-same-address {
    display: none !important;
}

or you can completely remove this code:

<div class="options ship-to-same-address" ng-hide="vm.configData.shipToSameAddressDisabled">
  <input type="checkbox" id="shipToSameAddress" name="shipToSameAddress" ng-model="vm.shipToSameAddress" value="{{vm.shipToSameAddress}}" />
  <label for="shipToSameAddress"> @T("SevenSpikes.RealOnePageCheckout.Public.ShipToSameAddress")</label>
</div>

from the Plugins\SevenSpikes.Nop.Plugins.RealOnePageCheckout\Views\RealOnePageCheckout\BillingAddress.cshtml file.

Hope this helps!

5 years ago

dlencina wrote:
Hi! Thanks for your response.

Is there any possibility to get a custom version of your theme by paying the development in order to support the 3.60 version?


Hi,

you can contact our sales department at [email protected]

Hope this helps!

5 years ago

dlencina wrote:
Hi! I really love this template, but my store is on v3.60 so I am not able to use it :(. I want to know if you plan to support this version in the near future. Keep the good work! Greetings.


Hi,

Unfortunately, we do not have plans to downgrade the theme to such an old version.

Hope this helps!

6 years ago

alistaira wrote:
since the 3.9 update, Subcategory images disappeared from the menu. (when you hover over Categories) Any way we can get them back?


Hi,

Could you please submit a ticket providing admin credentials so that we can check what might be wrong?

Looking forward to your reply!

6 years ago

InkForm wrote:
Is it possible to use the HTML widget to add new <meta> to the head if pointed at the head_html_tag widget zone? I've tried adding this, but it simply renders the information on the page, not in the head as expected/hoped. 


Hi InkForm,

Unfortunately, it is not possible. Html tags are being encoded ( for example ">" character becomes &lt; and so on ) and this is why they are being rendered as a plain text.

Hope this helps!