Site
What Goes On Here?
Here's how the site works!
To start you should try searching for your answer using the search in the top right. If it's not been answered before you can ask me by clicking the Ask the Elf button above.
Do you want to help out?
If you have an interest in computers,technology, and like helping people. Check out the forums.
My Tweets Are Live On The Site Again
I was annoyed for the past while that my tweets where not showing up on my homepage. I was just getting a blank box. But we're back in action.
It was either 2 things:
- Twitter changed their script and I didn't know.
- I just messed up the script and didn't realize
As far as I remember I didn't go near the script. But it's working again now. I just got the code fresh from the twitter site again.
I'm happy :)
How To Place A Drupal Block Anywhere On Your Site
You might have noticed on the homepage of my site I have the 'Recent Comments' block integrated and floating inside my recent posts. Taught I would share how to do this. This is actually quite simple to do, all you need is this code:
<?php
$block = module_invoke('module_name', 'block', 'view', 0);
print $block['content'];
?>
Place that code anywhere you want a block to appear, just simply replace module_name with the name of the block you want to be shown, for my comment block it was as simple as changing it to comment