pakkiodj
Forum Replies Created
-
Forum: Plugins
In reply to: [SiteOrigin Widgets Bundle] my post carousel is no longer working properlyyes, is bootstrap 3.6
Forum: Plugins
In reply to: [SiteOrigin Widgets Bundle] my post carousel is no longer working properlyscript.min.js is a bootstrap file i think
Forum: Plugins
In reply to: [SiteOrigin Widgets Bundle] my post carousel is no longer working properlyUnfortunately I have nothing not minimized.
I sent you the whole theme folder.
How can I put the correct version of jquery?Forum: Plugins
In reply to: [SiteOrigin Widgets Bundle] my post carousel is no longer working properlyhere you can download the theme
https://drive.google.com/file/d/1I4ADwpPY3E8ah7fLOjqoiBL1z0m0YgmN/view?usp=sharingForum: Plugins
In reply to: [SiteOrigin Widgets Bundle] my post carousel is no longer working properlythis is the file that create a conflict:
https://onoranzefunebrifacelli.it/wp-content/themes/pixie-master/js/script.min.js?ver=5.5.3Forum: Plugins
In reply to: [SiteOrigin Widgets Bundle] my post carousel is no longer working properlyBut the conflict is with the site origin plugin .. if I just leave the site origin widget plugin it works
is not the version of javascript that gives problems?
Forum: Fixing WordPress
In reply to: Can't update from 3.8.1I mean that entering the comments page can not click anywhere and that the page does not scroll anymore. This problem is solved by deleting tables from phpmyadmin comments.
Now I want to update my wordpress, this is the important part now.Forum: Fixing WordPress
In reply to: Can't update from 3.8.1Currently it all works, but I can not upgrade to higher versions of wordpress 3.8.1 as my bulletin board tells me that there are higher.
Forum: Fixing WordPress
In reply to: Can't update from 3.8.1Yes
I solved in this way
`function em_validate($result, $EM_Event){
if($_REQUEST[‘user_email’]!=”)
{
$the_event = em_get_event($_REQUEST[“event_id”]),’event_id’);
$this_bookings = $the_event->get_bookings();
foreach($this_bookings->bookings as $the_booking)
{
if($_REQUEST[‘user_email’]==$the_booking->person->user_email)
{
$EM_Event->add_error(“The e-mail address you entered is already used”);
$result = false;
break;
}
}
}
return $result;
}
add_filter(’em_event_validate’,’em_validate’, 1, 2);