Close

Profile: Boyko

Avatar

User posts

Bugs
10 years ago

IvanSlater wrote:
Hi there!

I'm using the Abandoned Cart with token ShoppingCart.ProductsWithPictures. Everything goes fine, except that we have a CDN plugin installed and it replaces all images URL to (//cdn...) making broken links (e-mail providers dont translate the // to http protocol) so, I have to ask you guys to verify all image urls (after you call geturl from product image service) and insert http prefix on this case.

Your plugin is great but this "bug" is annoying.

Can you help? 

Version 3.3.974.14305

Thanks!


Hi IvanSlater,

I don't think the plugin needs to make such changes to the urls.
The plugin just uses the IPictureSerice methods to get the picture Urls.
So I think this is something that you need to correct in your implementation of the IPictureService.

joster wrote:

OK, so your company could not even be hired to make the customization because it is too difficult for you?


Hi Joster,

I don't think you got the point here.
The changes are not difficult they are just not possible to be done in 3.4.

joster wrote:
I mean...if you are just looking for a way to get paid for adding the feature into an older version, I will pay for the renewal to the license...but I have no intention of upgrading my nopcommerce version number.


Hi Joster,

It is not a matter of paying for it. If we were able to do it we would but as I said it there is a technical problem in nop 3.4 that doesn't allow us to do it there. I don't want to go into technical details as I think you got the point here.

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.

10 years ago

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).

10 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!

10 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
10 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.

10 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.