Hi,
Thank you for help Nicolas but it seems i am not able to asign content based on current checkout step. I am not sure if it is possible at all....
Based on "show_block_bar.php" view I have tried like this:
$workflow = $checkoutHelper->checkout_workflow;
foreach($workflow['steps'] as $k => $step) {
if($k == 0) { echo 'step-1';}
}
And it shows on all checkout steps....
I think the main isue is that i use:
$checkoutHelper->checkout_workflow;
instead of:
$this->checkoutHelper->checkout_workflow;
Using:
$steps = count($checkoutHelper->checkout_workflow['steps']);
It just returns how many steps you have on checkout....
Not sure how it works but is it possible to check current checkout step at all?
Any help would be appreciated.
Thank you