Home News Contact Us Forum About Us Demos Products F.A.Q.
Shopping Cart
You currently have 0 items in your cart.


Recent Events
  • 31/12/2023 New Year SALE

    We are glad to announce New Year SALE. 25% discount for all our extensions. Use NY24 coupon code. Hurry up the discount is valid till 7 January.

  • 21/11/2023 BLACK FRIDAY 23 is coming

    BIG SALE, 35% discount for all our extensions. Use BF23 coupon code. Hurry up the discount is valid till 27 November.


2Checkout.com, Inc. is an authorized retailer of goods and services provided by ARI Soft. 2CheckOut




Follow us on twitter



Welcome, Guest
Please Login or Register.    Lost Password?

I have some problems with plugin's PRO version
(1 viewing) (1) Guest
"ARI Stream Quiz" WordPress plugin
Go to bottomPage: 123
TOPIC: I have some problems with plugin's PRO version
#66000
Re:I have some problems with plugin's PRO version 4 Years, 5 Months ago Karma: 748
1. When we start the test quiz, "Test" text is shown only on quiz results page. It works as expected.

2. Yes, we are going to extend settings on quiz level in a future version of the plugin.

6. This problem with the following CSS rule which is added by theme:

Code:


.entry-content div>a:not(.wp-block-button__link)



Open "ARI Stream Quiz -> Settings -> Advanced" page and populate "Custom CSS styles" parameter with the following value to fix this problem:

Code:


.asq-theme.asq-theme-buzzfeed .button.button-facebook {
    background: #3b5998 !important; }
  .asq-theme.asq-theme-buzzfeed .button.button-twitter {
    background: #55acee !important; }
  .asq-theme.asq-theme-buzzfeed .button.button-gplus {
    background: #dd4b39 !important; }
  .asq-theme.asq-theme-buzzfeed .button.button-pinterest {
    background: #bd081c !important; }
  .asq-theme.asq-theme-buzzfeed .button.button-linkedin {
    background: #0077b5 !important; }
  .asq-theme.asq-theme-buzzfeed .button.button-vk {
    background: #507299 !important; }
  .asq-theme.asq-theme-buzzfeed .button.button-email {
    background: #7292a8 !important; }



a. Confirmation e-mail is feature which should be supported by email marketing service. You can read here how to enable double opt-in for MailerLite.

b. How to auto-complete should work for guest users? Where get values for name/email fields?

Regards,
ARI Soft
The administrator has disabled public write access.
 
#66007
Re:I have some problems with plugin's PRO version 4 Years, 5 Months ago Karma: 0
1. Okay.

2. Okay, thank you!

6. It works, thank you!

a) Okay, thanks!

b) I think you didn't understand what I was trying to explain to you. What I meant is an autocomplete of email form in a browser, so when a user click on this email field, then it will show him his email so he can click on it and it will automatically put it inside. I saw in your plugins code that there is a "autocomplete="off" parameter, so I guess it has to be changed to: autocomplete="email" parameter so it could work just like I explained to you (also, for a 'name' field it would be useful as well). It would be great and very handy if you will add this feature. Will you?

Thanks in advance!
The administrator has disabled public write access.
 
#66024
Re:I have some problems with plugin's PRO version 4 Years, 5 Months ago Karma: 748
Open "ARI Stream Quiz -> Settings -> Advanced" page and populate "Custom JS code" parameter with the following code to change value of autocomplete attribute for e-mail field:

Code:


jQuery(function($) {
  setTimeout(function() {
    var quizzes = jQuery('.ari-stream-quiz').ariStreamQuiz();
    if (!quizzes) return;
    if (!(quizzes instanceof Array)) quizzes = [quizzes];
    $.each(quizzes, function(idx, quiz) {
        var showUserDataForm = quiz.showUserDataForm;
        quiz.showUserDataForm = function(disableScroll) {
           var $el = $('#' + this.options.prefix + '_user_data'),
                  $emailEl = $('[data-key="email"]', $el);

           $emailEl.attr('autocomplete', 'email');
           showUserDataForm.call(quiz, disableScroll); 
        }
    });
  }, 10);
});



Regards,
ARI Soft
The administrator has disabled public write access.
 
#66029
Re:I have some problems with plugin's PRO version 4 Years, 5 Months ago Karma: 0
Since these are similar questions, I have another:

After a user types their email, is there some code I can add that will let them just press "Enter" to execute rather than having to move the cursor and click the "Show Results" button?
The administrator has disabled public write access.
 
#66033
Re:I have some problems with plugin's PRO version 4 Years, 5 Months ago Karma: 748
Use the following code:

Code:


jQuery(function($) {
  setTimeout(function() {
    var quizzes = jQuery('.ari-stream-quiz').ariStreamQuiz();
    if (!quizzes) return;
    if (!(quizzes instanceof Array)) quizzes = [quizzes];
    $.each(quizzes, function(idx, quiz) {
        var showUserDataForm = quiz.showUserDataForm;
        quiz.showUserDataForm = function(disableScroll) {
           var $el = $('#' + this.options.prefix + '_user_data'),
                  $emailEl = $('[data-key="email"]', $el);

           $emailEl.on('keypress', function(e) {
             if (e.which === 13) {
               $el.find('.button-collect-data').click();                               
             }
           });

           showUserDataForm.call(quiz, disableScroll); 
        }
    });
  }, 10);
});



Regards,
ARI Soft
The administrator has disabled public write access.
 
#66035
Re:I have some problems with plugin's PRO version 4 Years, 5 Months ago Karma: 0
Fantastic - thanks again!
The administrator has disabled public write access.
 
Go to topPage: 123