gmaister22
Forum Replies Created
-
Forum: Plugins
In reply to: Widget issue (won't appear)@ beingzoe
Yes i tried it, i actually tried placing the pre default widgets in a widget area and then putting the ones i downloaded….again nothing… 🙁
Do you have any IM so i can let you have a look at the code?
Forum: Fixing WordPress
In reply to: My website wont appear on googlei used http://www.xml-sitemaps.com/ for my sitemap though
Forum: Fixing WordPress
In reply to: My website wont appear on googleooh.. i see… well my website is about downloading music so… i couldnt actually write any articles i am afraid
Shouldnt there be any plugin or something that will index my website on google when someone writes down “house music” for example?
Forum: Fixing WordPress
In reply to: My website wont appear on googleso if i use
User-agent: *
Allow: /on robots.txt would be better?
Forum: Fixing WordPress
In reply to: My website wont appear on googlewhen i type for example, house music beats on google, i want my site to be indexed how could i do that? :S
Forum: Fixing WordPress
In reply to: My website wont appear on googleoh, its not about meta tags and stuff right?
is there a way to test it or something?
Forum: Fixing WordPress
In reply to: Audio Player Non StopYou’ll need to use frames, a separate window for the player (a popup), or load all your content via ajax or a similar method (so the page isnn’t updated/refreshed when a link is clicked). The easiest method would be to have a link to the player, when clicked, opens the player in a new window. This way, when the page is refreshed/updated, it doesn’t affect the player.
Any method which prevents the page from being refreshed/updated will do the trick. The three methods above are the only ways that I’m aware of.so doing it all on ajax would be hard or?
Forum: Fixing WordPress
In reply to: Change Slider's Speed!!Thanks for that ! 🙂
one more thing, is there a way i can increase the space on the page of the logo? like moving more down the whole page or something
Forum: Fixing WordPress
In reply to: Post Issuesin which file is that entry? :S
what is going wrong with that template? it works fine on chrome but on firefox it doesnt…what the hell :S
Forum: Fixing WordPress
In reply to: Category on homepageno that
<?php if ($images = get_children(array( 'post_type' => 'attachment', 'numberposts' => 1, 'post_status' => null, 'post_parent' => $post->ID,))) foreach($images as $image) { $attachment=wp_get_attachment_image_src($image->ID, $size); ?> <div class="postimage"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><img src="<?php bloginfo('template_directory'); ?>/scripts/timthumb.php?src=<?php echo $attachment[0]; ?>&h=204&w=206&zc=1" alt="<?php the_title(); ?>" border="0" /></a></div> <?php } else { ?> <div class="postimage"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><img src="<?php bloginfo('template_directory'); ?>/images/post_sample.jpg" border="0" alt="<?php the_title(); ?>"/></a></div><?php } ?>think its working now 🙂
Forum: Fixing WordPress
In reply to: Category on homepageif ($images = get_children(array( 'post_type' => 'attachment', 'numberposts' => 1, 'post_status' => null, 'post_parent' => $post->ID,))) foreach($images as $image) { $attachment=wp_get_attachment_image_src($image->ID, $size); ?> <div class="postimage"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><img src="<?php bloginfo('template_directory'); ?>/scripts/timthumb.php?src=<?php echo $attachment[0]; ?>&h=204&w=206&zc=1" alt="<?php the_title(); ?>" border="0" /></a></div> <?php } else { ?> <div class="postimage"><a href="<?php the_permalink() ?>i delete all that then?
Forum: Fixing WordPress
In reply to: Category on homepagecheers! its working, anyway to remove that image though? to look like in categories?
by the way maybe it would be better to just make a category into a page and set that static page as homepage? 😉
Forum: Fixing WordPress
In reply to: Category on homepagehttp://mysql.paste-bin.com/view/edd800ba
there it is,
i couldnt find that code you said :SForum: Fixing WordPress
In reply to: Category on homepageyup, but on category id 3 as you can see the posts are fully expanded, on the main page not :/
i would actually want to delete that recent news and move the category id 3 on the home page
Forum: Fixing WordPress
In reply to: Category on homepage<?php get_sidebar(); ?> <!-- end #sidebar1 --> </div> <div class="mainContent"> <div id="mainposttitle"> <h1>Recent News</h1> </div> <?php if (!is_paged() and is_home()) { query_posts('cat=3'); wp_reset_query(); query_posts('cat=3'); } ?> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div class="mainpostbox"> <div class="mainposttop"></div> <div class="mainpostcontent"> <div class="titlebox"> <div class="titleboxleft"> <div class="titlep"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"> <?php the_title(); ?> </a></div>like that?
doesnt work :/