• Hi,

    very nice plugin, i did a fresh install a few days ago. When displaying the page, i noticed a period which is displayed near the “load more” button.

    so i looked at the source code and found a tiny bug. to play it safe, i validated the bug with a fresh download of the plugin.

    event-organiser-posterboard.php, line 152 – 157

    return
    		'<div id="event-board">'
    			.'<div id="event-board-filters" data-filters="">'. $filers_markup . '</div>'
    			.'<div id="event-board-items"></div>
    			.<div id="event-board-more"></div>'
    		.'</div>';

    wrong quoting, fixed:

    return
    		'<div id="event-board">'
    			.'<div id="event-board-filters" data-filters="">'. $filers_markup . '</div>'
    			.'<div id="event-board-items"></div>'
    			.'<div id="event-board-more"></div>'
    		.'</div>';

    https://wordpress.org/plugins/event-organiser-posterboard/

Viewing 1 replies (of 1 total)
  • Plugin Author Stephen Harris

    (@stephenharris)

    Apologies for the delay in responding, and thank you reporting this. This will be fixed in the next update.

Viewing 1 replies (of 1 total)
  • The topic ‘tiny coding bug in event-organiser-posterboard.php’ is closed to new replies.