Our blog, keeping you up-to-date on our latest news.

 

How to Install and Use this Aurelius WordPress Theme

July 15, 2010 at 4:31 pm | Blog | 61 comments

 

If you like the style of this website, then you can have your own by several very simple steps and a little patience. English is not my mother language, so if you find yourself lost in the reading, please don’t call 911 but leave a comment and tell me which part you don’t get. Ok it is not funny right? Let’s begin then.

1. download and install wordpress

Aurelius is for wordpress up to 2.8, so first of all, download the wordpress from the official website wordpress.org. it is recommended to use the latest version which is 3.0. Then follow wordpress’s famous one click installation steps to install the blog. Ok this is really very simple, so i think you should have no problems on this. Let’s move to the next step.

2. A little configuration

It is very important that, to be a SEO friendly theme, the url for each post is the key. So this theme requires a custom Structure for permalink.
Go to wordpress dashbord, click Permalinks in the Settings section. check on the Custom Structure, and use the structure: /%category%/%postname% or something like this. It makes your site’s URL more user friendly as well SEO friendly. If you find that this setting does not work, you have to use mod_rewrite for this feature. Now instead of the default URL  http://example.com/?p=N,  url is more pretty  http://example.com/category/post-name/. For more details, check this url out: http://codex.wordpress.org/Using_Permalinks#mod_rewrite:_.22Pretty_Permalinks.22

before that, your web server should be configured to support url rewrite (mod_rewrite).

and you will have a .htaccess file in the root folder (wordpress will generate this file automatically, if it does not, please copy the following to your root folder).

1
2
3
4
5
6
7
8
# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
# END WordPress

the above example is for root url is “/”, for example http://pengbos.com, but if your root url is something like: http://localhost/wordpress/. the htaccess should be

1
2
3
4
5
6
7
8
# BEGIN WordPress
RewriteEngine On
RewriteBase /wordpress/
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wordpress/index.php [L]
# END WordPress

3. download and install Aurelius

Just go to the download page or follow this link download to access the theme. After downloading, unzip it into your wordpress theme folder, and the structure layout is like “wordpress\wp-content\themes\Aurelius”. login wordpress site with your admin account and go to Appearance->Themes. do you see the Aurelius? Awesome, the new Aurelius theme is installed successfully. Just activate the newly installed theme and be ready to start configure your site with Aurelius!!

4. Add Categories and Pages

Aurelius is designed follow the rule: Convention over Configuration . You add categories and pages follow the name conventions instead of configurations.
a. Four Categories are predefined: Blog, Portfolio, Featured, Announcement. You have to specify the slug “blog”, “portfolio”,”featured” and “announcement” for the four categories.
In the home page, the featured section featches posts in “Featured” category. The Blog and Portfolio menu navigates to blog and portfolio categories. The Announcement section under the featured section is for Announcement category, it featches the latest post in the announcement category.

b. Two Pages are predefined: About and Contact.
The menus About and Contact link to the two pages.

5. Add Posts to different categories

Add a post to a category is very straightforward, however to display the proper images in the proper position is a little tricky.
As i have already mentioned, there are four predefined categories: Blog, Portfolio, Featured, Announcement. For posts, there is a customized form for the user to input custom field values. With this form, user does not need to type in custom fields manually. It really keeps the powerful custom fields simple and stupid.
Let’s go over through the categories one by one.
a. Blog category.
Usually, user wants to have a very nice image along with the post. to achieve this, just add a post image in the left custom field “Image for blog post”. And the great part is that you can upload image and insert the url into the field by clicking this upload button!!

b. Portfolio Category.
The Portfolio category is a little complicated compared to the former one. User can upload as much as 6 images for each portfolio. If you want to have different thumbnails for each image, there are still as much as 6 thumbnails custom fields. (the following diagram depicts how to add images)

After the contents and images are ready, don’t forget to check on the “Portfolio” checkbox for category selection.

c. Featured Category.
Add a post to the featured section in the home page is as simple as checking on the “Featured” category. But in order to have a featured image to be displayed, you still need to put a image url in the “Image for blog post” custom field. As posts in the “Blog” category already has a value for it, you just need specify a value for portfolio posts if you want to have the portfolio displayed in the home page too. Note: every post can be categorized into more than 1 categories. so a post may belong to “Blog” as well as “Featured”, or even “Portfolio”, although it is not that usual.

