Eero Hermlin
Forum Replies Created
-
Forum: Plugins
In reply to: [Scroll Triggered Box] Not receiving the submitted email addressI hope my hint fixed possibility to press “Yes” without entering e-mail?
Forum: Plugins
In reply to: [Scroll Triggered Box] Mobile problems with WP 4.4Hi
Do you still have this problem?
Do you still use it and can you provide me url to your page?
Forum: Plugins
In reply to: [Scroll Triggered Box] How to trigger the pop-up from linkGreat to hear that it got solution.
Otherwise, “Triggering action” -> “click to Element” should be right way to go.Forum: Plugins
In reply to: [Scroll Triggered Box] Not all pages show up for selection (inlcude/exlcude)I guess that missing Checkout page is really because it is custom type page instead of regular page.
But there still is a perfect solution for that: use “Triggering action”->”Scroll to Element” and choose some element what is existing only in Checkout page. NB! You need newest version (2.3) for that, because Scroll to Element had a bug in 2.2.
Forum: Plugins
In reply to: [Scroll Triggered Box] Responsive box for mobileHi
Version 2.3 has new feature so that Scrollbox width will not exceed screen width.
Forum: Plugins
In reply to: [Scroll Triggered Box] Not load to guest“Is running when log in” sounds very much that “Admin Only” checkbox is marked.
Forum: Plugins
In reply to: [Scroll Triggered Box] Php CodeAs a conclusion: in this question Shortcode or Widget is right way to go.
I really guess this is your site encoding problem, because I have seen Scrollbox working on Cyrillic, Hebrew and other alphabets completely different from Latin.
Forum: Plugins
In reply to: [Scroll Triggered Box] Keep the box open on scroll upHi
I have added option “keep open” exactly for that it in version 2.3, please try.
Hi
I have fixed it in version 2.3, please try
Hi
To get national characters working correctly, your site, database and your browser must all use Unicode/Utf-8 charset. If your site is utf-8, but database is not, this will cause troubles also with many other places in addition to scroll triggered box.
I think you should start looking from database character set and collation, including meta_value column in wp_postmeta table. It should be utf8. NB. converting DB from one charset to another is not simple process and data might get lost during that.
Also your browser settings might affect. For example if you use IE, then in View-Encoding menu must be checked “Unicode (utf-8)”
Forum: Plugins
In reply to: [Scroll Triggered Box] Problems with Firefox & SafariI guess you have “Admin only” checkbox enabled?
Forum: Plugins
In reply to: [Scroll Triggered Box] Php CodeHi
That should be achieved by using either Shortcode or Widget. For example install some plugin what allows showing random post as Widget and in Appearance->Widgets apply it to “Scrollbox / Dreamgrow scroll triggered box” Widget area.
If you don’t find any suitable plugin for your exact purpose, then I suggest to create your own plugin what implements Shortcode or Widget. That’s the correct way of executing custom PHP and otherwise you paint yourself into the corner.
Forum: Plugins
In reply to: [Scroll Triggered Box] How to modify email content?Plugin extracts all name=value pairs from form input tags and adds them to e-mail in form “name: value”. Pluss adds there three additional values: “page”, “user_screen_size” and “box”. Reason for the “undefined” here is that one of the input tags (In your case submit button I guess) is missing name parameter.
I suggest not to change the code, or at least wait for the month. Reason is that we’re going to release soon next version with some new features and bugs fixes. Having your own modified code means that you cannot upgrade to newer versions any more.
However, if you still want to make hands dirty then you may want to look how variable $body is manipulated in function dgd_stb_form_process (dgd-scrollbox.php); and function $DGD.submitForm local variable sendobj inside script.js.