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
Now I understand the problem, and everything makes sense.

Additionally, thanks to the explanations, I now know why initially all the update tests worked fine and then, without explanation, started to fail.

When the update was working well, I had disabled the "System - VP Conversion Tracking" Plugin from VirtuePlanet. Surely, @Jumbo! could find the explanation 😉

Although it's safe to repeat the update to ensure completion, I think I'll temporarily deactivate this plugin.

Thank you.
#22
General Questions / Re: vm-search rel="canonical"
Last post by AH - April 12, 2024, 13:34:19 PM
No idea - but that canonical would surely not matter - surely google is NOT using search as a link generator
#23
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"

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

#25
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
#26
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
#27
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
#28
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?
#29
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.
#30
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.