cwe
Forum Replies Created
-
Forum: Plugins
In reply to: [My Tickets - Accessible Event Ticketing] PayPal Plus ?My bad, sorry. paypals documentation is terrible.
using the sandbox accounts doesn’t help, the error is the same. so i did a “live test”, which is working – but i can’t select payment without a paypal account, so i assume that paypal plus needs another method of accessing the api / landing page.Forum: Plugins
In reply to: [My Tickets - Accessible Event Ticketing] PayPal Plus ?Yes, i am.
Forum: Plugins
In reply to: [Event Organiser] [WP 4.4] Event widget shows "no events"Great, thank you!
Deleting the widget’s title fixed the issue, everything fine again. Thank you for your great plugin and even better support !
Forum: Plugins
In reply to: [Event Organiser] [feature idea] Clone eventsCool, i didn’t know that this would work for event organiser… thank you
Forum: Plugins
In reply to: [Event Organiser] [feature idea] Clone events*bump*
Forum: Fixing WordPress
In reply to: After upgrading to 3.8.2 there still an update notificationHi esmi,
thank you for your help. resetting the plugins folder by FTP fixed the problem 🙂
Whoops #2
Sorry, this breaks the code, it comments all the following code out.
Here is the correct fix (this time for real):
search:
b("head").append(f);replace it with:
/**b("head").append(f);*/Whoops, sorry, here again the code parts:
search:
b("head").append(f);add // before, should look like this
//b("head").append(f);I did a bit debugging and found the cause of the problem. As i am not a JavaScript developer and Myatu’s code is really hard to understand without working in it, following fix is not a real fix. It can break things, kill your cat and cause thermonuclear war. If you want to use, use it, but i take no responsibility for fucked up things. Make a backup.
As far as i understand this, the disappearing text is caused by when the flux.js checks for 3d-transition compatibility. if this is true, it tries to modify the html, which, i assume gives Google Chrome some headaches -> text disappears.
So the fix is the deactivation of the sourcecode-modification, which applies to all webkit-bases browsers. there SHOULD be no effects on other browsers like Firefox and IE.
The fix:
open wp-content/plugins/background-manager/resources/js/flux.js in a editor of your choice. Make a backup first.
The code is obfuscated and in a single line, so it’s readibility is bad. But that’s not important, as you only add a //Search for the following:
[code]
b("head").append(f);
[/code]add a // before to comment that code out. Do not change any other things.
it should look like this:
[code]
//b("head").append(f);
[/code]Save. Upload. Try Chrome 😉
As said, this can break some other things. Basically, maybe 3D-Transitions will not work. Hopefully, Myatu will fix this much better 😉
I can confirm that behavior on Chrome (Windows, Android).
The text is there, but somehow invisible – it can be marked, is then still invisible, but can be copied & pasted. If you hit a link, the next page is displayed correctly, until you reload (F5 or manually), then the problem occurs again.
Disabling background manager immediately fixes the problem.