News:

Support the VirtueMart project and become a member

Main Menu

Recent posts

#11
Virtuemart Development and bug reports / Re: pagination not working
Last post by WebStuff - November 22, 2025, 00:02:53 AM
$app = JFactory->getApplication();
$limitStart = $app->input->getInt('limitstart');

Is another possibility
#12
VirtueMart 4.6.4
Joomla 5.4.0

The comments in the files in ../administrator/templates/vmadmin/html/com_virtuemart/orders/ are causing the layout to shift and --> is appearing in the Order Edit page in the backend.

There are numerous comments and sections beginning <!-- and ending in -->
If these are broken by <?php sections then the problem occurs.
Either removing the comments and or converting them to PHP comments sorts this out and the sections/boxes line-up "properly" on Desktop and Mobile versions.

I'm using Chrome but this seems to affect Firefox as well, I've not tested on any other browsers

Small annoyance but hopefully this will help someone.
#13
Installation, Migration & Upgrade / Re: VM 4.6.4 unavailable non m...
Last post by Renata - November 21, 2025, 15:31:44 PM
Please does anyone has an answer?

Thanks!

Kind regards
Renata
#14
3rd party extension / Re: Multipurpose Responsive Vi...
Last post by Jumbo! - November 21, 2025, 08:01:56 AM
VP Smart v3.21 released. This update fixes a few critical compatibility issues with VirtueMart 4.6.0+ and Joomla 5.4.0+. It also contains a few bug fixes.

We recommend that all existing users install the update as soon as possible.

Please refer to the changelog for more information: https://www.virtueplanet.com/extensions/vp-one-page-checkout.
#15
Virtuemart Development and bug reports / Re: pagination not working
Last post by Jumbo! - November 20, 2025, 21:19:04 PM
Open - components/com_virtuemart/router.php

Find the following codes between lines 495 and 499:

                $limitstart = intval($limitstart);

                $limit = intval($limit);

                if ( $limitstart>0 ) {

Replace the above with:

                $rawLimitstart = $limitstart;
                $limitstart = intval($limitstart);
                $limit = intval($limit);

                if ( $limitstart >= 0 && $rawLimitstart !== null ) {

This should resolve the issue. :)
#16
Virtuemart Development and bug reports / Re: pagination not working
Last post by macigatto - November 20, 2025, 19:29:30 PM
Im facing the same problem after upgrading to VM 4.6.4 from lower.

Did u resolved?
Thanks
#17
General Questions / Re: Error 1064 when saving aft...
Last post by ThijsE6 - November 19, 2025, 13:25:34 PM
I solved this issue at my website. It happened because i was using litespeed cache. Now i am using systemcache and it works perfect for me.
#18
General Questions / ZUGFeRD?
Last post by vmfyelloq19 - November 19, 2025, 12:41:07 PM
Hi everyone,

I wonder if virtuemart is able to create ZUGFeRD PDF/XML invoices or if there is a roadmap for it?
Asking because it will mandatory for B2B shortly (and is a good idea anyway ;-)

Regards
#19
Installation, Migration & Upgrade / VM 4.6.4 unavailable non membe...
Last post by Renata - November 16, 2025, 17:57:19 PM
Goed afternoon,

The title sais it all: i can't update to Joomla 5.4.0.
I have installed the latest version available for non-members: VirtueMart 4.6.0. But i get the error message that i need at least the VM version 4.6.4 which is compatible with Joomla 5.4.0

When will the latest ompatible Virtumart version be available?

I hope to hear from you soon.

Kind regards
Renata Gravendijk
#20
General Questions / Re: Multi-upload does not acce...
Last post by andrai2 - November 15, 2025, 20:51:52 PM
Solved.
Thank you.