On another note, been trying to take out the brackets from the shipping module, I managed to do it in normal checkout, but can't seem to figure it out in (one checkout mode), as when I take out the ( checkout process goes blank?! All I did was just Remove the parens themselves from between the apostrophes from the codes below:
This is the file I deleted just the parens from (includes/modules/pages/checkout_one/header_php.php) on two separate lines.
Code:
if ($_SESSION['shipping']['cost'] == $method['cost'] && $_SESSION['shipping']['title'] == ($val['module'] . ' (' . $method['title'] . ')')) {
Code:
'title' => $quotes[0]['title'] . ' (' . $quotes[0]['methods'][0]['title'] . ')',
This is the file I deleted just the parens from (includes/modules/pages/checkout_one_confirmation/header_php.php) on one line.
Code:
'title' => ($free_shipping) ? $quote[0]['methods'][0]['title'] : ($quote[0]['module'] . ' (' . $quote[0]['methods'][0]['title'] . ')'),