veenublue
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: My site sometimes doesn’t accept the back buttonI figured it out! It’s google friend connect!
Forum: Fixing WordPress
In reply to: Redirect loop after changing permalinksIt’s still broken, but one link at least says “Not found”
Forum: Fixing WordPress
In reply to: My site sometimes doesn’t accept the back buttonLame. I wonder what’s happening.
Forum: Fixing WordPress
In reply to: Redirect loop after changing permalinksLet me add I would be happy with a link to the correct codex too! Anything 🙂
Forum: Everything else WordPress
In reply to: Hosting images on my dreamhost, should I flickr?Aaah, thank you so much! So I would have to upload them to flickr and then put code into all my posts right? Or is there an easier way?
Forum: Plugins
In reply to: Changing the links default title text to an image jpg of textHmm, I’m having trouble with the code…What should I be changing? I tried putting in Esmi’s line but it didn’t seem to change things. The codex link mentions changing something to 0? Anyways here is the code without any of my sad attempts to change it:
<?php /* if index.php or another page template (copied from index.php) was not used (i.e. by a plugin such as WPG2), the global $bfa_ata will be empty */ global $bfa_ata; if ($bfa_ata == "") include_once (TEMPLATEPATH . '/functions/bfa_get_options.php'); ?> </td> <!-- / Main Column --> <?php if ( $bfa_ata['right_col'] == "on" ) { ?> <!-- Right Sidebar --> <td id="right"> <?php // Widgetize the Right Sidebar if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(2) ) : ?> <div class="widget"><div class="widget-title"> <h3>Recent Posts</h3></div><div class="widget-content"> <?php $r = new WP_Query(array( 'showposts' => 20, // 'cat__in'=>array(14), 'cat__not_in'=>array(15,80), 'what_to_show' => 'posts', 'nopaging' => 0, 'post_status' => 'publish', 'caller_get_posts' => 1)); if ($r->have_posts()) : ?> <ul> <?php while ($r->have_posts()) : $r->the_post(); ?> <li><a href="<?php the_permalink() ?>"><?php if ( get_the_title() ) the_title(); else the_ID(); ?> </a></li> <?php endwhile; ?> </ul> <?php wp_reset_query(); // Restore global post data stomped by the_post(). endif; ?> </div></div> <div class="widget"><div class="widget-title"> <?php wp_list_bookmarks('category_before=&category_after=&title_before=<h3>&title_after=</h3></div><div class="widget-content">'); ?> </div></div> <div class="widget"><div class="widget-title"> <h3><?php _e('Meta','atahualpa'); ?></h3> </div><div class="widget-content"> <ul> <?php wp_register(); ?> <li><?php wp_loginout(); ?></li> <li><a href="http://wordpress.org/" title=" <?php _e('Powered by WordPress, state-of-the-art semantic personal publishing platform.','atahualpa'); ?>"> <?php _e('WordPress','atahualpa'); ?></a></li> <?php wp_meta(); ?> </ul> </div></div> <?php endif; ?> </td> <!-- / Right Sidebar --> <?php } ?>Any ideas? I don’t have any widget titles showing so I wouldn’t mind removing all of them, not just bookmarks.
Forum: Plugins
In reply to: Changing the links default title text to an image jpg of textEsmi to the rescue again! They should be paying you.
Thank you!
Forum: Themes and Templates
In reply to: Archive and Categories on a “Page” instead of sidebarHmm… I thought that page would help but I can’t find this “write > page” with the drop down menu with templates or on the sidebar.
http://codex.wordpress.org/Pages#Page_Templates is what I am looking at for info after looking at http://codex.wordpress.org/Creating_an_Archive_Index and being unable to find the page templates. Where are my page templates? I am using WordPress 2.7.1.
Thanks!
Forum: Fixing WordPress
In reply to: Read More ignored on home page problemPerfect! THANK YOU!
Forum: Fixing WordPress
In reply to: Changing the “read the rest of this entry” crashes my siteThe slash worked perfect! Thanks!
Forum: Themes and Templates
In reply to: Archive by alpha order?You sir need a raise. Thank you again!
Forum: Themes and Templates
In reply to: Archives by topic as list of titles?Thank you, not only did that work it taught me about the template hierarchy!
Forum: Themes and Templates
In reply to: Most solid themes?Very nice! I actually hope to edit the theme a bunch (at least the images) but want a really good base to start out with a good reputation 🙂 Thanks!
Forum: Themes and Templates
In reply to: Removing the “posted in” from the bottom of each postPerfect! Thank you!