Eero Hermlin
Forum Replies Created
-
Forum: Plugins
In reply to: [Scroll Triggered Box] Digg digg Sharing buttons under the boxHi
What widget you use for digg sharing buttons, and does it have option to not show widget on custom post types?
Forum: Plugins
In reply to: [Scroll Triggered Box] Doesn't send email“I don’t get any email back notifying me that I’ve been registered” – such functionality is not supported.
“I don’t get any notification saying that I have a new subscriber.” – you must make sure that your WordPress server allows sending e-mails to that address what you used for notifications, and that registration e-mail is not ended up into spam folder. If you leave e-mail field empty, then it also doesn’t work.
Forum: Plugins
In reply to: [Scroll Triggered Box] Conflict with s2Member pluginHi,
I think i found the place what causes this behavior. It will be fixed in next version.
Forum: Plugins
In reply to: [Scroll Triggered Box] Plugin shows on homepageHi Wahlii,
does your site use some multilanguage plugin and if yes, then which one exactly?
Forum: Plugins
In reply to: [Scroll Triggered Box] Plugin used with SquarespaceI don’t know much about Squarespace, but we have actually prototype version of this plugin what could be used literally on any platform. Please contact us via https://www.dreamgrow.com/dreamgrow-scroll-triggered-box/ and let’s think about it.
Forum: Plugins
In reply to: [Scroll Triggered Box] wp_register_script noticeWe have just released next version of plugin (2.1), usage of wp_register_script is now changed and should be correct.
To figure out why it is not appearing, a bit more information is needed. Maybe you have checked “Admin only” checkbox and are looking the end-user view from other browser where you haven’t been logged in to WP?
Forum: Plugins
In reply to: [Scroll Triggered Box] Conflict with s2Member pluginHard to believe that our plugin could be the reason, because our plugin does not use wp_new_user_notification function at all.
Those are great news, because I was already out of ideas.
Do you remember, what version did you have?
Forum: Plugins
In reply to: [Scroll Triggered Box] Cookie does not appear to be workingScroll box will be hidden for the defined period only after one of following has happened: 1) form submission or 2) closing box from the “x” in the top right corner. Just visiting the page and seeing the scrollbox is not enough. The purpose of scrollbox is to invite the users to interact with site, and till this has not happened, it will keep appearing.
You can add to the scrollbox text like “if you dont want to see this box again, just close it from “x”.”
Next plugin version will add option to close box forever for those who have filled the form. (Those who have closed from “x”, the usual hiding period will apply.)
Forum: Plugins
In reply to: [Scroll Triggered Box] Cookie does not appear to be workingHi
Can you give me a link so I could check?
Forum: Plugins
In reply to: [Scroll Triggered Box] Inconsistent submission of form dataHi, thank you for the notes!
I will review and test the Scrollbox behaviour with Gravity Forms.
I already know that third party plugins what use Ajax for form submission, do not work in current version. This bug is already fixed in development version, and fixed version will be released in the beginning of January. Unfortunately, Gravity Forms seems to be one of those affected Form engines.
Loading jquery from Google is not bad, IF it comes from “Use Google Libraries” plugin or alike. Use Google Libraries plugin is also tested with our plugin.
Bad is that you have 2+ different versions of jQuery. That means that your have at least 4 pieces of scripts what perfectly ignore “Use Google Libraries” plugin and load their own versions of jQuery (some also from google btw), some in conflict mode.
Here a screenshot of jQuery versions used by your site random page today, 20.12.2014:
1.10.2 – loaded by “Use Google Libraries”;
1.9.1 – probably loaded by some Cloudflare service, uses “conflict mode”;
1.11.1 – ? unknown orign;
1.11.0 – ? some script loaded from https://www.wugly.nl initates that loading;
1.8.1 – ? unknown orign.Forum: Plugins
In reply to: [Scroll Triggered Box] Plugin Working on Mobile but not on DesktopI’m really glad that this is solved now.
It’s really surprising that service meant for wider audience like rocket loader will disable functionality of jQuery(document).ready. jQuery is very common library, Cloudflare should do something about it.
PS. My previous suggestion to try to change js/script.js so that window.onload would be used instead, wouldn’t actually help. I tested it now by myself and cannot anymore suggest it ??
I don’t see any other options really. Opening short tags needs httpd server (like Apache) restart, perhaps this is not done yet.
Maybe you can post php version and “short_open_tag” values from phpinfo.
For getting php info values, you can use for example WordPress phpinfo() plugin
Forum: Plugins
In reply to: [Scroll Triggered Box] Plugin Working on Mobile but not on DesktopSomehow,
jQuery( document ).ready(function() {
…
}
is not firing in your site. There is no other error. I think this is some kind of side effect of Cloudflare’s “Rocket Loader”.if you are brave and are ready to hack a bit, you can try to comment out in
plugin js/script.js file this part:jQuery( document ).ready(function() { dgdScrollboxInit(); });
(in the very end) and add this row:
window.onload=function() { dgdScrollboxInit() }
Please let me know if you tried and what was result?