sheershoff
Forum Replies Created
-
Forum: Plugins
In reply to: [Image Carousel] Multiple galleries on a single page causing errorsplugins/image-carousel/inc/functions/icp-functions.php
line 219
change
if ( apply_filters( 'use_default_gallery_style', true ) )to
if ( apply_filters( 'use_default_gallery_style', true ) ){}(just add the two curly braces)
I don’t know what this change breaks, but it fixes multiple galleries on one page 🙂
Seems it works
I can submit the patch for the OOM issue, e.g., by GCing the sessions in chunks. But after 1.5 hrs of digging I have no idea why the cleanup_sessions() is not invoked.
Forum: Plugins
In reply to: [Wp-Pro-Quiz] How do I add social plugins to the QuizzesSince facebook has changed its sharer api and the share api no longer supports custom texts, also having in mind that the wp-quiz-pro has no distinct pages for distinct result there are two options:
1. add a distinct page for a users result, having opengraph properties filled
2. use the custom story facebook api optionIf I manage to do this I’ll come back here with the results.
Forum: Plugins
In reply to: [Wp-Pro-Quiz] Only allow progress when correct… ?wpProQuiz_front.js – add
var errorInQuiz = false;aftervar currentPage = 1;, then incheckQuestionmethod add the following in the else branch ofif(result.c) {:if(!errorInQuiz){ errorInQuiz = true; plugin.methode.showQuizSummary(); }then minify or replace the .min.js with the patched version. worked for me.