News:

Support the VirtueMart project and become a member

Main Menu

Checkout message

Started by hendrikdebeer, October 23, 2018, 08:33:42 AM

Previous topic - Next topic

hendrikdebeer

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

Jörgen

Joomla 3.9.18
Virtuemart 3.4.x
Olympiantheme Hera (customized)
This reflects current status when viewing old post.

hendrikdebeer

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__);



hendrikdebeer

Not sure how to edit this. Is there a common PHP description/code I can access somewhere?

Jörgen

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
Joomla 3.9.18
Virtuemart 3.4.x
Olympiantheme Hera (customized)
This reflects current status when viewing old post.

StefanSTS

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
--
Stefan Schumacher
www.jooglies.com - VirtueMart Invoice Layouts

Please use only stable versions with even numbers for your live shop! Use Alpha versions only if you know what risk you are taking.

Milbo

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.
Should I fix your bug, please support the VirtueMart project and become a member
______________________________________
Extensions approved by the core team: http://extensions.virtuemart.net/

hendrikdebeer

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?

Jörgen

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

Joomla 3.9.18
Virtuemart 3.4.x
Olympiantheme Hera (customized)
This reflects current status when viewing old post.