smaggio
Forum Replies Created
-
Forum: Plugins
In reply to: [Ecommerce Fabrick] Errore _load_textdomain_just_in_timeGrazie della risposta.
Confermo la risoluzione del problema.Saluti
Forum: Plugins
In reply to: [SiteOrigin Widgets Bundle] js error using two widgets togetherThanks, it works perfectly.
@006rodaal disable Turnstile in settings or revert to previous plugin version of the plugin.
@techavenuelabs the funny thing is that I am not asking for support but I am giving them a free solution.
Same error.
In Simple_Login.php on line 514 you try to concatenate an array when $errors is an empty string.
A temporary solution could be:
$errors = implode( ‘, ‘, $errors );
to
if ( is_array( $errors ) ) {
$errors = implode( ‘, ‘, $errors );
}Forum: Plugins
In reply to: [Custom Twitter Feeds - A Tweets Widget or X Feed Widget] Avatar not shownSame thing. However, I noticed that even after deleting the legacy feed code from the site, it remains listed on the settings page and the container of the newly created feed has the classes “ctf-hide-avatar” and “ctf-no-consent” even after clearing cache and revisions.
Hello,
thank you for answering.
The problem is in the file js/qsm-quiz.js line 444.if ( check_val == "No Answer Provided" ) {but the value in my select form is void
<option value='' selected='selected'>No Answer Provided</option>It doesn’t even work in this demo on the question “This is an example of using a drop-down menu. What is 2+2?”:
https://quizandsurveymaster.com/quiz/sample-quiz/I solved changing the js in this way:
if ( check_val == "" ) {I use the last plugin release on windows10/chrome.
- This reply was modified 6 years, 6 months ago by smaggio.
Forum: Plugins
In reply to: [Events Manager - OpenStreetMaps] Some feedback after upgrade to 1.8.xThanks,
problem solved.
BestsForum: Plugins
In reply to: [Events Manager - OpenStreetMaps] Some feedback after upgrade to 1.8.xHi Patrick,
thanks for the answer.
I think the problem is that I already have a folder with some modified frontend template files in CHILD_THEME/plugins/events-manager/templates/, but i have stop the errors deactivating and reactivating the plugin as you suggest and adding ‘/../CHILD_THEME_NAME’ to get_template_directory() in stonehenge-em-osm.php.However the errors were:
PHP Warning: copy(/wp-content/themes/PARENT_THEME/plugins/events-manager/forms/location/where.php): failed to open stream: No such file or directory in /wp-content/plugins/stonehenge-em-osm/stonehenge-em-osm.php on line 720
PHP Warning: copy(/wp-content/themes/PARENT_THEME/plugins/events-manager/forms/event/location.php): failed to open stream: No such file or directory in /wp-content/plugins/stonehenge-em-osm/stonehenge-em-osm.php on line 733
PHP Warning: rename(/wp-content/themes/PARENT_THEME/plugins/events-manager/forms/event/location.php,/wp-content/themes/PARENT_THEME/plugins/events-manager/forms/event/location-1_8_3.php): No such file or directory in /wp-content/plugins/stonehenge-em-osm/stonehenge-em-osm.php on line 732I hope this is useful to you.
Same issue: the quiz doesn’t start.
Problem born after wordpress upgrade (4.7.2).
Thanks