esroyo
Forum Replies Created
-
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] WordPress Post Hanging – Won't LoadMay be the scripts are cached, have you tried to reload the affected page with Ctrl+F5?
Also, opening the browser console would be a good way to check what fails.
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] WordPress Post Hanging – Won't LoadIt’s confirmed that beta version 2.6.6.2 solves this bug.
To switch to beta:
1 – Go to MailPoet’s config, advanced tab and there you’ll find an option to enable beta versions.
2 – Once you have saved, in the footer of the config, next to the MailPoet’s version number, you’ll see a button to switch to beta.Good luck.
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] WordPress Post Hanging – Won't LoadSame problem here. Console shows:
Uncaught TypeError: Cannot read property 'replace' of undefined base-script-64.js?ver=1:1 Uncaught TypeError: Cannot read property 'replace' of undefined base-script-64.js?ver=1:1 3317 Uncaught TypeError: Cannot read property 'pageY' of undefined wysija-editor.js?ver=2.6.6:1 Object.extend.updateDisplayArea wysija-editor.js?ver=2.6.6:1 Draggable.onDrag wysija-editor.js?ver=2.6.6:3 Draggables.notify dragdrop.js?ver=2.6.6:212 Class.create.scroll dragdrop.js?ver=2.6.6:531 (anonymous function) prototype.js?ver=2.6.6:370
I’ve encountered the same issue but when tried to manually remove the extra closing div from em-template-tags.php, nothing has changed.
You have to move the lines 278 and 390:
if( get_option('dbem_css_editors') ) echo '</div>';
inside the previous conditional block (exactly above the preceding curly bracket), as shown in the patch.Removing the closing div won’t do the trick, because the problem is the opposite: the closing div is being excluded when it shouldn’t be.
It is a bug in the source code. Check: https://www.ads-software.com/support/topic/event-editor-form-breaks-on-buddypress?replies=15#post-5306170
Sorry, I can’t provide screenshots. To put it simple, the thing is that this link does not work:
https://mysite.com/wordpress/members/USERNAME/events/my-events/edit/
And this does:
https://mysite.com/wordpress/members/USERNAME/events/my-events/?action=edit
The first one is not caught by wordpress, so it simply redirects to a “not found page”. Do you mean it should really work?
Please, is any developer around here? I don’t know any way to get to them and I want to make sure this little bug gets patched upstream.
Should I create a ticket here in the Plugin’s Trac at www.ads-software.com?
Thanks.
Deactivating all other plugins + change to default theme didn’t make any difference.
I just want to know if the first link is supposed to work, or it is a mistake in the source. It is strange to me that two links with the same function and so closely located differ in the URL this way.
The first one is located at file ./templates/buddypress/profile.php:22
<a href="<?php echo $bp->events->link . 'my-events/edit/'; ?>"><?php _e('Add Event','dbem'); ?></a>
Thanks.
wordpress 3.8.1
buddypress 1.9.2
events manager 5.5.2Thanks.
I found the bug. Here is the diff:
--- em-template-tags.php.old 2014-03-05 19:26:00.083416988 +0100 +++ em-template-tags.php 2014-03-05 19:26:33.506569252 +0100 @@ -274,8 +274,8 @@ 'offset' => $offset, 'show_add_new' => true )); + if( get_option('dbem_css_editors') ) echo '</div>'; } - if( get_option('dbem_css_editors') ) echo '</div>'; }elseif( !is_user_logged_in() && get_option('dbem_events_anonymous_submissions') ){ em_event_form($args); }else{ @@ -386,8 +386,8 @@ 'offset' => $offset, 'show_add_new' => true )); + if( get_option('dbem_css_editors') ) echo '</div>'; } - if( get_option('dbem_css_editors') ) echo '</div>'; }else{ if( get_option('dbem_css_editors') ) echo '<div class="css-locations-admin">'; echo '<div class="css-locations-admin-login">'. __("You must log in to view and manage your locations.",'dbem') .'</div>';
Can anyone here report/change upstream?
Thanks!
If it were BP related, then we could assume it should reproduce with other BP plugins. But it doesn’t seem to be the case.
Also tried EM dev version with same results.
I’ll try to modify the templates.
Thanks.
Thanks angelo_nwl, I was aware that I could modify the templates. However I thought of reporting as the issue appeared with default events-manager plugin (no modifications), furthermore It doesn’t seem to be theme related.
Of course, a link to a buddypress group. Login as a subscriber with user “anonim” and pass “test”.
That’s what I though I was doing by activating “Twenty Twelve”.
I have disabled all plugins other than buddypress, bbpress and events-manager, and the problem continues to show as in the screenshots.
Definitively It seems to me as a problem in the printing of the form.
Thanks.
I was unaware of a buddypress default theme. I’ve read here its use has been deprecated… should I still try to activate that?