Forum Replies Created

Viewing 15 replies - 1 through 15 (of 17 total)
  • Forum: Plugins
    In reply to: Widget issue (won't appear)
    Thread Starter gmaister22

    (@gmaister22)

    @ 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?

    Thread Starter gmaister22

    (@gmaister22)

    i used http://www.xml-sitemaps.com/ for my sitemap though

    Thread Starter gmaister22

    (@gmaister22)

    ooh.. 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?

    Thread Starter gmaister22

    (@gmaister22)

    so if i use

    User-agent: *
    Allow: /

    on robots.txt would be better?

    Thread Starter gmaister22

    (@gmaister22)

    when i type for example, house music beats on google, i want my site to be indexed how could i do that? :S

    Thread Starter gmaister22

    (@gmaister22)

    oh, its not about meta tags and stuff right?

    is there a way to test it or something?

    Thread Starter gmaister22

    (@gmaister22)

    You’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?

    Thread Starter gmaister22

    (@gmaister22)

    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 Issues
    Thread Starter gmaister22

    (@gmaister22)

    in 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

    Thread Starter gmaister22

    (@gmaister22)

    no 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 🙂

    Thread Starter gmaister22

    (@gmaister22)

    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() ?>

    i delete all that then?

    Thread Starter gmaister22

    (@gmaister22)

    cheers! 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? 😉

    Thread Starter gmaister22

    (@gmaister22)

    http://mysql.paste-bin.com/view/edd800ba
    there it is,
    i couldnt find that code you said :S

    Thread Starter gmaister22

    (@gmaister22)

    yup, 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

    Thread Starter gmaister22

    (@gmaister22)

    <?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 :/

Viewing 15 replies - 1 through 15 (of 17 total)