Playbuzz
Forum Replies Created
-
Forum: Plugins
In reply to: [Playbuzz] Plugin assumes a single TinyMCE instanceThe issue is solved and awaiting WP VIP approval. We’ll send an update once the fix is available.
Forum: Plugins
In reply to: [Playbuzz] Latest Update breaks WordPress Copy/Paste in EditorHi @johannaa,
I tested the plugin versdion 1.0.10 on WordPress version 4.9.5
And copy paste works well,
Can you give more information about the scenario and the issue?
Thanks,
Playbuzz
Forum: Plugins
In reply to: [Playbuzz] Can’t Activate PluginWhat does WordPress version your server run?
Can you try to update?Forum: Plugins
In reply to: [Playbuzz] Can’t Activate PluginWe’re using a feature that is supported from PHP version 4.4 and up. If you can upgrade your PHP engine it would be great and should solve the problem.
Regardless, we have a fix for this issue which should be available from the next plugin release.Forum: Everything else WordPress
In reply to: Add Playbuzz to oEmbed whitelistThank you Steve.
Forum: Reviews
In reply to: [Playbuzz] Code RevewiedHi Joe, thanks for taking the time to audit the code.
If you have any feedback please share with us!
Also any idea on how to make the plugin better would be highly appreciated!Forum: Plugins
In reply to: [Playbuzz] Playbuzz not working on Chrome, FirefoxHi Jake,
Can you please send us a link to your site so we can have a look?Thanks,
Omri
Playbuzz Customer ServiceForum: Plugins
In reply to: [Playbuzz] "Share Results" Shares Quiz InsteadHi QuizCow,
We’re now in the process of opening this feature to all of our users.
You should be able to share your results in the near future.If you need further assistance, please let me know.
Forum: Plugins
In reply to: [Playbuzz] Polish translationHi,
The Polish translation was updated on the site!
You can now create new quizzes and translate existing quizzes to Polish.Thanks,
OmriForum: Plugins
In reply to: [Playbuzz] Prolem share on fabookHi There,
Thanks for your feedback.We’re currently in the process or rolling out the “share results” feature where you would be able to share your results and not only the quiz.
This feature should be available to everyone in the next couple of weeks.
Please let us know if you need further assistance.
Omri
The Playbuzz TeamForum: Plugins
In reply to: [Playbuzz] Playbuzz Plugin Not ResolvingHi Dave,
I’ve checked your site now and I see that the problem is now solved.Thanks again for reporting this issue. Please let us know if you run into any other issue with the plugin.
We’re always here to help.Thanks,
OmriForum: Plugins
In reply to: [Playbuzz] Playbuzz Plugin Not ResolvingHi Dave,
I appreciate your patience.By looking at your code, it looks like wp-minify is causing some conflict with our .js
Let’s try this:
1. Please clear the cache in wp-minify and disable it.
2. Disable the Playbuzz plugin.
3. Enable both back.I’ve tested it on a testing environment and managed to reproduce your issue. I hope this solution will work for you too.
Please let me know if you need further assistance.
OmriForum: Plugins
In reply to: [Playbuzz] Playbuzz Plugin Not ResolvingHi DTNicoll,
Thanks for letting us know about this issue.We’re currently looking into this and will get back to you as soon as possible.
I apologize for the inconvenience.
Omri
The Playbuzz teamForum: Plugins
In reply to: [Playbuzz] "Server error" in "Playbuzz Content" tabHi James,
We’ve done some maintenance yesterday and we’re aware to the fact that it resulted some down time for our users.Please try again now, it should work.
One more thing: We always recommend using the latest version of the plugin. So if you’re not using the latest one, please update.Thanks,
Omri
The Playbuzz TeamForum: Plugins
In reply to: [Playbuzz] Ajax call blocks playbuzz; Reloads repeatedlyHi Dwdraju –
Data is not a global variable on the website so that script will only work ONCE.
The ajaxComplete runs every time there’s an ajax call, so it may render the plugin more than once, if there are ajax call still going on in the background.
The following may work – it checks for URL changes, and only then tries to render the plugin. This also should avoid rendering the plugin twice, which the first script would’ve done, had it actually worked:
<script>
(function() {
var url = document.location.toString();
$(document).ajaxComplete(function() {
var curUrl = document.location.toString();
if(curUrl != url) {
url = curUrl;
window.PlayBuzz && PlayBuzz.core.render()
}
});
})();
</script>Let us know if this solves the issue, if not, we’re happy to troubleshoot further