Greetings,
I have been playing with trying to change how the carrier listing is displayed, or how I can change the HTML output of my carrier. There are two hooks I have found that relate to this:
displayCarrierList
displayBeforeCarrier
Both seem to basically provide hooks before and after the carrier list during checkout. If I implemented my hookDisplayCarrierList() method like this:
public function hookdisplayCarrierList() {
return "Test";
}
This puts my "TEST" hook after the carrier list, which looks like this:
How can I replace the entire listing HTML? Can this only be done by modifying per-template? What I am really trying to do is have custom HTML output for a specific carrier I have implemented in a CarrierModule. Am I looking at this wrong?