Josh Betz
Forum Replies Created
-
Forum: Plugins
In reply to: [FeedWordPress] Formatting strippedAny word on when this will be fixed? It’s super important to something I’m working on. I’m guessing the plugin author needs to send the content through wpautop automatically?
Forum: Hacks
In reply to: Renumbering Post IDsExport/import keeps all the same ID’s. I’ve tried it already. I mean, it makes sense — they don’t want to deal with changing all the dependencies that are already built into that export file. I’m going to do some research into what all those dependencies are and write something up, or look at other options.
Forum: Plugins
In reply to: [Flickr Press] [Plugin: Flickr Press] Warning: mysql_query()It has something to do with the cache not being over-writable in the database or something, I think. But I don’t really have any idea how to fix it. Hopefully the dev gets on this soon. I’ve got an amazing review about this plugin sitting in my drafts right now, but it’s looking less and less likely that I’ll be able to publish it. I can’t publish a positive review about something with such a huge hole in it.
Forum: Themes and Templates
In reply to: How to move page numbers in Twenty Ten themeMove the following code within
single.php
to where you want the navigation to display.<div id="nav-below" class="navigation"> <div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '←', 'Previous post link', 'twentyten' ) . '</span> %title' ); ?></div> <div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '→', 'Next post link', 'twentyten' ) . '</span>' ); ?></div> </div><!-- #nav-below -->
Forum: Hacks
In reply to: custom rewrite rules for custom post typearray('slug' => "explore/resources/%category%", 'with_front' => false),
Forum: Themes and Templates
In reply to: Looking for a theme with sidebar menu buttons…Do you have a website up already that the theme will be for? Do you want big rounded buttons or menu buttons? Please explain, thanks. Maybe we can modify an existing theme to get it setup like this…
Forum: Themes and Templates
In reply to: Messed up layout in 2010 WeaverIs that it pushed down into the footer?
Forum: Themes and Templates
In reply to: I download a theme, but how do I install in and get it to workMake sure it’s in the wp-content/themes folder. The best way is to just install them from the built in theme installer, but you can upload them via ftp too. What theme is it?
Forum: Themes and Templates
In reply to: Theme Install FreezesIf you can create files from your ftp client, that will be the easiest way. Just create .htaccess
If not, just create a .htaccess file on your desktop and upload it. You can edit it in any text editor.
Forum: Themes and Templates
In reply to: Dynamic Menu Highlighting with WP 3 MenusYou wouldn’t add an id of current. In WordPress the current menu item has a class of .current_menu_item
If you’ve already got your CSS written, you can just replace #current with .current_menu_item
Forum: Themes and Templates
In reply to: Don't strip certain tags in excerptI’m thinking you want
function replacement_wp_trim_excerpt($text) { $raw_excerpt = $text; if ( '' == $text ) { $text = get_the_content(''); $text = strip_shortcodes( $text ); $text = apply_filters('the_content', $text); $text = str_replace(']]>', ']]>', $text); $text = strip_tags($text); $excerpt_length = apply_filters('excerpt_length', 55); $excerpt_more = apply_filters('excerpt_more', ' ' . '[...]'); $words = preg_split("/[\n\r\t ]+/", $text, $excerpt_length + 1, PREG_SPLIT_NO_EMPTY); if ( count($words) > $excerpt_length ) { array_pop($words); $text = implode(' ', $words); $text = $text . $excerpt_more; } else { $text = implode(' ', $words); } } return $text; //return apply_filters('replacement_wp_trim_excerpt', $text, $raw_excerpt); }
Forum: Themes and Templates
In reply to: Footer not sticking to bottom of pageHave you changed something? I don’t even see a footer at all anymore.
Forum: Plugins
In reply to: [Plugin: FancyFlickr] SupportWhat custom theme are you using?
Forum: Themes and Templates
In reply to: Help! Please, i'm desperate!Was it a custom theme?
Can you mock it up in photoshop?
What’s your URL?
Forum: Plugins
In reply to: [Plugin: FancyFlickr] SupportIt should work the same way on pages as in posts. You won’t have to worry about the php code unless you want to implement it into the actual theme, but the shortcode will work just fine for pages as well as posts.