d. Announcement Category.
Announcements are displayed in the home page too. it is designed to put a title of news in the announcement section. so keep it simple and short.

<< Back to Blog Discuss this post

 

61 Comments to “How to Install and Use this Aurelius WordPress Theme”

  1. Nic says:

    Hi There,

    Great that you transformed the aurelius theme into a wordpress theme, however, I am having difficulties with it..the rolling jquery is causing troubles on my site…

    “A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete.

    Script: http://www.tacticalproductions.at/rockwallaby/wp-content/themes/Aurelius/js/jquery.roundabout-1.0.min.js:41

    what seems to be the problem here ? Any idea?

    Thanks,

    Nic

  2. admin says:

    Hi Nic,

    Thanks for downloading the theme. I cannot figure out the problem from your description. But i suggest, try to use the development version of jquery roundabout to debug. you can download the debug version here
    http://fredhq.com/projects/roundabout/

    If you could tell me your run environment and reproduce steps, i may try to reproduce this bug on my host. and try my best to help.

    Thanks,

    Pengbo

  3. adam lee says:

    Hi, I’m new to WordPress (3.0) but really struggling installing this theme.
    I’ve installed the theme to the folder /tryout
    The problem is that the HOME link on the top menu is the only link that works. I’ve followed your instructions above but it still doesn’t work.

    For instance, ABOUT link goes to /tryout/about which doesn’t work, the page cannot be found. The ABOUT page does exist but it’s url is tryout/index.php/about
    The CONTACT link goes to /tryout/contact-us which cannot be found, but I can view the page at it’s permalink of /tryout/index.php/contact-us

    I have also created the portfolio category, and the top menu link url is /tryout/category/portfolio/ but it says the page cannot be found.
    I can however view a post in the portfolio category by browsing to /tryout/index.php/archives/category/portfolio

    Can you tell me how I can make the top menu links work please?

    admin Reply:

    Hi adam

    the tricky is that you have to use custom structure for your ule. Go to wordpress dashbord, click Permalinks in the Settings section. check on the Custom Structure, and use the structure: /%category%/%postname%. I am sure you have finished this part.

    before that, your web server should be configured to support url rewrite.

    and you will have a .htaccess file in the root folder.

    # BEGIN WordPress

    RewriteEngine On
    RewriteBase /tryout/
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /tryout/index.php [L]

    # END WordPress

    if you still have any problems, please let me know.

    Thanks

    adam lee Reply:

    Hello, thanks for the help.

    I think the problem must be my web server not currently allowing url rewrite, as I have the .htaccess file already in the root folder and pasted in the above. The links are still behaving as I mentioned in my last post.

    I’ll ask my host to allow this feature, otherwise WordPress isn’t going to work for me.

    admin Reply:

    Yes, ask them for the info. Thanks.

  4. opal says:

    Hi!

    Thanks for the sweet theme! How do I make the header logo clickable/linkable?

    Thanks again!

  5. opal says:

    Nevermind! Figured it out. For others who want to link their header logo, simply:

    1. Navigate to header.php file
    2. Insert: between the and ?php bloginfo(‘name’); ?> under the tag
    3. Close code off with
    at the end of code line

    Voila!

    Note: Be sure not to remove existing and tags or else the layout spacing will become misaligned.

  6. SK says:

    Thanks for the awesome theme. Can I modify the menus to add my own ? In the Menu settings page, it says “The current theme does not natively support menus, but you can use the “Custom Menu” widget to add any menus you create here to the theme’s sidebar.”

    Does this mean I cannot change the top menu ?

    admin Reply:

    Hi SK,

    Thanks for downloading, currently, the menu is coded in the template, it is not configurable. It should be a good suggestion to add this feature in the new release.

    but if you want to add menu items, just go to the header.php file to change the code. If you have any questions, i am happy to help.

    Thanks

    PN Reply:

    can you show me how to hard code a menu option that will link to a specific page via the Header.php file? ie. more than just the about/contact us page.

    admin Reply:

    hi PN
    go to the header.php file, follow the about page pattern, add a new

  7. element.

                       <li><a <?php if (is_page('about')) { ? rel="nofollow"> class="current"<?php } ?> href="<?php echo get_option('home'); ?>/about" title="Go to the About page"><span class="meta">Who am I?</span><br />About</a></li>

    for example, the new page is “service”, which is created at the backend. so add your li after the about element

                       <li><a <?php if (is_page('service')) { ? rel="nofollow"> class="current"<?php } ?> href="<?php echo get_option('home'); ?>/service" title="Go to the Service page"><span class="meta">What we provide</span><br />Service</a></li>

    That’s it!

  • Shivani Garg says:

    hi,

    I updated my theme to aurelius. It does not show the predefined categories or pages. I do not know how to start. I have the latest wp version. Please help.

    admin Reply:

    Did you enable url rewrite on the web server side?

    Thanks

    Hish Reply:

    hi, i got the same problem here.
    I did the setting for perma link.

    but still it didnt come up with predefined categories or pages.

    Is there anything else i should do besides premal link setting to set up url rewrite?

    please help me out.

    thanks!!

    admin Reply:

    your web server should be configured to support url rewrite (mod_rewrite).

    and you will need a .htaccess file in the web root folder.

    see the second step in this post for more details.

    Thanks

  • patembe says:

    Really a great work.. keep creative.. :D

    regards,

  • Fabian says:

    Hola, saludos desde Ecuador, podrias ayudarme a entender mejor como personalizar el sitio,pues soy nuevo en wordpress, ah y felicidades muy bueno el tema.

    admin Reply:

    Hi Fabian,
    Yes, I can help, what’s your problem? what can i do for you to customize your site? Can you use English instead?

    Thanks.

  • Hish says:

    hey, thanks for previous help.
    now im wondering how i should make thumbnail for the blog images so that thumbnail would appear on top page.

    i uploaded image for the blog through the form, but thumbnail wont show up.

    can i get some help on that?

    thanks!

    admin Reply:

    do you notice the right custom fields? there is a custom field you should add. which is “Image for blog posts” you should put image url here, or you should upload one there.

    thanks

    Hish Reply:

    thanks for the reply, i did, but the image wont road… i uploaded the image that was 600×300. was it too big?

    admin Reply:

    could you provide a snapshot of your settings of this post in the backend, and a snapshot of this post displayed.

  • hendro says:

    How to change the header logo with image?

    admin Reply:

    go to header.php, edit this file to change the logo

  • Karla says:

    I’m designing a WP 3.0 site with multisite enabled and I want to use the Aurelius theme. I think the timthumb.php script doesn’t work with WP 3.0. Is their a fix for this theme?
    I need to get the images in the blog index working and the thumbnails on the home page. Great theme otherwise.

    admin Reply:

    You can use version 0.1, which does not use timthumb script. Thanks!

    Karla Reply:

    Thanks, a look at the code from Version 0.1 has given me the fix I needed. :)

  • Sven says:

    Hi,
    just mention that the send_mail.php has a bug in the last version 0.2. The originator mail adress will not be displayed.
    Replacing the single line of the $headers with the two lines from version 0.1 works for me fine, now.

    $headers = “From: $email\r\n”;
    $headers .= “Reply-To: $email\r\n”;

  • Sven says:

    Another bug is that german mutated vowels (like: ä,ö,ü) will not send by email form correctly. Any ideas how to fix it?

  • Prakash says:

    Excellent article which has the clear steps with the clear & effective notes & with the illustrations. Love your effort on sharing. Thx a lot for sharing. Keep sharing good things.

  • hamzahir says:

    Very great job.
    Just asking if you can have in the portfolio videos. and what the link of the video should look like ??…

  • John says:

    can anyone take me step by step on how to change the header from text to a logo?
    From above i only know that am supposed to edit header.php….but where exactly and how…trying for the first time…

    admin Reply:

    Hi John,

    first step, go to your theme template dir, for example: wp-content/themes/Aurelius

    second, go to the images folder in the theme folder.

    third, put your logo image there, or just rename your image to name logo.png, if your logo is png format too.

    if you are replace the logo.png with yours, then all set. otherwise to to step four

    forth step: open header.php file and find the line

    <img src="/images/logo.png" alt=""/> 

    replace logo.png with your image file name.

    that’s it.

  • Hello there !

    Thank you for this great theme. I just have a little problem with it. I don’t see my Announcement posts on front page (i have just write a little post without picture in “Announcement” cat. Can you help me please ?

    Thank you and Happy 2011 !

    admin Reply:

    Hi,

    blogs in the announcement category are not fetched in Version 0.2. It is for Version 0.1. You can download Version 0.1 to have a try.

    For Version 0.2, i removed the announcement section in the home page, instead, I put the latest 4 blogs to display.

    Thanks and Happy 2011!

    Nicolas TAFFOREAU Reply:

    Ok, finaly, it’s done, i have mixed the two home.php pages to activate “Announcement” too. Now, just need to add a “Search” button in the header.

    Thx again !

  • Oh ok, thank you so much, in don’t understand that !

  • In general, this settings are true for GreenieWP theme too?

    admin Reply:

    Yes, you are right :)

    Takashi Senko Reply:

    thanks :)

  • Mara says:

    Hi, i’m new at wordpress, i have installed your theme. but i’m having some troubles in using it. i don’t know how to use the portfolio templates. For example i added i two new posts to my portfolio category but don’t understand how and where i need to upload the images that correspond to each entry you can see it here http://maradionisio.org/category/portfolio and then how can i use the single-template page.

    I would appreciate any kind of tips :)

    thank you!!!

    admin Reply:

    Hi, in order to show you where to upload images, i add a screenshot to show it.

    please check: http://pengbos.com/wp-content/uploads/2010/07/add-portfolio.jpg

    you don’t need to do anything to use the single templage page, the theme will handle it.

    Mara Reply:

    Thank you for the help :D

  • sam says:

    hi.thanks for the wonderful theme….just a small problem,i cant seem to post comments on the test post of my site…
    What exactly seems to be the problem??

    admin Reply:

    hi sam, i cannot open http://samzkingdom.com/blog/hello-world, it seems your permalink setting up is not so correct. could you double check with your settings?

    sam Reply:

    Thank you…Its working now….
    Thanks again for the tremendous theme.

  • Jim says:

    Hi,
    After submitting My contact form sais ….. “sending”, but freezes there without any error and offcours without sending anything:(

    admin Reply:

    do you use gmail smtp or php mail?
    currently, gmail smtp is not working. I think google does not provide this service anymore.

  • Jim says:

    I’ve setup simple form just to check if “send_email.php” is working…. and it is sending email very well. However contact form still….. “sending”without success

    Jim Reply:

    problem solved….. I had an ” <meta name="theme_template_dir" content="” />” removed from header file. therefore contact.js couldnt find the send_email.php.
    Thanks for the cool theme

    admin Reply:

    cool!

  • James says:

    Hey there, I think you did a great job overall converting that to a WordPress theme, kudos!

    I am having one problem though with the custom link structure. The .htaccess file and mod_rewrite appear to be working correctly because I can view the categories like Blog or Portfolio. However, it’s not picking up on the About or Contact pages. What am I missing?

    Thanks!

    admin Reply:

    Hey James, Could you please check the permalink of the page is http://mypsychicspirit.com/about for About page, and mypsychicspirit.com/contact-us for Contact page. I also send a screenshot to your email. please check your email :) Thanks for choosing Aurelius theme. Good luck!

    James Reply:

    thanks a lot!

  • lawrence says:

    Hi, I only want to the same set of Portfolio posts on the home page in the carousel, is this possible?

    Thanks L !

    admin Reply:

    Sure, add those portfolio posts to featured category too.

  • Lor says:

    hey, great theme design. I’ve installed the theme and almost all works perfectly. The only thing is that when I add a post in the portfolio category and click on the post name from the portfolio page, I get the “Ooops, we seem to have lost the file…”. Same is true in for the “Blog” page. I add a new blog and it appears in my “Blogs” category, but get the same 404 when I click on the particular blog post. Please help…

    Also, I tried to install the wp add-on ‘contact form 7′, but it didnt work. Is this not compatible with this theme??

    I have wp version 3.0.4 installed.

    Any help will be greatly appreciated.

    thanks in advance.

    admin Reply:

    hi Lor,
    could you check the permalink for blog and portfolio category? or you can send me the link of your site, i can do some investigation
    thanks

  • Pedroto says:

    Hi. I had the same problem. It turned out that the problem was an empty space at the end of my permalink:”/%category%/%postname% “. This space was creating the error.

  •