Open ecava-dx opened 8 years ago
When several software modules are purchased, the software key listing will not be aligned. Propose to use HTML tabulated format like below:
$output .= '<table>'; foreach ( $licenses as $license) { if ( isset( $license['item'] ) && isset( $license['key'] ) ) { $output .= '<tr><td style="margin:0">' . $license['item'] . ':</td><td style="margin:0">' . $license['key'] . '</td></tr>'; } } $output .= '</table>';
Thanks.
Thanks for your submission @KopeLee ! I'm going to update the output very soon and this is very welcome!
When several software modules are purchased, the software key listing will not be aligned. Propose to use HTML tabulated format like below:
Thanks.