Site
Multiple Domains For One Site?
Submitted by Mark on Wed, 10/13/2010 - 10:11I recently posted about having way too many domains. Yesterday I decided to point them all to Elf Knows It, just out of interest, and wow!!! The site exploded yesterday, everything went search engine crazy with spiders running around the place!
I'm going to keep them pointing here for another while and see how it pans out, will it make a difference?
Do you have multiple domains pointing to the one site? Let me know with a comment below.
My Tweets Are Live On The Site Again
Submitted by Mark on Tue, 08/12/2008 - 01:58I 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 :)
What Goes On Here?
Submitted by Mark on Tue, 07/22/2008 - 17:10Here'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.
How To Place A Drupal Block Anywhere On Your Site
Submitted by Mark on Sat, 06/14/2008 - 11:46You 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
