plugin.builders
Forum Replies Created
-
Forum: Plugins
In reply to: [Waiting: One-click countdowns] Not working with CloudFlare CDNFixed. But since I’m not releasing a new version right now, you have to update the plugin manually. Deactivate & uninstall the plugin ( you won’t lose your countdowns ), then install again.
Forum: Plugins
In reply to: [Waiting: One-click countdowns] Not working with CloudFlare CDNDo you have Cloudfare disabled now? Because it’s working. Counting down to 5 Days, 7 Hours ….
If it’s disabled, enable it.- This reply was modified 9 years, 3 months ago by plugin.builders.
Forum: Reviews
In reply to: [Waiting: One-click countdowns] Good plugin and Best SupportThank you for using Waiting.
Can we do anything with this plugin to make you give it a 5-star rating?
Regards,
NubForum: Reviews
In reply to: [Waiting: One-click countdowns] buggyHi, it was a bug introduced in our previous version and we’ve fixed it now.
Since there is no better free countdown plugin than Waiting, we request you to try Waiting again.Forum: Plugins
In reply to: [Waiting: One-click countdowns] Button Save doesn’t work if editor userHi, I’ve just released a new version. Update the plugin (0.4.3) and re-edit the persmission. It should work.
Thanks for reporting to us.
Forum: Plugins
In reply to: [Waiting: One-click countdowns] Does not support multilingual sitesDid you
echo ICL_LANGUAGE_CODE;? I don;t know what’s inICL_LANGUAGE_CODE. Find the value it contains and compare against it.Forum: Plugins
In reply to: [Waiting: One-click countdowns] Does not support multilingual sitesI assume you have some knowledge of PHP.
Edit the Waiting.php file of Waiting plugin, look fortranslateTermsfunction, then replace with the below function.Write
if/elsestatements for the lanaguages you need the terms for. See what the constantICL_LANGUAGE_CODEholds ( uppercase / lowercase etc ), I don’t have WPML installed, I got this constant from some post in their site.I have plans for this to include in the plugin, but some users have also asked for Translate forms for each plugin, I’ll have to think about the UI.
function translateTerms(){ self::$terms['fui'] = array(); $unit_terms = array(); if( ICL_LANGUAGE_CODE === 'es' ){ // Replace Years, Months etc with their Spanish terms $unit_terms = array( 'years' => __('Years', 'waiting'), 'months' => __('Months', 'waiting'), 'weeks' => __('Weeks', 'waiting'), 'days' => __('Days', 'waiting'), 'hours' => __('Hours', 'waiting'), 'minutes' => __('Minutes', 'waiting'), 'seconds' => __('Seconds', 'waiting') ); } else if (ICL_LANGUAGE_CODE === 'de'){ // Replace Years, Months etc with their German terms $unit_terms = array( 'years' => __('Years', 'waiting'), 'months' => __('Months', 'waiting'), 'weeks' => __('Weeks', 'waiting'), 'days' => __('Days', 'waiting'), 'hours' => __('Hours', 'waiting'), 'minutes' => __('Minutes', 'waiting'), 'seconds' => __('Seconds', 'waiting') ); } else { // Return English terms by default. You can make any other language the default one. $unit_terms = array( 'years' => __('Years', 'waiting'), 'months' => __('Months', 'waiting'), 'weeks' => __('Weeks', 'waiting'), 'days' => __('Days', 'waiting'), 'hours' => __('Hours', 'waiting'), 'minutes' => __('Minutes', 'waiting'), 'seconds' => __('Seconds', 'waiting') ); } self::$terms['units'] = $unit_terms; }Forum: Plugins
In reply to: [Waiting: One-click countdowns] Does not support multilingual sitesHow have you made your site multilingual? Which plugin / theme are you using?
Currently Waiting doesn’t support Multilingual translations, but if you can edit PHP files, I can give you some code to make it work.Forum: Plugins
In reply to: [Waiting: One-click countdowns] Shortcode not workingHi, no, the shortcode isn’t there. Make sure you have countdown created in Waiting page and Waiting widget active with one countdown selected.
Forum: Plugins
In reply to: [Waiting: One-click countdowns] Shortcode not workingHi, Waiting has its own widget, use that. What are you using now?
Forum: Plugins
In reply to: [Frames Video Player] Player doesn’t load with AJAXHi, do you have Load Everywhere checked in Settings tab of Frames page? If yes, try unchecking it.
Forum: Plugins
In reply to: [Frames Video Player] Player doesn’t load with AJAXHi, Frames will load JavaScript specific to a player, so you cannot preload it. It’s generated on the fly.
Try asking your theme developer about this.Forum: Plugins
In reply to: [Frames Video Player] Player doesn’t load with AJAXYour theme is removing
<script>tags present in the AJAX response. Frames has many<script>tags with data and templates in them.Your theme has to add those
<script>tags too.I can provide you with this alternative, it’ll reload the page, i.e. this page won’t load via ajax. Anytime you click on a link to
film-schaslivie-ludi, it’ll reload the page, so the player will work.Add the following script in one of your theme’s JavaScript file and save. Press CTRL+F5 in the front after saving ( to clear any cache of old file ).
jQuery('body').on('click', 'a', function(e){ if( jQuery(this).attr('href').indexOf('/film-schaslivie-ludi') > -1 ) window.location = 'https://pobeda.life/film-schaslivie-ludi/'; })- This reply was modified 9 years, 5 months ago by plugin.builders.
Forum: Plugins
In reply to: [Frames Video Player] Player doesn’t load with AJAXHi, sorry for the delay. Your Vimeo video is playing fine here: https://pobeda.life/film-schaslivie-ludi/
I couldn’t find “Фильм «Счастливые люди»” in https://pobeda.life/blog/
Forum: Plugins
In reply to: [Waiting: One-click countdowns] Timer Date Increments by 1 HourUnfortunately, no. I’ve tried in 3 of my servers and couldn’t.
If you don’t edit countdown after creating, just decrease your time by 1 hour and save. Else use other plugin, may be T(-) countdown or Uji countdown, sorry.