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

#41
General Questions / Re: Where is the Discount????
Last post by AH - April 12, 2024, 13:01:26 PM
Are you relincensing.

#42
3rd party extension / Re: VP Neoteric - A Stunning ...
Last post by Jumbo! - April 12, 2024, 11:09:28 AM
We have some exciting news to share with you! As a leading software development company specializing in VirtueMart templates and extensions, we are thrilled to offer a limited-time discount on our popular Standard and Gold plans.

We are offering a 20% discount on both our Standard and Gold plans until April 20th, 2024. Take advantage of this opportunity to elevate your e-commerce store with top-quality templates and robust extensions at an unbeatable price.

Learn more - https://www.virtueplanet.com/blog/announcements/limited-offer-april-2024
#43
3rd party extension / Re: Responsive Joomla 5 and J...
Last post by Jumbo! - April 12, 2024, 11:08:14 AM
We have some exciting news to share with you! As a leading software development company specializing in VirtueMart templates and extensions, we are thrilled to offer a limited-time discount on our popular Standard and Gold plans.

We are offering a 20% discount on both our Standard and Gold plans until April 20th, 2024. Take advantage of this opportunity to elevate your e-commerce store with top-quality templates and robust extensions at an unbeatable price.

Learn more - https://www.virtueplanet.com/blog/announcements/limited-offer-april-2024
#44
3rd party extension / Re: One Page Checkout for Virt...
Last post by Jumbo! - April 12, 2024, 11:07:12 AM
We have some exciting news to share with you! As a leading software development company specializing in VirtueMart templates and extensions, we are thrilled to offer a limited-time discount on our popular Standard and Gold plans.

We are offering a 20% discount on both our Standard and Gold plans until April 20th, 2024. Take advantage of this opportunity to elevate your e-commerce store with top-quality templates and robust extensions at an unbeatable price.

Learn more - https://www.virtueplanet.com/blog/announcements/limited-offer-april-2024
#45
Hello,

I'm trying to make a plugin to add some fields to my product. But I'm not sure how to get media field in the following call:

function plgVmOnProductEdit($field, $productId, &$row, &$retValue) {
        if ($field->custom_element != $this->_name) return '';
 
        $html = ''; // Initialize HTML variable
   
       
   
        // Text field
        $html .= '<div>Text Field:</div>';
        $html .= '<textarea name="customfield_params['.$row.'][text_field]" style="width: 100%; height: 100px;">';
        $html .= htmlspecialchars($field->text_field);
        $html .= '</textarea><br/>';
   
        // First HTML editor field
        $editor = JFactory::getEditor();
        $html .= '<div>HTML Field 1:</div>';
        $html .= $editor->display('customfield_params['.$row.'][html_field1]', htmlspecialchars($field->html_field1), '100%', '200', '75', '20', false);
   
        // Media field
        $html .= '<div>Media Field:</div>';
       
        //HOW TO GET A MEDIA FIELD INSERTED HERE??
   
        $retValue .= $html;
        $row++;
        return true;
    }

Does anyone know what to call for this to work?
#46
Open - administrator/components/com_virtuemart/virtuemart.cfg

Add the following line at the end of the file.

debug_mail=1
Save the file.

Go to VirtueMart Configuration and click the save button.

Now, the debug message will include the email debugging information. Report back the same.
#47
Product pricing / Re: Creating a Filter for Disc...
Last post by Jumbo! - April 11, 2024, 17:30:31 PM
I understand that you are looking for specific options in VirtueMart, but unfortunately, the core version does not have those features. However, if you want to create a customised product list with the desired filters, you can develop a custom component to achieve that. Alternatively, if you contact us, we can help you develop a custom component.
#48
Turn off the "Enable Joomla Plugin" option in VirtueMart Configuration under the "Shop" tab and check again.
#49
Same problem

Joomla 5.0.3
php 8.2
#50
Installation, Migration & Upgrade / Re: Error: Call to undefined m...
Last post by Milbo - April 11, 2024, 09:10:33 AM
Hello Carlos,
thank you for the ticket and post, so I can answer here. The root problem is, that the installation processs loaded the old vmConfig without the new function. Doing the update again is exactly the right way to go and is secure.

Why it is not possible to load directly the new config. The problem here are different plugins, which load the config, before the installation is executed. On the other hand that is often our own plugin, which we need to update vm plugins (it loads the vm config for them, haha).
We did not find a proper way to solve this. Usually we try to have such changes only between major versions.