Jump to content

Prestshop 1.5.5 bug list in short


Recommended Posts

Hello, I have face some strange things on prestashop latest release 1.5.5

 

So not sure it is bug or on my shop problem.

 

1. Internet explorer when i click add to cart it show message parging error.

2. If i click comment for product comment , i use productcomment prestashop default module

it show error message product id invalid and title missing and other.

 

I debug on 1.5.4 and saw that when call is send product_id and other information to ajax request but in 1.5.5 nothing post.

 

Do you have any list like kind of problem.

 

I need this as i want to update our popular theme on 1.5.5 almost done , only this issue stack me. As people will think it is our theme problem

 

Can anyone suggest :)

Link to comment
Share on other sites

any chance to test your website? i tested default installation in latest IE and everything works for me well

Hello, Vekia did you test the comment module.

 

I also test on ie when i click is show error but if i click on debug mode and test it show no error. Please test. I am also starting  testing latest prestashop installation few hours.

Link to comment
Share on other sites

Hello, After search the module and fancybox i have found the solution . If you want to correct your productcomments comment module but change this to your module folder.

 

old code 

	$('#submitNewMessage').click(function(e) {
		// Kill default behaviour
		e.preventDefault();

		// Form element
 
		
		url_options = parseInt(productcomments_url_rewrite) ? '?' : '&';
		$.ajax({
			url: productcomments_controller_url + url_options + 'action=add_comment&secure_key=' + secure_key + '&rand=' + new Date().getTime(),
			data: $('#fancybox-content form').serialize(),
			type: 'POST',
			headers: { "cache-control": "no-cache" },

and modified 

data: $('#fancybox-content  form').serialize(),

to

data: $('#new_comment_form form').serialize(),

and it will solve the issue.

 

As fancy box is update on prestashop new version and where there is not form  #fancybox-content 

 

file location is 

 modules\productcomments\js\productcomments.js

to edit this file move all js from

modules\productcomments\js

to

 themes\default\modules\productcomments\js

after that edit the  file

themes\default\modules\productcomments\js\productcomments.js

it will safe and better and solve your issue.

Link to comment
Share on other sites

  • 3 weeks later...

Hello, After search the module and fancybox i have found the solution . If you want to correct your productcomments comment module but change this to your module folder.

 

old code 

	$('#submitNewMessage').click(function(e) {
		// Kill default behaviour
		e.preventDefault();

		// Form element
 
		
		url_options = parseInt(productcomments_url_rewrite) ? '?' : '&';
		$.ajax({
			url: productcomments_controller_url + url_options + 'action=add_comment&secure_key=' + secure_key + '&rand=' + new Date().getTime(),
			data: $('#fancybox-content form').serialize(),
			type: 'POST',
			headers: { "cache-control": "no-cache" },

and modified 

data: $('#fancybox-content  form').serialize(),

to

data: $('#new_comment_form form').serialize(),

and it will solve the issue.

 

As fancy box is update on prestashop new version and where there is not form  #fancybox-content 

 

file location is 

 modules\productcomments\js\productcomments.js

to edit this file move all js from

modules\productcomments\js

to

 themes\default\modules\productcomments\js

after that edit the  file

themes\default\modules\productcomments\js\productcomments.js

it will safe and better and solve your issue.

Hi,

I have done all this settings but still same problem in Internet Explorer and Chrome. Working in Firefox.

You can try on my test store link below.

http://gadgetsduniya.abcz8.com/presta/

 

Regards,

Santosh

Link to comment
Share on other sites

×
×
  • Create New...