Submitted by melinda on Fri, 07/02/2021 - 11:58
*****UPDATE*****************
OK so Microsoft launched the "StartScreen" in PowerAPPs. The below instructions do not work anymore.
Click here for updated instructions.
There's some documentation on this that has the wrong syntax using a "?" but the correct operator is "&". At least in my system....
The correct syntax for the url is:
Submitted by melinda on Fri, 05/14/2021 - 00:43
Add this to your custom css page. The below is what I used to hide a sidebar region on NODE 508. Replace the 508 with your NodeID and whatever you would like to change in the additional selectors.
.page-node-508 #right-sidebar{
display:none;
}
You can use this css to do any kind of theming on a specific node. :)
Another example is
Submitted by melinda on Mon, 05/03/2021 - 11:48
Orphan Files.
Delete them all out of your quiz's results list within the node!
Submitted by melinda on Mon, 05/03/2021 - 08:48
Hello all.
I need to add a "%" to the suffix to a table with aggregation. It's a great module but there isn't a place to put prefixes or suffixes which my clients wanted the "%" at the end which is not un-reasonable.
I did it with css.
Find the css selector and copy it.
Here's my css code that places the sufix.Change the selector to match your selector.
Submitted by melinda on Mon, 03/29/2021 - 23:24
The problem:
Client wanted to display the percentage score of four quizzes based on the max score possible for all four quizzes combined. Opigno Course actually takes the percentage scores of each quiz result and averages them. This client did not want that.
Soooooo here's what I did.
The view: (My Quizzes/Lessons are renamed "Core Characteristics")
Submitted by melinda on Mon, 03/29/2021 - 22:53
This is just one possible reason but it's what took me forever to figure out.
I set up a bunch of blocks to display serveral quiz results, some of the blocks were not showing up on my test users results page.
Submitted by melinda on Tue, 02/23/2021 - 23:39
I added an if statement for good measure and an example how you could use the link/ URL print.
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.
Pages