I got hacked because my wordpress was not updated, so while trying to re-structure my site again I came across many layout problems. I modified the CSS before, but it was all working well and now the theme doesn’t work right.
I’ve tried re-installing it again and doing all the updates of the gallery theme and the thematic theme. The main problem is that the thumbnails of the home are aligning vertically instead of aligning in a grid like the theme does (Gallery, a Thematic child theme). I would appreciate any help!
Thanks in advance!
Best,
Denise
]]>by default the theme displays most recent posts. however i would like it to display categories and the posts that belong to those categories. For example: Click Here thats a little diagram i drew out.
I’ve been trying but not sure if its possible. if not possible is there at least a way to display at least one category? I found this forum topic from wordpress and someone who did it but my code is very different from this person’s.
index.php file from themematic theme:
<?php
global $options;
foreach ($options as $value) {
if (get_option( $value['id'] ) === FALSE) { $$value['id'] = $value['std']; }
else { $$value['id'] = get_option( $value['id'] ); }
}
?>
<?php get_header() ?>
<div id="container">
<div id="content">
<?php thematic_navigation_above();?>
<?php get_sidebar('index-top') ?>
<?php thematic_above_indexloop() ?>
<?php thematic_indexloop() ?>
<?php thematic_below_indexloop() ?>
<?php get_sidebar('index-bottom') ?>
<?php thematic_navigation_below();?>
</div><!-- #content -->
</div><!-- #container -->
<?php thematic_sidebar() ?>
</div>
<?php get_footer() ?>
and this is from gallery theme’s function.php where it creates the content for the index page/posts:
// Creating the content for the INDEX
function remove_index_loop() {
remove_action('thematic_indexloop', 'thematic_index_loop');
}
add_action('init', 'remove_index_loop');
function gallery_index_loop() {
global $post;
/* Count the number of posts so we can insert a widgetized area */ $count = 1;
while ( have_posts() ) : the_post() ?>
<div id="post-<?php the_ID() ?>" class="<?php
thematic_post_class();
if(function_exists('p75GetVideo')){
if(p75GetVideo($post->ID)){
echo " video";
}
}
?>" style="width:670px;">
<div class="entry-content">
<?php childtheme_post_header() ?>
<a href="<?php echo the_permalink() ?>">
<span class="slide-title">
<?php echo get_post_meta($post->ID, 'designed-by', $single = true); ?>
<div style="width:145px; position:inherit; top:0px;" align="right">
<?php echo the_title(); ?>
</div></span>
<img class="full-image" src="
<?php if(get_post_meta($post->ID, 'full-image', $single = true)){echo get_post_meta($post->ID, 'full-image', $single = true);}
else{bloginfo('url');
echo "/wp-content/themes/gallery/images/thumbnail-default.jpg";} ?>"
width="150" height="113" alt="<?php echo the_title() ?>" /></a>
</div>
</div><!-- .post -->
<?php comments_template();
if ($count==$thm_insert_position) {
get_sidebar('index-insert');
}
$count = $count + 1;
endwhile;
}
add_action('thematic_indexloop', 'gallery_index_loop');
i know its a lot to ask for. but if anyone can help in anyway that would be truly wonderful. Thank you and godbless.
]]>Single posts are just not loading. The page seems to time out half way through creating the categories menu. The menu loads fine on the home, archive, search and 404 pages. It is just the single posts that won’t load.
The site was working perfectly and then this error started happening. I haven’t changed anything.
I uploaded a fresh copy of the gallery and thematic themes to rule out any customizations I’d done but the problem persists.
Other themes work and load the single posts without any problems.
Any suggestions will be welcome and help greatly appreciated.
]]>https://www.chris-wallace.com/2009/07/17/simplecartjs-a-free-wp-e-commerce-thematic-child-theme/
wp-e-commerce
]]>Chris Wallace won that competition because his simpleCart submission was the closest to the real thing. Somepeople even think it looks better then the original. Well done Chris!!
Read more about Chris on his Blog. And stay tuned for this weekends challenge.
wp-e-commerce
]]>I’m trying to figure out how to get posts with video, like this https://www.chris-wallace.com/gallery/?p=476 to display the same social network buttons custom fields and pagination as regular posts, like this https://www.chris-wallace.com/gallery/?p=476
Seems strange that the video posts don’t have these functions. Any help is appreciated.
]]>Intro:
I had to be brief in the description, so I guess it ended up being less informative. Stupid me!
I have downloaded the Gallery theme (Thematic child theme by Chris Wallace) and installed it, and tweaked the design a little.
It’s a very nice theme, but I would like to add something.
Problem/reguest:
Is any of this possible, due to add-ons or anything, easy to implement?
Thank you in advance.
]]>