Modal/Popup of checkout Module
Posted: Sat Apr 13, 2024 5:19 am
Hi,
If I was creating a new Module for Shipping or Payment or whatever and I wanted the Title of the Module to have a Modal Pop-up link in it - would that be possible? I can't get my head around how I would go about doing it,
for example, in a shipping module I have this code;
and I want MODULE_SHIPPING_POSTSTANDARD_TEXT_TITLE to include a modal link ...
right now it set up as a hyper link that opens and info page standardpost.php - I would much prefer a modal rather than customer being taken away from the shipping page... a modal obviously takes a bit more code and I'm not sure where I would put that code - if at all.
If I was creating a new Module for Shipping or Payment or whatever and I wanted the Title of the Module to have a Modal Pop-up link in it - would that be possible? I can't get my head around how I would go about doing it,
for example, in a shipping module I have this code;
Code: Select all
$this->quotes = [
'id' => $this->code,
'module' => MODULE_SHIPPING_POSTSTANDARD_TEXT_TITLE,
'methods' => [[
'id' => $this->code,
'title' => $shipping_method,
'cost' => $shipping_cost,
]],
];
and I want MODULE_SHIPPING_POSTSTANDARD_TEXT_TITLE to include a modal link ...
Code: Select all
const MODULE_SHIPPING_POSTSTANDARD_TEXT_TITLE = 'Standard Post <a href ="standardpost.php"><i class="fas fa-question-circle">';