Easy Sharing Across Courses -- Project Format & Sharing Cart

Re: Easy Sharing Across Courses -- Project Format & Sharing Cart

by Don Hinkelman -
Number of replies: 4
Picture of Particularly helpful Moodlers Picture of Plugin developers

Hi Richard,

A new Sharing Cart ver. 3.5 is now released on the Plugins Database: https://moodle.org/plugins/block_sharing_cart.  Version 3.6 coming soon. Also there is a new github for reporting issues. Sorry please re-enter any previous issues at this new github: https://github.com/donhinkelman/moodle-block_sharing_cart   Thank you very much for your patience.

Don

Average of ratings: Useful (2)
In reply to Don Hinkelman

Sharing Cart locking down edit functions after update

by Fernando Oliveira -
Picture of Plugin developers

After updating Sharing Cart to version 2019012000, the plugin is preventing all edit functions from loading properly, as shown here: https://www.screencast.com/t/P0NG9zqyOW

Looks like some kind of JS problem.

The strange thing is that this problem exists on our production server, but I can't seem to replicate on our test site.

We're running Moodle 3.5.4.

Wondering if anyone has come across this problem.

Thanks,

Fernando

In reply to Fernando Oliveira

Re: Sharing Cart locking down edit functions after update

by Fernando Oliveira -
Picture of Plugin developers
In case anyone else comes across this problem...


Note that just disabling Bootstrap Elements won't solve the issue. You need to uninstall.

Hopefully they'll have a fix soon.

Cheers,
Fernando


Average of ratings: Useful (1)
In reply to Fernando Oliveira

Re: Sharing Cart locking down edit functions after update

by Osvaldo Canato -

Thanks a lot, Fernando.

In our brazilian site (IFSP, Câmpus SP) the same was happening. As we use so much the Sharing Cart tool, we were quite lost until discover your post!

Cheers,
Osvaldo

In reply to Fernando Oliveira

Re: Re: Sharing Cart locking down edit functions after update

by Amanda Doughty -
Picture of Core developers Picture of Plugin developers
I have fixed our issues by editing mod/bootstrapelements/amd/src/fontawesome-iconpicker.js

In 2 places remove:

(function(a) {
"use strict";
if (typeof define === "function" && define.amd) {
define([ "jquery" ], a);
} else if (window.jQuery && !window.jQuery.fn.iconpicker) {
a(window.jQuery);
}
})(function(a) {
"use strict";



and replace with:

define(['jquery'], function(a) {