Hi, i think after virtuemart update, template need fix.
i get error:
Call to a member function displayMediaThumb() on null

    Hi forty

    I just tried to install latest version of VM with JA Cagox but did not see that issue, you can share the credentials of your site eg: URL + admin + ftp account so I can check.

    25 days later

    forty

    Thanks for the info, let me check and will get back to you.

    Hi forty

    I updated this file to make it works: templates/ja_cagox/html/com_virtuemart/category/default.php

    Line 103:

    <?php
    	if (!empty($this->products)) {
    	$products = array();
    	$products[0] = $this->products;
    	echo shopFunctionsF::renderVmSubLayout($this->productsLayout,array('products'=>$products,'currency'=>$this->currency,'products_per_row'=>$this->perRow,'showRating'=>$this->showRating));

    change to:

    <?php
    	if (!empty($this->products)) {
    		//revert of the fallback in the view.html.php, will be removed vm3.2
    		if($this->fallback){
    			$p = $this->products;
    			$this->products = array();
    			$this->products[0] = $p;
    			vmdebug('Refallback');
    		}
    
    	echo shopFunctionsF::renderVmSubLayout($this->productsLayout,array('products'=>$this->products,'currency'=>$this->currency,'products_per_row'=>$this->perRow,'showRating'=>$this->showRating));

    Ok, thanks, i hope this change will be included to next template update.

      forty

      Sure, the team will update template for this new version of VM.

      Ok. Thank you very much again!

      Write a Reply...
      You need to Login to view replies.