News:

Support the VirtueMart project and become a member

Main Menu

[Helped]Help!

Started by Robho, August 30, 2016, 12:32:59 PM

Previous topic - Next topic

Robho

Hi Guys,
Im Rob, running a small webshop in the Netherlands. www.torerohoreca.nl
Everyting went well for some years now, untill yesterday when i was setting up a new home page called www.streeplozeramen.nl. I installed joomla on my new site and wanted to install Virtuemart 3.0.14 so i downloaded this package from the extensions website. Per accident i installed the 3 new packages on my running website www.torerohoreca.nl instead of on my new website streeplozeramen.nl From that time the virtuemart cart layout when you try to check out is messed up on my website www.torerohoreca.nl. It doesnt go in to a frame/module, like the products showing, and the background is black, barely readable text. Does anyone know how to fix this? I already checked most of the settings in virtuemart backend configuration(checkboxes). Btw. I`m using Joomla 3.6.2 and now Virtuemart 3.0.14 PHP 5.3.29 MySQLi 5.5.39.

Thanks A LOT!!!

jenkinhill

#1
Obviously the simple solution is to install your latest backup of the affected site.

As a quick fix the solution given to you before may work:  http://forum.virtuemart.net/index.php?topic=127977.msg439306#msg439306

But as it is an Artisteer template any "normal" solution may not work.  And I see that torerohoreca.nl also uses Crapisteer.
 
You should use at least VirtueMart 3.0.16 with Joomla 3.6.2 or the order emails will not work.  http://dev.virtuemart.net/projects/virtuemart/files
Kelvyn
Lowestoft, Suffolk, UK

Retired from forum life November 2023

Please mention your VirtueMart, Joomla and PHP versions when asking a question in this forum

Robho

Thanks for your quick answer, i know its crapisteer but for me as a simple webshop owner it is acceptable, i get many orders so i`m satisfied. I searched for my Virtuemart Cart Template default.php wich wich i copied  here. In the previous topic on this forum someone gave me this solution:

.cart-view {
  background: none repeat scroll 0 0 #fff;
}

wich i totaly don` understand but somehow i managed it then to fix the same problem as i got now. Only now i`m trying everything to fix it but without succes. Maybe u can give me some help, do i need to put
.cart-view {
background:.......
in the default.php file?

Thanks is great!!!


<?php // no direct access
defined('_JEXEC') or die('Restricted access');

//dump ($cart,'mod cart');
// Ajax is displayed in vm_cart_products
// ALL THE DISPLAY IS Done by Ajax using "hiddencontainer" ?>

<!-- Virtuemart 2 Ajax Card -->
<div class="vmCartModule <?php echo $params->get('moduleclass_sfx'); ?>" id="vmCartModule<?php echo $params->get('moduleid_sfx'); ?>">
<?php
if ($show_product_list) {
   ?>
   <div class="hiddencontainer" style=" display: none; ">
      <div class="vmcontainer">
         <div class="product_row">
            <span class="quantity"></span>&nbsp;x&nbsp;<span class="product_name"></span>

         <?php if ($show_price and $currencyDisplay->_priceConfig['salesPrice'][0]) { ?>
            <div class="subtotal_with_tax" style="float: right;"></div>
         <?php } ?>
         <div class="customProductData"></div><br>
         </div>
      </div>
   </div>
   <div class="vm_cart_products">
      <div class="vmcontainer">

      <?php
         foreach ($data->products as $product){
            ?><div class="product_row">
               <span class="quantity"><?php echo  $product['quantity'] ?></span>&nbsp;x&nbsp;<span class="product_name"><?php echo  $product['product_name'] ?></span>
            <?php if ($show_price and $currencyDisplay->_priceConfig['salesPrice'][0]) { ?>
              <div class="subtotal_with_tax" style="float: right;"><?php echo $product['subtotal_with_tax'] ?></div>
            <?php } ?>
            <?php if ( !empty($product['customProductData']) ) { ?>
               <div class="customProductData"><?php echo $product['customProductData'] ?></div><br>

            <?php } ?>

         </div>
      <?php }
      ?>
      </div>
   </div>
<?php } ?>

   <div class="total" style="float: right;">
      <?php if ($data->totalProduct and $show_price and $currencyDisplay->_priceConfig['salesPrice'][0]) { ?>
      <?php echo $data->billTotal; ?>
      <?php } ?>
   </div>

<div class="total_products"><?php echo  $data->totalProductTxt ?></div>
<div class="show_cart">
   <?php if ($data->totalProduct) echo  $data->cart_show; ?>
</div>
<div style="clear:both;"></div>
   <div class="payments-signin-button" ></div>
<noscript>
<?php echo vmText::_('MOD_VIRTUEMART_CART_AJAX_CART_PLZ_JAVASCRIPT') ?>
</noscript>
</div>

GJC Web Design

Lordy lordy...  you put additional css in what ever css file is present on your site - e.g.  http://www.torerohoreca.nl/templates/torerofinal/css/template.css

but still don't understand why you just don't load a simple template like https://www.olympianthemes.com/virtuemart-templates/horme-free-virtuemart-template.html and all your problems would be 100% easier to solve

GJC Web Design
VirtueMart and Joomla Developers - php developers https://www.gjcwebdesign.com
VM4 AusPost Shipping Plugin - e-go Shipping Plugin - VM4 Postcode Shipping Plugin - Radius Shipping Plugin - VM4 NZ Post Shipping Plugin - AusPost Estimator
Samport Payment Plugin - EcomMerchant Payment Plugin - ccBill payment Plugin
VM2 Product Lock Extension - VM2 Preconfig Adresses Extension - TaxCloud USA Taxes Plugin - Virtuemart  Product Review Component
https://extensions.joomla.org/profile/profile/details/67210
Contact for any VirtueMart or Joomla development & customisation

Robho

#4
I followed your advise and thanks for the downloadlink. I installed the template and adjusted it for so far. I have to say the checkout proces looks much more professional this way. Only the homepage from virtuemart, where you can show your latest products does not suits me very well, because i only have 14 products in my webshop. I`d like to see the products to be arranged, like it is now. Now i made a new module where i created a table with rows. Any tips how to get this more professional looking??