plugin.builders
Forum Replies Created
-
Hi Jason, current free version doesn’t have anything new, it was released to maintain some compatibility with a new PRO version release.
Oh hey I’m so sorry, I somehow missed this post, are you still using YourChannel and having that issue?
That’s strange. What does it return in the
translateTermsfunction? Something other must be interfering withget_locale(). Try deactivating the Polylang plugin and check again.Hi, those strings are overrided by the terms in Quick Translation form (or the default ones in English).
The easiest way for you to show time units in your multilingual site is to ask Polylang plugin support about detecting currently used language and use the code in other thread.
Forum: Plugins
In reply to: [Waiting: One-click countdowns] Waiting plugin and polylang pluginI’m not familiar with that plugin, do you know what function or constant of that plugin contains the currently used language? Take a quick look at its documentation.
pll_current_languageis not since it’s generating an error.Forum: Plugins
In reply to: [Waiting: One-click countdowns] Waiting plugin and polylang pluginHi, did you see this post?
The WordPress function
get_locale()will have the language code, did you try it?Hi, thank you for trying YourChannel. If you created your own API Key, then it takes Google a few minutes to activate it which might have been the issue, YourChannel cannot do anything about this that’s why we tell users to use our API key in the beginning and only go to create their own after they’ve setup everything.
The nag screen should stop showing after you close it 3 or 4 times and it’s not that intrusive and it informs about different PRO feature everytime it appears. I’ll try to make it less annoying.
Forum: Plugins
In reply to: [Waiting: One-click countdowns] Sync timer on subdomain w/ one on domain?Hi, there’s no way to do that from Waiting itself currently. How often do you change the countdown times? I’ll look if there’s any simple way to share data between subdomains.
Forum: Plugins
In reply to: [Waiting: One-click countdowns] 3d cubical on free version ?Hi, replace the inside of
translateTermsfunction with following://Write Spanish term for each unit below. $spanish = array( 'years' => 'spanish for years', 'months' => '', 'weeks' => '', 'days' => '', 'hours' => '', 'minutes' => '', 'seconds' => '' ); // Write French term for each unit below. $french = array( 'years' => 'french for years', 'months' => '', 'weeks' => '', 'days' => '', 'hours' => '', 'minutes' => '', 'seconds' => '' ); if( get_locale() === 'es_ES' ) self::$terms['units'] = $spanish; else if( get_locale() === 'fr_FR' ) self::$terms['units'] = $french; else { $units = get_option('pbc_unit_terms'); self::$terms['units'] = $units ? $units : array( 'years' => __('Years', 'waiting'), 'months' => __('Months', 'waiting'), 'weeks' => __('Weeks', 'waiting'), 'days' => __('Days', 'waiting'), 'hours' => __('Hours', 'waiting'), 'minutes' => __('Minutes', 'waiting'), 'seconds' => __('Seconds', 'waiting') ); } self::$terms['fui'] = array();Forum: Plugins
In reply to: [Waiting: One-click countdowns] 3d cubical on free version ?Did you click on that Change button before Toggle?
Forum: Plugins
In reply to: [Waiting: One-click countdowns] 3d cubical on free version ?Hi, go to Style > Edit. Then click on Change, it’ll scroll you to demos of 3D and other styles, click on the 3D demo.
Do you know PHP? You can edit
waiting.phpfile of the plugin. Look for thetranslateTerms()function, all the words are in one array, you can create new array for each language and show them conditionally. We’ll provide easier options to do translation in the next version.Hi, now the free version lets you enter number of videos you want to show. There’s also many new features in free version, e.g. sticky players, shortcode options to show videos from other channels, autoplay etc.
If you need YouTube plugins again, please give YourChannel a try again.
Thank you.Hi, sorry for the delay.
Your API Key is not working, so YourChannel’ll not work in any browser. Your HTTP Referrer restrictions in the API Key settings is not allowing your domain. Please enter *.greenestbuilding.com/* in the HTTP Referrer restriction field.Forum: Plugins
In reply to: [Waiting: One-click countdowns] IE Countdown stacked vertically – Fixed.Hi, this should have been way easier to fix. I’ll look into it.
Thank you and very sorry for so much work.Forum: Plugins
In reply to: [Waiting: One-click countdowns] Timer is Vertical for Some UsersHi, Waiting countdown’s width depends on the element that contains the shortcode. So when that element has a small width, countdown appears vertical. You need to fix width of that element, I’ve emailed you the CSS you need.