flowdee / edd-software-license-manager

Seamless integration between the WordPress plugins Easy Digital Downloads and Software License Manager.
GNU General Public License v3.0
11 stars 7 forks source link

Tabulated key listing output #6

Open ecava-dx opened 8 years ago

ecava-dx commented 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.

flowdee commented 8 years ago

Thanks for your submission @KopeLee ! I'm going to update the output very soon and this is very welcome!