pavel8289
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Forum: Plugins
In reply to: [WooCommerce] Is there a way to track custom checkout question responses?If you collect this data into your own system, then it is easy to get it and display it in a graph, figures. Any programmer will write you such a solution.
I analyzed the code, the information. And I understood why in another language I had the name of the attributes displayed. Because after automatic translation, the name of the attributes was filled with an empty string. If you translate manually, then everything works.
- This reply was modified 2 years, 8 months ago by pavel8289.
Forum: Plugins
In reply to: [Site Reviews] Review form layout not displaying properlyAdd this code to your site’s stylesheet
This is not a plugin problem, but your template problem..glsr-review-form .bgtfw-select { padding: 12px 35px 12px 12px; } .glsr-review-form .bgtfw-wrap-select:after{ display: none!important; }
- This reply was modified 2 years, 11 months ago by pavel8289.
Forum: Plugins
In reply to: [Site Reviews] Ajax submit spinner not workingMy decision.
Place the preloader in the form or whatever method you have.
And just by pressing the button for submitting the form. We need to get our preloader to activate.My form
<div class="glsr-form-wrap"> <form class="{{ class }}" method="post" enctype="multipart/form-data"> {{ fields }} {{ response }} {{ submit_button }} <div class="preloader"></div> </form> </div>
My Query code
// REVIEWS PLUGIN $(".glsr-review-form button").on("click", function () { $(this).closest("form").addClass("active-sent"); });
My style
.active-sent .preloader{ display: block }
add CODE in functions.php
add_filter('site-reviews/enqueue/public/inline-script/after', function ($javascript) { return $javascript." GLSR.Event.on('site-reviews/form/handle', function (response, formEl) { formEl.classList.remove('active-sent'); });"; });
Forum: Plugins
In reply to: [Site Reviews] get Reviews {num}
Viewing 5 replies - 1 through 5 (of 5 total)