Good day
I'm working with Joomla! 3.8.12 & VirtueMart 3.4.2
Is there any way to change/ delete or hide the checkout message?
See attached image - my client does not want this info to be shown
Modify the override:
templates/your-template/html/com_virtuemart/cart/orderdone.php (http://templates/your-template/html/com_virtuemart/cart/orderdone.php)
Jörgen @ Kreativ Fotografi
The PHP File looks like this
<?php
/**
* ---------------------------------------------------------------------------------------
* @package VirtuePlanet Framework for Joomla
* ---------------------------------------------------------------------------------------
* @subpackage VP Merchant Template
* @author Abhishek Das <info@virtueplanet.com>
* @copyright Copyright (C) 2012-2016. VirtuePlanet Services LLP. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
* @link https://www.virtueplanet.com
* ---------------------------------------------------------------------------------------
* HTML : templates/vp_merchant/html/com_virtuemart/cart/order_done.php
* TEMPLATE HTML: templates/vp_merchant/layouts/default/html/com_virtuemart/cart/order_done.php
* ---------------------------------------------------------------------------------------
*/
defined ('_JEXEC') or die('Restricted access');
// Find and load selected template layout
require plgSystemVPFrameworkHelper::getTemplate()->getHTMLLayout(__FILE__);
Not sure how to edit this. Is there a common PHP description/code I can access somewhere?
As GJC already told You, You template is very much custom. the standard description does not apply.
This seems to handle the view:
// Find and load selected template layout
require plgSystemVPFrameworkHelper::getTemplate()->getHTMLLayout(__FILE__);
Sorry I do not know how to proceed, You have to talk to Your template developer about this.
Jörgen @ Kreativ Fotografi
You have to make an override in your template in the folder:
html/plg_system_vponepagecheckout/orderdone.php
You can check the suppport forum of VirtuePlanet too, if you search you will get proper explanation how to do it.
Regards
Stefan
The system of Abhishek still allows normal overrides, just a bit at a different place. yes. But actually I wonder about the reason for this system.
Thanks guys
I really appreciate all your help...
I've been working on this website for close to 6 months now, and finally I can see the light!
At this stage there's just two things that needs to be fixed.
Price on product view to be smaller (It is overpowering the rest of the content) and the checkout message
I have tried .productdetails-view .product-sales-price {
font-size: 18px;
font-weight: bold;
}
but the above code is not working, not sure if the price is called something else in this case?
Please start a new thread.
This can be found with F12 or right click "inspect object" then you can see the actual html/css that is used. You can try:
.productdetails-view .PricesalesPrice {
font-size: 18px;
font-weight: bold;
}
18px is big, what is the size now?
Jörgen @ Kreativ Fotografi