tuskmaster
Forum Replies Created
Viewing 6 replies - 1 through 6 (of 6 total)
-
Forum: Fixing WordPress
In reply to: Can't get featured image to appear.Closed.
Forum: Fixing WordPress
In reply to: Can't get featured image to appear.OMG. Thank you! Jeffery, you my friend, are a gentleman and a scholar. May many may thanks.
Forum: Plugins
In reply to: [Special Recent Posts] [Plugin: Special Recent Posts] Infinite ScrollMaybe change something in this code I have for infinite scroll?
<script type="text/javascript"> jQuery(document).ready(function($) { var count = 2; var total = <?php echo $wp_query->max_num_pages; ?>; $(window).scroll(function(){ if ($(window).scrollTop() == $(document).height() - $(window).height()){ if (count > total){ return false; }else{ loadArticle(count); } count++; } }); function loadArticle(pageNumber){ $('a#inifiniteLoader').show('fast'); $.ajax({ url: "<?php bloginfo('wpurl') ?>/wp-admin/admin-ajax.php", type:'POST', data: "action=infinite_scroll&page_no="+ pageNumber + '&loop_file=loop', success: function(html){ $('a#inifiniteLoader').hide('1000'); $("#primary").append(html); // This will be the div where our content will be loaded } }); return false; } }); </script>Forum: Fixing WordPress
In reply to: Archives loop in the sidebarclosed.
Forum: Fixing WordPress
In reply to: Archives loop in the sidebarmore code… looking for suggestions…
<div id="primary" class="widget-area" role="complementary"> <?php while ( have_posts() ) : the_post(); ?> <div class="entry-summary"> <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2> <?php the_excerpt(); ?> </div><!-- .entry-summary --> <?php endwhile; // End the loop. Whew. ?> <a id="inifiniteLoader">Loading... <img src="<?php bloginfo('template_directory'); ?>/images/ajax-loader.gif"></a></div><!-- #primary .widget-area -->Forum: Fixing WordPress
In reply to: Yellow triangle for images?I see all 4 ad boxes fine. Have you looked through your images folder to try and find the triangle? It’s probably in the css as well.
Viewing 6 replies - 1 through 6 (of 6 total)