foochuck
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Digg Digg] Mashable like widgetI’m looking for this as well. Supposedly the Digg Digg Plugin can replicate it, but I’m having a hard time figure out where to edit the JS code they provide.
Forum: Fixing WordPress
In reply to: Advertising Banner PluginsThanks for the suggestion @rvoodoo. I’ll give it a try.
Forum: Fixing WordPress
In reply to: Display ‘Recent Posts’ Outside of the Sidebar@vtxyzzy I want to be able to put recent posts in my index.php (outside of the sidebar) – how else can I do that without the plugin?
Forum: Fixing WordPress
In reply to: Display ‘Recent Posts’ Outside of the Sidebar@vtxyzzy : Are you asking for a sample of my code from the index.php page?
Forum: Fixing WordPress
In reply to: Display ‘Recent Posts’ Outside of the Sidebar@vtxyzzy : I tried that as well. However putting that code inside of index.php renders
[widgets_on_pages id=x]as regular text instead of interpreting it as code.Forum: Fixing WordPress
In reply to: Display ‘Recent Posts’ Outside of the SidebarQuick question about the Widgets on Pages plugin:
I want to add the widget inside of my main index.php file – however it’s not within editable code. It’s being setup as:
<div id="featured">[widgets_on_pages]</div>However it doesn’t interpret the widgets_on_pages code correctly. Is there any other way to add this to my index.php page?
Thanks
Forum: Fixing WordPress
In reply to: Display ‘Recent Posts’ Outside of the SidebarAwesome. Thanks!
Forum: Fixing WordPress
In reply to: Adding Thumbnail Images next to Post ExcerptsIs there a plugin to achieve this as well?
Regarding the link from @esmi I’m not sure where to add the code
add_theme_support( 'post-thumbnails' );in the functions file for my theme.Forum: Fixing WordPress
In reply to: Adding Thumbnail Images next to Post Excerpts@esmi : Regarding that usage of thumbnail, how do I designate which image gets designated as the thumbnail image next to my posts?
Forum: Fixing WordPress
In reply to: Change the “Older Entries” TemplateI think I just found what I needed…
<?php if ( $paged < 2 ) { ?> <p>Text for first page of Category archive.</p> <?php } else { ?> <p>Text for subsequent pages of Category. Can be left out.</p> <?php } ?>Forum: Fixing WordPress
In reply to: Change the “Older Entries” TemplatePerhaps I should be trying to just display the customization on my homepage and that way the other pages are the same? It’s basically some HTML I have on my Main Index that appears before The Loop. How can I have it detect the main page and then not appear on the older pages?
Forum: Fixing WordPress
In reply to: Moved WordPress Folder (Images are Broken)Sweet! Thanks sharris203.
Forum: Fixing WordPress
In reply to: Hyperlinks within WordPress Pages to other PagesI was hoping I could do relative links, just because I have the site in a testing directory and will be moving it to another directory when it launches.
Forum: Fixing WordPress
In reply to: Trash (Recycle Bin?)That explains it. Thanks!
Forum: Fixing WordPress
In reply to: Category If Then StatementAwesome. Thanks esmi.