Submitted by melinda on Tue, 10/13/2020 - 17:37
Places to add your files. Four things to do.. not including css
Create a region template.
My template name: platon--site-content--right-sidebar.tpl.php
Pu it in the theme's templates folder.
My code for a plain side bar
<?php
$settings = variable_get('theme_platon_settings');
if(!empty($settings['palette'])) {
$backgroundColor = $settings['palette']['dark_blue'];
}
?>
Submitted by melinda on Thu, 09/24/2020 - 13:03
Yes... I hotmix too. Haha!
So I ran into this issue when I started using Virtual DJ to create Hotmixes for an event we were throwing.
Only a few of my songs were being loaded into the Virtual DJ music directory.
So after looking for hours on the internet for a solution... I started hacking away at my system because I couldn't find anything online to help me.
What worked for me.
I unistalled Itunes, erased all the songs from itnues that were downloaded on to my device.
Restarted my device (Windows 10)
Submitted by melinda on Wed, 07/22/2020 - 23:15
Add users to new sheet (sheet2)
Sort Sheet2 A to Z
Create New column on sheet 1 at far left (In front of A)
click on cell that lines up with the cell I need to start in that avoids headers
type in the cell the Function VLOOKUP
=VLOOKUP(Cell you want to look up, Cell range you want to look in, 1, FALSE)
EX =VLOOKUP(C4,Sheet2!A1:A23,1,FALSE)
Before you copy to the next row and beyond, highlight the Cell range in formula bar, (in the above formula is Sheet2!A1:A23) you want to look in, then hit F4.
Submitted by melinda on Sun, 07/19/2020 - 14:38
Took me forever to find this answer. My questions that i was importing had too many chartacters in the excel sheet I was importing. Added the lines below.
In
profiles>Opigno_lms>modules>Opigno quiz import app
Go to the file opigno_quiz_import_app.module and where you have
// Start a new one.
$node = (object) array(
'title' => $question,
can you please put
// Start a new one.
$trimmed = substr($question, 0, 250);
$node = (object) array(
'title' => $trimmed,
Submitted by melinda on Fri, 12/27/2019 - 11:20
This is just a quick reference on where to find the permissions for the front page of Opigno LMS.
It took me a second to figure out what I did in error to cause my home page to go to an "Access Denied" page for all users that were not logged in.
There is a feature called "Homebox" for Opigno, which I thought only controlled the dashboard view for users when they are logged in. But not the case, it controls the Front page as well. So changing the permission on which users can see the "HomeBox" directly effects who can see what on the Front page. Weird right?
Submitted by melinda on Wed, 12/04/2019 - 15:51
This solution came in handy for web pages that displayed "unofficial" information that users could print out.
HTML
<div id="printDiv">
<div id="background">
<p id="bg-text">Unofficial</p>
</div>
CSS
#bg-text
{
color:lightgrey;
opacity: 0.1;
font-size:120px;
transform:rotate(300deg);
-webkit-transform:rotate(300deg);
}
Submitted by melinda on Wed, 12/04/2019 - 12:24
Project Description: Allow parents to print out their student's unofficial transcript from the parent portal. Included a forced "Unofficial" watermark that the browser is forced to print.
What I used: DATs, CSS, HTML and Javascript.
The Code
<!DOCTYPE html>
<html>
<head>
<style>
Submitted by melinda on Wed, 11/20/2019 - 14:48
We used this to feed to our notification systems. (Absent notifications, Drills, Snow days, etc...)
The query:
SELECT s.dcid,
listagg(ea.EMAILADDRESS, ',')
WITHIN GROUP (ORDER BY s.dcid, ea.emailaddress) "Guardian_email"
FROM
STUDENTS s, STUDENTCONTACTASSOC sca, person p, PERSONEMAILADDRESSASSOC pea, EMAILADDRESS ea
Submitted by melinda on Tue, 11/05/2019 - 08:35
The below will target a div and make it appear and disappear depending on what is selected in another field.
~[wc:commonscripts]
<script>
$j(function($){
$j("#ELStatusField").change(function() {
if ($j(this).val() == "01" || $(this).val() == "06") {
$j('div#AccessEllsDiv').show();
$j('#AccessElls').attr('required', '');
$j('#AccessElls').attr('data-error', 'This field is required.');
} else {
$j('#AccessEllsDiv').hide();
$j('#AccessElls').val("");
Submitted by melinda on Fri, 07/26/2019 - 11:12
1. add custom fields
System> custom fields/ screen>Student Fields Click new.
Add new field to table
system> Page and data management> Manage Database Extentions>
Select table to extend> Usually "Students"
Select "Advanced Extentions"
Next
Select Table you want extention/field to go into
next
Then click next again
Step 4 is where you ad your newly created field
Click "add"
Migrate Data from: Select your fields from the drop down
Pages