tylerhauser
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: change “publish” button to “pending review”I’m looking for the EXACT capability too. Not possible with any role behaviour plugins I know of. Anyone have any ideas?
And I should mention that I’ve included the
<?php wp_head(); ?>
hook and the problem still persists.I’m having this problem as well, though I’m not sure what file permissions to change to fix it. Could you explain the specifics of your file permissions problems?
Thanks!
Forum: Fixing WordPress
In reply to: Default navigation is giving a 404 errorAnyone got anything on this? Is this a bug?
Forum: Fixing WordPress
In reply to: Default navigation is giving a 404 errorI’ve experienced this bug as well. And just to include a bit more info, I’ll just mention that I experience this while using the WP-PageNavi plugin. Here’s a link to a post on the plugin support forum about this issue. Also, it occurs using the default theme. Any help with this would be great!
Thanks!
Forum: Plugins
In reply to: [Plugin: Audio Player] Version 2.0 beta releasedOK, so I’ve found a problem that may or may not be do to your patch, abird. I am unable to change the colour of my player. The colour picker doesn’t open when you click on it and the fields for each part of the player (ie. Left Background, Left Icon, etc) aren’t keeping any values. I’ve tried deactivating all of my plugins to see if there was some interference from another one, perhaps, but the problem persists. Anyone able to help?
Thanks!
Forum: Plugins
In reply to: [Plugin: Audio Player] Version 2.0 beta releasedThanks abird! Your fix works perfectly! This problem with the Media Library not working properly was simply the bane of my existence. But now, YAY! Thank you very much.
Forum: Fixing WordPress
In reply to: get_posts doesn’t work after 2.6 upgradeAwesome! Thanks Hafiz! Using query_posts() definitely works as a temporary fix. Here’s the code I used…
<?php $my_query = new WP_Query('category_name=site-news&showposts=1'); ?> <?php while ($my_query->have_posts()) : $my_query->the_post(); ?> <p><?php the_title(); ?> <?php if ($post->post_excerpt) : $output = $output = $post->post_excerpt; $output .= ' <a href="https://www.twowordheap.com/category/site-news/" title="Continue reading...">Continue reading...</a>'; echo apply_filters('the_excerpt',$output); else: the_content(); endif; ?> </p> <?php endwhile; ?>
I wonder what broke get_posts()…
Forum: Themes and Templates
In reply to: Create a category-specific tag cloud?Also wondering this.
Forum: Plugins
In reply to: Configuring ShareThis PluginI, too, would like to know how to do this. Specifically, I’d like to insert my own smaller version of the ShareThis icon.
Forum: Fixing WordPress
In reply to: Float problem in basically anything but Safari.Forum: Fixing WordPress
In reply to: Change title attribute of categories listed with wp_list_categoriesI figured it out! I’m so happy. All I wanted to do was get rid of the title all together because it interfered with browsing the menu. All I did was delete “View all posts filed under %s” in the ‘classes.php’ file. It’s found inside the ‘wp-includes’ folder. Thank you so much Michael!
Forum: Fixing WordPress
In reply to: Change title attribute of categories listed with wp_list_categoriesCan one change the core code? If so, how?
Forum: Fixing WordPress
In reply to: Change title attribute of categories listed with wp_list_categoriesBump.
Forum: Fixing WordPress
In reply to: Stack overflow at line: 500In what file do most themes call prototype.js?