News:

Looking for documentation? Take a look on our wiki

Main Menu

Recent posts

#11
General Questions / Re: Different Product Display ...
Last post by AH - April 12, 2024, 13:28:13 PM
Check your configuration settings in Configuration/shopfront

Maybe it is this :
"Show products of subcategories"

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

#13
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
#14
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
#15
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
#16
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?
#17
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.
#18
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.
#19
Turn off the "Enable Joomla Plugin" option in VirtueMart Configuration under the "Shop" tab and check again.
#20
Same problem

Joomla 5.0.3
php 8.2