News:

Looking for documentation? Take a look on our wiki

Main Menu

Recent posts

#61
Virtuemart Development and bug reports / Re: Search no longer working
Last post by Jumbo! - March 10, 2025, 10:36:07 AM
Quote from: dennisg on March 08, 2025, 10:46:20 AMYes, just bought the Golden license and various bugs are now fixed.

Thanks!

Great. Thank you for the confirmation. 👍
#62
Templating & Layouts / Product details or add to cart...
Last post by jtbworld - March 10, 2025, 05:08:08 AM
I before had add to cart but now product details button.
I must have changed some Config but not sure where.
I see <?php if (VmConfig::get('show_pcustoms', 1) && VmConfig::get('show_prices', 1)) : ?>
Where is show_pcustoms and show_prices set?
#63
You failed the spam check. Please try again!
PLG_RECAPTCHA_ERROR_INCORRECT_CAPTCHA_SOL

I got these questions:
Register seems to not be working on your site and not on the test site I use either. Any ideas?

If I purchase one of your products and it does not work as expected can I get a refund?
I'm in Canada and need to charge domestic tax for both private and corporate customers. For EU customers without VAT number I need to collect tax.

If I don't renew after 12 months can I keep using the product after?
#64
General Questions / VM error after upgrading to 4....
Last post by Slavomir - March 09, 2025, 21:47:30 PM
After upgrading the VM from 4.4.4 to 4.4.6, I get this error. Is there any way I can fix it?

com_virtuemart.log.php:

2025-03-09 20:17:34 ERROR vmError: vmTable store insertObject #__virtuemart_order_calc_rules Out of range value for column 'virtuemart_calc_id' at row 1 INSERT INTO `hfryd_virtuemart_order_calc_rules`
(`virtuemart_calc_id`,`virtuemart_order_id`,`virtuemart_vendor_id`,`calc_rule_name`,`calc_kind`,`calc_amount`,`calc_result`,`calc_value`,`created_on`,`created_by`) VALUES
('-1','13967','0','Ingen','payment','0','0','0','2025-03-09 20:17:34','1611')<pre>#0 /mysite/www/administrator/components/com_virtuemart/helpers/vmtable.php(1349): vmError()
#1 /mysite/www/administrator/components/com_virtuemart/models/orders.php(2321): VmTable->store()
#2 /mysite/www/administrator/components/com_virtuemart/models/orders.php(1708): VirtueMartModelOrders->_createOrderCalcRules()
#3 /mysite/www/components/com_virtuemart/helpers/cart.php(1934): VirtueMartModelOrders->createOrderFromCart()
#4 /mysite/www/components/com_virtuemart/helpers/cart.php(1627): VirtueMartCart->confirmedOrder()
#5 /mysite/www/components/com_virtuemart/controllers/cart.php(111): VirtueMartCart->confirmDone()
#6 /mysite/www/components/com_virtuemart/controllers/cart.php(230): VirtueMartControllerCart->display()
</pre>

Joomla 5.2.4
VM 4.4.6
PHP 8.3.3
DB 8.0.36

Best
Slavomir
#65
I too wonder about how to give shoppers the option to subscribe to a newsletter.
#66
General Questions / Register and Checkout explanat...
Last post by jtbworld - March 09, 2025, 10:55:20 AM
I can't find Register and Checkout on the Checkout Cart documented. When I test to use it it doesn't seem to do anything. Current site: https://jtbworld.com/all-apps-store
What is the purpose of register? I don't see where it asks for username and password to be saved.
#67
Templating & Layouts / Re: Product page fails
Last post by jtbworld - March 09, 2025, 05:33:42 AM
Adding a menu item for a category layout (Top Level Category) seems to solve it.
#68
Templating & Layouts / Product page fails
Last post by jtbworld - March 08, 2025, 18:47:55 PM
When clicking on a product, the url changes to that of the product, but seems to (re)load the product-view page.
See https://jtbworld.com/component/virtuemart/.
Any ideas?
#69
I found an error. in the file customfields.php in administrator\components\com_virtuemart\models\ on line 1758

change

if(!empty($customfield->ordering)){

to

if(isset($customfield->ordering)){

caused by the fact that php empty() also takes zero as empty and each new inserted field has ordering 0 :/
#70
Templating & Layouts / Re: Number of products per row
Last post by jtbworld - March 08, 2025, 12:57:40 PM
Looks like <div class="row gy-4 g-xxl-5"> in \components\com_virtuemart\sublayouts\bs5-products.php is causing this. Maybe a conflict with "row". Changing to <div class="vm-row gy-4 g-xxl-5"> solved it.