Close

Profile: Boyko

Avatar

User posts

joster wrote:
Also...if you will merge the new token into version 3.40, was this new feature added before or after 6/12/2015? That is when my license for customer reminders expired.
The download package that I can download from my account is this:
NopCustomerReminders_3.4.1149.16357

Will I need to renew my license to get it?


Hi Joster,

Unfortunately we will not be able to add this feature in nopCommerce 3.4. There are some technical obstacles that prevent us from doing this.
I would advice you to upgrade to the latest nopCommerce 3.6 version and this way take advantage of all the new features and improvements in our plugins and the nopCommerce platform.

BrickHunters wrote:
Hello,

We have upgraded the website to nopcommerce 3.6 with the most recent plugins. This has not resolved the issue.


Hi BrickHunters,

Please see the reply to your other post as they seem to be related.

BrickHunters wrote:
I had reason to believe that this could be a hosting issue, but it is in fact also occuring on my localhost machine.

These errors only showed up from the moment that Sevenspikes plugins were installed on the website (which is obvious). I will leave them there for you to have a look but will probably uninstall them along with the theme to avoid issues in the future.


Hi BrickHunters,

By looking at the javascript in your store it is not different than the one on our demo store for example.
So there is no good explanation why it doesn't work on your web site only (we have other customers using this theme). Maybe you have made some modifications or it is something else.
The fastest way to investigate and resolve this once and forever is to Submit a ticket providing FTP access to your store, so that we can see the actual files being uploaded on your server and upload unminified versions (if needed) to see if there is any problem in the javascript minification.
All your issues are related to a javascript error that breaks the execution of other plugins javascript (which is why you think they are not working).

9 years ago

eliharel wrote:
Hello 
We have a need to access a custom attribute of a customer and pass it to Salesforce
in the CustomerContactTypeConverter class (in the sevenapikes plugin)

we added a few custom attributes in the following manner through Nop

Menu - Configuration->Setting-->Customer Setting
Customer Form Fields Tab
and than new custom Attribute.

So is there a way to access those attribute and get their value by name ? or any other way ?

hoping for a sample code if possible.

Many thanks 




Hi eliharel,

You can see how nopCommerce persists these custom customer attributes and how they are retrieved. You can check the CustomerController as there is the logic of persisting the custom address attributes.

Here is the code from the CustomerController's Create method:

//custom customer attributes
                var customerAttributes = ParseCustomCustomerAttributes(customer, form);
                _genericAttributeService.SaveAttribute(customer, SystemCustomerAttributeNames.CustomCustomerAttributes, customerAttributes);


The code that retrieves the custom customer attributes can be found in the same controller's PrepareCustomerAttributeModel method.

var selectedCustomerAttributes = customer.GetAttribute<string>(SystemCustomerAttributeNames.CustomCustomerAttributes, _genericAttributeService);


I hope this information is useful!

9 years ago

Rgrant wrote:
I was hoping to style the menu - change colors, fonts sizez, hover colors, etc. there is no css for this and I don't believe this is the right css file for this. I can remove this css file and the menu still functions.


Hi Rgrant,

The Mega Menu picks up some of its styling from the nopCommerce theme styles.
This is done for consistency, so that if you don't want to use the Mega Menu the Main Menu will look the same at least to the top level items. You can easily see which css styles are loaded and from which file in the Chrome Dev Tools.

no images
9 years ago

Rgrant wrote:
That seems odd. I'll add to the Store recommendations section. Not all carts have images. What is the work around? I've seen someone doing a clear 1 pixel graphic to replace your "no image". However, how does the effect the alignment of the product content?

Anyway, can you suggest a work-around. I am not going to load this cart up with a bunch of useless images just so I can get rid of the "no image" which is not acceptable.



Hi Rgrant,

I think there is some misunderstanding here. Our Electronics theme is designed to work for nopCommerce. nopCommerce searches for images for your products/categories etc.
If it doesn't find an image then it loads the default image (which you can change).
It also resizes this image to the media settings sizes being set.
So there is no way to set 1 px images without some code changes in the nopCommerce framework.

9 years ago

Rgrant wrote:
Can the products be turned off from displaying at this level: http://gansinkdigital.com.dock.arvixe.com/cart/poster-graphics

so just the Categories display?


Hi Rgrant,

There is a "Show products from subcategories"setting in the Catalog Settings in the administration.
So if you disable this setting it will show only products from the current category. If you don't have such products then only the subcategories will be visible but not their products. 

no images
9 years ago

Rgrant wrote:
can the no image graphic be universally turned off or told not to display?


Hi Rgrant,

You can change the default image but you can't turn it off or hide it.

9 years ago

dtkubal wrote:
Hi, Do you provide Source Code ? We are planning to purchase this plugin for one of our client. We would like to extend some part of the plugin. Their are some plugin which do that with some additional cost e.g Nop SalesForce.


Hi dtkubal,

You have asked the same questions here but for another plugin.
Please don't duplicate posts. We will reply to the first one.

9 years ago

dtkubal wrote:
Hi, Do you provide Source Code ? We are planning to purchase this plugin for one of our client. We would like to extend some part of the plugin.



Hi dtkubal,

What parts of the plugin do you want to extend?
You get all the code of the plugin i.e Razor view (.cshtml) files, css and javascript.
We don't provide only the C# backend code of the plugin, which you shouldn't change anyway unless you want to completely change the behavior of the plugin.