mangorausch
Forum Replies Created
-
Forum: Plugins
In reply to: [LastFM Played for Wordpress] Feature requestCheck out v0.99.2! Out now!
Forum: Plugins
In reply to: [LastFM Played for Wordpress] 0.8 broke thingsShould be fixed with all new versions! Please check them out!
Forum: Plugins
In reply to: [LastFM Played for Wordpress] Now playing shows as 47 yearsSorry for the late reply. I don’t recieve any mails from WordPress, when there is any bug. :/ Please use the Github issue tracker.
The bug is now fixed. Please update to version 0.99.1!
Forum: Plugins
In reply to: [LastFM Played for Wordpress] 0.8 broke thingsSorry for the inconveniences. I fixed everything now in version 0.9. Please update to the latest version!
Forum: Plugins
In reply to: [LastFM Played for Wordpress] Invalid argument errorHi there, sorry for the late answer!
Is the issue still there? Please try it again.Forum: Plugins
In reply to: [WooCommerce] How to sort products on category page?But how can I list products, which will be published in 2-3 months?
<?php $table = get_field( 'ddr' ); if ( $table ) { echo '<table class="table table-striped" border="0">'; if ( $table['header'] ) { echo '<thead>'; echo '<tr>'; foreach ( $table['header'] as $th ) { echo '<th>'; echo do_shortcode( $th['c'] ); echo '</th>'; } echo '</tr>'; echo '</thead>'; } echo '<tbody>'; foreach ( $table['body'] as $tr ) { echo '<tr>'; foreach ( $tr as $td ) { echo '<td>'; echo do_shortcode( $td['c'] ); echo '</td>'; } echo '</tr>'; } echo '</tbody>'; echo '</table>'; } ?>
That’s my code right now, but it doesn’t show anything.
Well, I found the bug. If there is a blank like “Test Test” or “test_test” in the CF, then the table is gone, idk why.
But I’m still not able to see the table on my page.
Uhm, well, thanks. But now, I’m not longer able to put something into the table, the table on the page site disappeared but the custom field name is still there.