News:

You may pay someone to create your store, or you visit our seminar and become a professional yourself with the silver certification

Main Menu

Need path to source checkout button

Started by ioncap, March 17, 2016, 13:52:40 PM

Previous topic - Next topic

ioncap

Hello dear people,

virtuemart: 3.0.13.6
joomla: 3.4.8


I was wondering where i could customize the checkout button on the checkout page since the build-in feature "One page checkout" does not function properly and i already have a fix for this.
If someone can point me in the right direction concerning the source file that would be great!

Thanks for reading my post.

Kind regards,
-Ioncap

jenkinhill

Checkout button template is components/com_virtuemart/views/cart/tmpl/default.php
Also checkout_link_html is defined in components/com_virtuemart/views/cart/view.html.php

Styling is in vm-ltr-site.css as
.vm-button-correct, .vm-button-correct:link, .vm-button-correct:visited {
    background: #0077b3 none repeat scroll 0 0;
    border: 1px solid #00669a;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 12px 3px;
    text-align: center;
    text-decoration: none;
}
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

ioncap

Quote from: jenkinhill on March 17, 2016, 14:58:40 PM
Checkout button template is components/com_virtuemart/views/cart/tmpl/default.php
Also checkout_link_html is defined in components/com_virtuemart/views/cart/view.html.php

Styling is in vm-ltr-site.css as
.vm-button-correct, .vm-button-correct:link, .vm-button-correct:visited {
    background: #0077b3 none repeat scroll 0 0;
    border: 1px solid #00669a;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 12px 3px;
    text-align: center;
    text-decoration: none;
}

Thank you kindly again!