Jump to content

Sue Busher

Frog Community Advocate
  • Posts

    252
  • Joined

  • Last visited

Everything posted by Sue Busher

  1. Sorry, another question. Is there a way an assignment can be removed from the list if the pupil has completed it?
  2. Can I ask what code/HTML needs to chage so I can place the HTML on a subject page and only display the subject specific homework set on that page? I know we did have a discussion thread about this but just want to double check with this code update. Thanks in advance.
  3. Sue Busher

    HTML Widget

    Can someone help me with this please? I seem to have this problem a fair amount and it is basically because I am an amateur at HTML. When I get some code to embedd, e.g. <!-- MSE Search Widget --> <iframe id="mse-search-widget" src="http://mystudentevents.com/widget/" width="100%" height="130" frameborder="0" scrolling="no"></iframe> <!-- end MSE Search Widget --> It doesn't work. However, I understand that it probably needs some kind of script around it. I just don't know what I should add. Advice please? Thanks
  4. Hi I thought I was being clever creating a teacher directory which showed photos and an email to link for each teacher. However, when a pupil emails from home, it uses the mail default account and not their school email. Is there a way which I can tell it which email account to use through HTML? Just thought I'd ask and see if any coders out there know a way round my problem.
  5. Sue Busher

    Events

    Thanks Chris. Appreciate the response. Hope you are well. Sue
  6. Sue Busher

    Events

    Hi I've found a great site for managing events more effectively but when I try to embedd the code into HTML widget it is blank. I suspect it needs additional code around it for it to work. Would someone be able to advise please? Code is: <div data-tockify-component="calendar" data-tockify-calendar="events.kennet"></div> <script data-tockify-script="embed" src="https://public.tockify.com/browser/embed.js"></script> Thanks in advance
  7. Sue Busher

    Cover

    Thanks Graham. Much appreciated
  8. Hi I've found a really good system which I am hoping to incorporate into Frog Learn. I've been given an HMTL sample but when I put it into Frog Learn via HTML widget it doesn't like it. I suspect it needs some HTML around it for it to work. Can anyone help me? Code is: <div data-tockify-component="calendar" data-tockify-calendar="events.kennet"></div> <script data-tockify-script="embed" src="https://public.tockify.com/browser/embed.js"></script> Thanks in advance
  9. Does anyone have any experience with bring these across into Frog Learn (which I understand aren't supported)? I've tried a link on previous posts but it doesn't work anymore. I am under a lot of pressure to get this sorted to :(, so any help gratefully received.
  10. Sue Busher

    Cover

    Hi We use SIMS and cover lists are generated as HTML files. We used to be able to pull this into Frog 3 via Frog web, but can't do that any longer. It was suggested that I created a file drop and dragged and dropped the HTML files into it, placing an HTML widget above it and asking it to displace the files in file drop. Done that, and it works.... BUT the files, whilst dated chronologically don't display that way. eg 160916, 170916, 180916, 200916, 210916, 220916 display as 200916, 210916, 220916, 160916, 170916, 180916 which is really frustrating. Does anyone have any HTML code I can add in that woud fix the order in which it is shown? <div id="coverpage"></div> <script type="text/javascript"> var baseURL = Frog.Utilities.getBaseUrl(), // Change fileDropUuid to the UUID of your file drop widget fileDropUuid = '70BDB7422002874EC49D5FBFB7EEAC03C6C22C9CB651A4D8'; Frog.Model .api('filedrop.get', { filedrop: fileDropUuid }).done(function(filesResponse) { var $fileList = $('#coverpage'); filesResponse.data.resources.forEach(function(file, index) { // Check whether the file is one of these filetypes; Want to add more? Add to the array if (['html','htm'].indexOf(file.file.ext.toLowerCase()) > -1) { console.log(file); // This only runs when you have uncommented the the HTML code above // This code adds file names to the ul#filelist $fileList.append( '<iframe width="800" height="300" style="margin-left:auto; margin-right:auto;" src="'+ baseURL + '/app/file/resource/' + file.file.uuid + '.' + file.file.ext + '"></iframe>' ); } }); }); </script> OR Anyone got a better way of doing this? I am not popular with the teaching staff at the moment
×
×
  • Create New...