bahumba
Forum Replies Created
-
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Event popups not closingI had tried a brand new install of WordPress with the dafult theme and only Ai1ec, and still had the issue. It was a syntax error somewhere. But the new 1.8.4 update seemed to fix it.
Gonna mark this as resolved for my self
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Event popups not closingNo I have not. At least not yet. I will post back if I do though.
Forum: Plugins
In reply to: [Plugin: All-in-One Event Calendar] – Syntax Error on hover off of eventHi Daniel,
I am having the exact same problem. I was curious if you were able to find any solution.
Thanks
Forum: Fixing WordPress
In reply to: Error using $wpdb in a pluginWhen I do the var_dump on the submit page, it returns NULL. But on the page where my query works, it returns:
object(wpdb)#1 (70) { [“show_errors”]=> bool(false) [“suppress_errors”]=> bool(false) [“last_error”]=> string(0) “” [“num_queries”]=> int(81) [“num_rows”]=> int(2) [“rows_affected”]=> int(1) [“insert_id”]=> int(11096) [“last_query”]=> string(53) ” SELECT * FROM wp_brain_in_gear ” …. with a lot more after that
Forum: Fixing WordPress
In reply to: Error using $wpdb in a pluginI believe it is a class. If you try to echo $wpdb you get an error saying something along the lines of “could not convert to string from class”.
Forum: Fixing WordPress
In reply to: Paginate HTML table with Posts Per PageI don’t think I am going about this right. My php knowledge is limited, and nothing seems to be working the way I want.
This is what I have. It gets the posts correctly and displays them right, but I cannot get the page links to appear.
<?php $paged = ( get_query_var('page') ) ? get_query_var('page') : 1; $args = array( 'cat' => 42, 'order' => 'ASC', 'paged' => $paged, 'posts_per_page => 10'); $custom_query = new WP_Query( $args ); while($custom_query->have_posts()) : $custom_query->the_post(); ?> <div <?php post_class(); ?> id="post-<?php the_ID(); ?>"> <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> </div> <?php endwhile; ?> <?php wp_reset_postdata(); ?>
Can you see what I am doing wrong?
Forum: Fixing WordPress
In reply to: Hiding Comments by dateI found a way to do this quite. I set up a condtion that checks the timestamp of the current day – 15 to the timestamp of the comment date. If the day is acceptable, then continue to create the comment. If not, do nothing.
I ended up figuring this out. I had to make changes to the conditions that triggered the errors
Forum: Fixing WordPress
In reply to: Paginate HTML table with Posts Per PageWhat if I am not doing this in a template? I am trying to create a custom query on a specific page in order to format the list of posts from a particular category in a specific manner. But, I still want to be able to use the post_per_page => 10 and have the older/newer links. Any suggestions?
Forum: Fixing WordPress
In reply to: Paginate HTML table with Posts Per PageI too am looking for help with this.
vtxyzzy, when you say that you need to “provide code to let the viewer select the page”, what are you meaning? Do we have to manually add the link that is clicked?
I’ve decided just to use a different method.
Thank you very much! I think the change to the .ai1ic-filter-selector overflow was what did it. I would not have thought to do that. Thanks again.
I am having the same issue with the Category drop down being behind everything else in IE 8. I tried using the meta tag above, but with no results.
Did you make adjustments to your CSS as well?
Forum: Fixing WordPress
In reply to: Hiding Comments by dateI dont want to close the comments, I just want to hide old ones. Its for our company intranet where people can post things (using the comment structure) they want to sell, but we want to filter out things that have been posted for too long, while still allowing people to make new postings(comments).