News:

You may pay someone to create your store, or you visit our seminar and become a professional yourself with the silver certification

Main Menu

Recent posts

#21
Commercial Jobs / Virtuemart translation issue
Last post by Teejay - December 06, 2025, 15:16:02 PM
Need solution for virtuemart categories language translation issue, our categories menus, will only display in dutch, also product title, also in dutch, started after migration from J4, with VM4.0, we have migrated & upgraded to J5.4.1 with VM4.4.10, problem persist, please contact us, help resolve it
#22
Administration & Configuration / Re: JCE form in /user
Last post by tomrinkes - December 06, 2025, 10:00:21 AM
The shopper fields are like name,adres,phonenumber read?
I can not find any thing like Dynamic_recaptcha.

When I remove JCE the problem disappears
#23
General Questions / Girls In Your City - Anonymous...
Last post by iosman987 - December 06, 2025, 03:10:59 AM
Girls From Your City - No Verify - Anonymous Sex Dating
https://secrelocal.com
 
Girls In Your City - Anonymous Adult Dating - No Verify
#24
Administration & Configuration / How to configure an Email to t...
Last post by JohanJonker - December 05, 2025, 19:15:39 PM
Hello
I have a dutch webshop for musical instruments and found out that when an instrument is not in stock, buyers can click on "inform me". What happens then is that they are added to a list and are maybe automatically informed when the article is in stock again (I did not check that).
But what I want is that when buyers click that button that I receive an email so that I can take contact. How do I configure that?

kind regards,
Johan
#25
Administration & Configuration / Re: JCE form in /user
Last post by iWim - December 05, 2025, 16:55:47 PM
In the text area it says "dynamic_recaptcha_1".

Is that a Shopper Field name in your list?
What is its Field Type?
#26
General Questions / Invalid email address triggers...
Last post by holanpan7 - December 05, 2025, 15:46:03 PM
Hello,

I've encountered an issue with VirtueMart 4.6.0 (build 11214) running on Joomla 5.

When a new customer account is created with an invalid email address, VirtueMart tries to send the registration email.
Since the domain does not exist, PHPMailer returns an SMTP error :
SMTP Error: The following recipients failed: xxx.xx.vom: Requested action not taken: mailbox unavailable invalid DNS MX or A/AAAA resource record 1MT9v5-1vdEna0eaN-00XCDc

The result is a full 500 crash, even though the user account is actually created correctly.

In previous VirtueMart versions, an invalid email would simply display a notice such as SMTP error email invalid not a fatal error and the registration process continued normally.

Is this a known issue with VirtueMart 4.6 on Joomla 5? Is there a workaround?

Thank you for your help!
#27
Administration & Configuration / JCE form in /user
Last post by tomrinkes - December 05, 2025, 13:03:07 PM
Hello,

Their is a JCE form in de user form, how do I remove this?
Thank you for your time and avert

https://www.twr-trading.nl/user.html

Grettings,

Tom Rinkes
VirtueMart 4.6.0 11214
J5.4.1
#28
Coding Central / webp invoice creation fix for ...
Last post by Kuubs - December 04, 2025, 10:31:24 AM
I fixed a bug in the TCPDF image generation when a webp image is used for the images. At this code at line 7127:

//First use of image, get info
$type = strtolower($type);
if ($type == '') {
$type = TCPDF_IMAGES::getImageFileType($file, $imsize);
} elseif ($type == 'jpg') {
$type = 'jpeg';
}

I added this below:

if ($type === 'webp') {
$webp_tmp = K_PATH_CACHE . '__tcpdf_' . $this->file_id . '_webp2png_' . md5($file);

if (!is_file($webp_tmp)) {
// Prefer GD if it supports WebP
if (function_exists('imagecreatefromwebp')) {
$src = @imagecreatefromwebp($file);
if ($src) {
$wpx = imagesx($src);
$hpx = imagesy($src);

// Create truecolor target with alpha
$dst = imagecreatetruecolor($wpx, $hpx);
imagealphablending($dst, false);
imagesavealpha($dst, true);

// Fully transparent background
$transparent = imagecolorallocatealpha($dst, 255, 255, 255, 127);
imagefill($dst, 0, 0, $transparent);

// Copy original WebP onto transparent canvas
imagecopy($dst, $src, 0, 0, 0, 0, $wpx, $hpx);

// Save as PNG (with alpha)
imagepng($dst, $webp_tmp);

imagedestroy($dst);
imagedestroy($src);
}
}

// Fallback: use Imagick if available
if (!is_file($webp_tmp) && extension_loaded('imagick')) {
try {
$img = new Imagick();
$img->readImage($file);
// keep alpha, just change container format
$img->setImageFormat('png');
$img->writeImage($webp_tmp);
$img->destroy();
} catch (Exception $e) {
// If conversion fails, silently fall back to original behavior
}
}
}

if (is_file($webp_tmp)) {
$file   = $webp_tmp;
$type   = 'png';
$imsize = @getimagesize($file);
}
}

And thus the background is transparent and not black anymore.
#29
General Questions / VM for J6
Last post by woodhouse - December 02, 2025, 17:25:43 PM
Hi,
I wonder if there is a schedule for a version of VM compatible with Joomla 6
#30
General Questions / Re: VM error after upgrading t...
Last post by Milbo - December 01, 2025, 21:51:10 PM
Thank you Slavomir. I just noted that this page is quite high listed, here a short summary in english.

The table updater was not executed correctly on your installation. The reason for this is that you are probably not using radical shipment tax. This means mixed calculation with two tax rates and calc id = -1. To do this, the table had to be changed. Just remove the unsigned of virtuemart_calc_id in the table #__virtuemart_order_calc_rules. This is actually done by the table updater. But if you get this message, something went wrong. So just do it manually