GlobalRize
Forum Replies Created
-
Forum: Plugins
In reply to: [BibleLink Multilingual] Not all Dutch books are linkedThe values dan, da and open will be added. But we will not add op as this tends result in false positives. Take for example this part of a sentence …op 10 verschillende manieren… which would result in a match to Openbaringen 10
Forum: Plugins
In reply to: [BibleLink Multilingual] Links not working and no dutch languageHi @dimaan,
I am sorry that the previous update didn’t fix the bug fully. I must’ve missed something. For now I published a new version (1.0.16) that rolls the plugin back to a working version.
Can you verify that it is working again?
Greetings,
Forum: Plugins
In reply to: [BibleLink Multilingual] Links not working anymore after last updateThis has been resolved.
Forum: Plugins
In reply to: [BibleLink Multilingual] Links not working anymore after last updateHello. Thank you for bringing this to my attention. I published an update today.
Can you verify that this update fixes the bug? If not, please rollback to the version 1.0.12 with a plugin WP Rollback.
Forum: Plugins
In reply to: [BibleLink Multilingual] Error on installHi Strell,
Thanks for reporting this bug to us. A fix for this bug is present in the next plugin update (1.0.11). This plugin is not compatible with Polylang and it is best to uninstall it.
No support for Polylang is currently in the making. What you can do however is add the code below at the end of functions.php file located at wp-content/themes/{yourtheme}/functions.php.
// Load Bible Link Multilingial plugin for polylang language if (function_exists('pll_current_language')) { // check if polylang is installed switch (pll_current_language('slug')) { // get current polylang language & set script case 'en': $script = '<script async defer src="https://bible-link.globalrize.org/plugin.js" data-language="en" data-translation="esv"></script>'; // English script break; case 'de': $script = '<script async defer src="https://bible-link.globalrize.org/plugin.js" data-language="de" data-translation="hfa"></script>'; // German script break; } if (!empty($script)) { // Check is script is defined add_action('wp_head', function () use ($script) { // Add it to head section of page echo $script; }); } }
Forum: Reviews
In reply to: [BibleLink Multilingual] Plugin delivers on its promiseThank you viva for the positive rating. We are glad the plugin has been useful to you.
Forum: Plugins
In reply to: [BibleLink Multilingual] Error after installThank you for the notice. The error notice will disappear with the next plugin update.