drewshen
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Sermon Browser] Podcast Links Not Workingthanks RVoodoo, I will try this one out. It probably makes more sense to switch to a different plugin than try to sort through an outdated one.
Forum: Plugins
In reply to: [Plugin: Audio Player] Version 2.0 beta releasedFlyzer: Hey
Just a few days ago I started with blogging. The Audio Player – Plugin is one of the first extensions I installed, great plugin!
Unfortunately I am having problems concerning the appearance. The Audio Player works but inexplicably it appears in a quotation box although I haven’t insert it.
Here you can take a look at the issue
WebsiteHope somebody can help… Thx
it looks like you placing the audio player inside of the “pre” tag, which you have defined to display the blockquote.gif image. You will either have to break the audio player out of this tag, or remove the image call in css. hope this helps!
Forum: Plugins
In reply to: [Plugin: Audio Player] Version 2.0 beta releasedI didnt see this problem already posted, in IE7 my audio player works but is playing the sound tracks at a very fast rate (sounds like chipmunks) does anyone know a fix for this? Thanks!
Forum: Fixing WordPress
In reply to: query_posts() problemhttps://www.alliancechristiancenter.org/development/news/events/
This is the link to the page I am trying to display the category in. I have tried even just displaying all posts on the page, but it seems as if no data is being retreived at all
Forum: Fixing WordPress
In reply to: query_posts() problemStill no dice, this is the only loop i have on the page.
Forum: Fixing WordPress
In reply to: query_posts() problemThanks for the reply! That is actually not my full loop, I merely posted those two lines to display the line of code I added for the sake of saving space. here is the full loop:
<?php query_posts('cat=5'); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); // the loop ?> <!--post title--> <h1 id="post-<?php the_ID(); ?>"><?php the_title(); ?></h1> <!--post text with the read more link--> <?php the_content(); ?> <!--for paginate posts--> <?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?> <?php //comments_template(); // uncomment this if you want to include comments template ?> <?php endwhile; // end of one post ?> <?php else : // do not delete ?> <h3>Page Not Found</h3> <p>We're sorry, but the page you are looking for isn't here.</p> <p>Try searching for the page you are looking for or using the navigation in the header or sidebar</p> <?php endif; // do not delete ?>
Forum: Plugins
In reply to: [Plugin: slidoox] Slidoox, new version?i cannot activate the plugin, it says
Plugin cannot be activated because it triggered a fatal error.
Parse error: syntax error, unexpected ‘}’ in mysite/wp-content/plugins/slidoox/slidoox.php on line 135
@arkitekt I verified in the php that my code for generating the table says
$sql = "CREATE TABLE " . $table_name . " ( id mediumint(9) NOT NULL AUTO_INCREMENT, title VARCHAR(100) NOT NULL, content text NOT NULL, position int(3) NOT NULL, UNIQUE KEY id (id)
is this correct? thanks!
Forum: Themes and Templates
In reply to: Custom page layout change??that worked! thanks again for the help. the page.php in the default theme calls that section
<div id="content" class="narrowcolumn">
so I had to rename both of those sections in the css.Forum: Themes and Templates
In reply to: Custom page layout change??jarvis88, i think i created a solution to removing the sidebar, i just made a new page template and removed the sidebar php reference. I also saw the solution for removing the sidebar for a certain page, within page.php:
<?php if(is_page('Page Name')) : else : get_sidebar(); endif; ?>
However, there is still a space where the sidebar should be. is this where the css comes in? How can i make a certain page template show no space for the sidebar, but fill up the entire space? thank you!
Forum: Fixing WordPress
In reply to: Can you hide the sidebar in a Page?*Edit* Solved my own problem, thanks! ??
Forum: Themes and Templates
In reply to: Custom page layout change??thank you so much! you can email me at [email protected] and i do know css
Forum: Themes and Templates
In reply to: Custom page layout change??thanks! and that would be great if i could remove the sidebar for this page as well. i am using the default theme however, and wordpress 2.7
Forum: Plugins
In reply to: [Plugin: glassy] Waiting for your feedbackhello, i was wondering is it possible to turn off the reflect effect on a certain page or image? thanks!
Forum: Themes and Templates
In reply to: Custom page layout change??hey jarvis88, i think i need to do the same thing for my page, will that plugin cover everything? I want to have my index point to a static page, however i want this static page to look different from my normal pages that users will create with wordpress. does this make sense?
Forum: Fixing WordPress
In reply to: Dedicated category for podcastinggotcha, thanks! changed status to resolved