Arqua
Arqua is a 2 columns fixed width WordPress theme by MagPress.com. This Blue WordPress template has theme options, featured content slider, featured categories, Adsense ready, footer widgets and many more.
Tags: Adsense Ready, Blue, Custom Menu, Dark Blue, Featured Content, Featured Video, Fixed Width, Free WordPress Themes, Horizontal Navigation, Right Sidebar, Sidebar Footer, Theme Options, Threaded Comments, Three Level Dropmenu, Twitter Ready, Two Columns, Widget Ready, Wordpress Templates, WP Themes
Dear Themr builder,
I am using the arqua theme. Unfortunately I have found a small but annoying problem. We use a lot of embedded programs like downloads, video’s etc., when i use them on the defaukt templates, the embeds (not the code) is visible on the homepage (post) and when selecting the post.
When using the arqua theme, the embeds are only visible when clicking on the post and opening it. On the homepage (post) the code is visible not the embed.
This really stops our website from going live as the code looks really bad on the website.
Please can you tell me how to fix or configure the theme in such a way that the embeds work when viewing the posts on the homepage as well as when the posts are selected?
Thanks a lot for your help and keep the great themes coming!
OK. You can show full post mode instead of the auto excerpt. Please open index.php and replace code within the post-content div as below:
[php]
<?php if ( has_post_thumbnail() ) { ?>
<?php the_post_thumbnail(array(200,150), array(‘class’ => ‘alignleft’)); ?>
<?php } ?>
<?php the_post_excerpt($excerpt_length=50); ?>
<div class="readmore"><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">Read More</a></div>
[/php]
to
[php]
<?php the_content(); ?>
[/php]