Welcome, Guest
Username: Password: Remember me
Use this Category for your support questions about Virtuemart Template - CleanMart (SKU# FLEX-00015)

TOPIC: Problem with next and prev button in details page

Problem with next and prev button in details page 10 years 1 month ago #9307

When i push next button the web broken in Mario Electrodomesticos

It says to me that i need two files and security problem....


Attachment 4-Imagenesquefaltanyerrordeseguridad.png not found

The topic has been locked.

Problem with next and prev button in details page 10 years 1 month ago #9309

The topic has been locked.

Problem with next and prev button in details page 10 years 1 month ago #9315

I read your post and now the problem with facebook images not appears but the web broken when i push next button in details producto page...The add to cart button change the color and the search text in the top of the web broken and change the aspect...

An error with Content security appears


Attachment 1-Problemadecontentsecurepolicy.png not found




Thanks

Raúl
The topic has been locked.

Problem with next and prev button in details page 10 years 1 month ago #9318

Open this CSS file:
/templates/shoppingbag/css/thirdparty.css

and put !important after each rule you define for FlexibleCSS3ButtonInner and FlexibleCSS3ButtonInner. So, they won't get re-override by flexibleVM2Global.css after AJAX event.

for example, change these lines:
.FlexibleCSS3ButtonInner {
	background: rgb(0,162,223);
	/*background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzhmYzgwMCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM2NjhlMDAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);*/
	background: -moz-linear-gradient(top, rgba(0,162,223,1) 0%, rgb(0,102,163,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0,162,223,1)), color-stop(100%, rgb(0,102,163,1)));
	background: -webkit-linear-gradient(top, rgba(0,162,223,1) 0%, rgb(0,102,163,1) 100%);
	background: -o-linear-gradient(top, rgba(0,162,223,1) 0%, rgb(0,102,163,1) 100%);
	background: -ms-linear-gradient(top, rgba(0,162,223,1) 0%, rgb(0,102,163,1) 100%);
	background: linear-gradient(top, rgba(0,162,223,1) 0%, rgb(0,102,163,1) 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00a2df', endColorstr='#0066A3', GradientType=0 );
}

by this:
.FlexibleCSS3ButtonInner {
	background: rgb(0,162,223) !important;
	/*background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzhmYzgwMCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM2NjhlMDAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+)  !important;*/
	background: -moz-linear-gradient(top, rgba(0,162,223,1) 0%, rgb(0,102,163,1) 100%)  !important;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0,162,223,1)), color-stop(100%, rgb(0,102,163,1)))  !important;
	background: -webkit-linear-gradient(top, rgba(0,162,223,1) 0%, rgb(0,102,163,1) 100%)  !important;
	background: -o-linear-gradient(top, rgba(0,162,223,1) 0%, rgb(0,102,163,1) 100%)  !important;
	background: -ms-linear-gradient(top, rgba(0,162,223,1) 0%, rgb(0,102,163,1) 100%) !important;
	background: linear-gradient(top, rgba(0,162,223,1) 0%, rgb(0,102,163,1) 100%)  !important;
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00a2df', endColorstr='#0066A3', GradientType=0 ) !important;
}


About the security console error, It has nothing to do with us.

Attachment Pasted_Image_3_30_14__8_20_AM.png not found



Regards,
Support
Last Edit: 10 years 1 month ago by Support.
The topic has been locked.

Problem with next and prev button in details page 10 years 1 month ago #9335

Thanks....sorry the colors works fine now and i understand what´s happen with zopim...

But i have the problem...when i push the button next...the web page broken...You can see the details web...broken the css


Attachment Problemabotonnext.png not found



Thank you very much
Last Edit: 10 years 1 month ago by Raúl Ramón Val.
The topic has been locked.

Problem with next and prev button in details page 10 years 1 month ago #9346

Hi,

I have explained this to you. You have a very interesting Joomla Template.
The AJAX loading doesn't work as expected in your website. Instead of loading part of the website, the AJAX loading loads the entire page (this is why the SAME CSS rules, JS files and Inline-CSS lines get re-imported to website) which breaks the layout because re-importing is causing CSS override (no need to mention the extra load, which destroys the user-experience)

You should disable the AJAX loading, for your own good. Indeed; after clicking NEXT - PREV button your website is freezing with Safari browsers. iPad, iPhone and MacBook users are all using Safari Browser, you wouldn't want a website that freeze.

I have explained how to disable the AJAX loading to you in this forum topic:
www.flexiblewebdesign.com/forum-virtuemart-2-template-support/1823-problem-next-button-in-virtuemart#8462

Regards,
Support
Last Edit: 10 years 1 month ago by Support.
The topic has been locked.

Problem with next and prev button in details page 10 years 1 month ago #9358

I update to 1.2 version cleanmart last week. Is it possible that this parameter change when i updated the plugin?

Sorry....

Thank you
The topic has been locked.

Problem with next and prev button in details page 10 years 1 month ago #9378

Hi,

Plugin parameters won't change by itself if you update the plugin. Probably you ENABLED the AJAX loading option by mistake, anyway.

Case solved. topic is closed.

Regards,
Support
The topic has been locked.
Time to create page: 0.093 seconds

MaterialMart

for Virtuemart 3

Google's Material Design has finally arrived to Virtuemart

Virtumart Template - MaterialMart Virtumart Template - CleanMart Virtumart Template - CleanMart Virtumart Template - CleanMart

Fully responsive!

Buy Now   |   Live Demo