Travis Ballard
Forum Replies Created
-
Forum: Plugins
In reply to: [FBLike] [Plugin: FBLike] Update of FB like 1.3.2Hey guys, this has been fixed. I used add_filter instead of apply_filters, durr 🙂 you should get an update notice to 1.3.3 here shortly.
Thanks,
Travis BallardAlright guys, I just pushed an update for 1.4.2 that should fix these errors. I setup MS on one of my servers and tested it, saw the cannot load and cannot redeclare errors and they seem to have been fixed. After you update the plugin can you verify this for me?
Thanks,
Travis BallardHey thanks for the heads up, fellas. Unfortunately I’m heading out for a wedding here in a bit and won’t be able to get a fix out until later next week.
namnum: If you figure it out before then let me know and I’ll apply the patch when I get back. Otherwise I’ll have a look at it and post an update as soon as I can.
Thanks,
Travis Ballardit was only those notices that were thrown. sorry about that
Forum: Plugins
In reply to: [TBTestimonials] [Plugin: TBTestimonials]Typo in menuYou should get an update notice soon. Next release is going to be even better!
Notice: Undefined offset: 0 in /var/www/wp3/wp-includes/plugin.php on line 747 Notice: Undefined offset: 0 in /var/www/wp3/wp-includes/plugin.php on line 765 Notice: Undefined variable: wp_ver in /var/www/wp3/wp-content/plugins/wordpress-popular-posts/wordpress-popular-posts.php on line 113 Notice: load_plugin_textdomain was called with an argument that is deprecated since version 2.7 with no alternative available. in /var/www/wp3/wp-includes/functions.php on line 3322Forum: Plugins
In reply to: [TBTestimonials] [Plugin: TBTestimonials]Typo in menuNot bad ideas at all. I like the company line idea, I’ll add a meta box for it. I’ll also remove the menu location setting 😛
I think the options you thought up will all make it into the next release. Thanks!
Forum: Plugins
In reply to: [TBTestimonials] [Plugin: TBTestimonials]Typo in menuThat’s not a bad idea actually though I’d like some more ideas on other settings that you ( and everyone else ) would possibly like to see added. Feels like overkill to create an options page for 2 options so let’s hear some more ideas and see what we can come up with for it to make it even better.
Forum: Plugins
In reply to: [TBTestimonials] [Plugin: TBTestimonials]Typo in menutypo has been fixed and the h2 is now defined by the theme. so if your sidebar uses h3’s for widgets, this plugin will as well. pushed the update, you should get a notice soon.
Forum: Plugins
In reply to: [TBTestimonials] [Plugin: TBTestimonials]Typo in menuno there’s no reason for using the h2. you can edit the css in
/tb-testimonials/inc/cssif you want to style it it though. I’ll change it to h3 in the next update which will be today. Also thank you for pointing out the typo, will fix that here in the next update as well.Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Gallery in template file?well basically i ended up just checking to see if the gallery existed with the same name as the title of the current page and if it did, showed a link to it. if you still need it, 10 months later… the code is below.
// GALLERY FUNCTIONS - 07.06.08 function has_gallery($title) { global $wpdb; $table = $wpdb->prefix . "ngg_gallery"; $sql = "select count(gid) from " . $table . " where title like '%" . str_replace(".","",$title) . "%'"; if ( $wpdb->get_var($sql) != 0 ) return true; else return false; } function get_gallery($title) { global $wpdb; $table = $wpdb->prefix . "ngg_gallery"; return $wpdb->get_var("select gid from " . $table . " where title like '%" . $title . "%' limit 1;"); } function gallery_link( $title ) { global $wpdb; $table = $wpdb->prefix . "ngg_gallery"; return '<p class="gallery-link">For more photos from ' . $title . ', please visit the <a>get_var("select name from " . $table . " where title like '%" . str_replace(".","",$title) . "%' limit 1") . '/">' . $title . ' Photo Gallery</a></p>'; } function gallery_link_no_article( $title ) { global $wpdb; $table = $wpdb->prefix . "ngg_gallery"; return '<p class="gallery-link">Even though we haven\'t written an article about ' . $title . ' yet, we have been there and have added a gallery for you to view. Please visit the <a>get_var("select name from " . $table . " where title like '%" . str_replace(".","",$title) . "%' limit 1") . '/">' . $title . ' Photo Gallery</a> to view the photos from this park.</p>'; }Forum: Plugins
In reply to: Using TinyMCE in plugin causes edit page problemalright well i think i solved that issue by only having my theme load the visual editor on the pages that i wanted it on. i think because it tried to load the visual editor on all the pages it was causing the errors. so i only load it on the pages i want now.
if( isset( $_GET['page'] ) && $_GET['page'] == 'testimonials' || $_GET['page'] == 'random_tips' ) add_filter('admin_head', array( &$this, 'add_tinymce' ) );still lost on the removing widgets though. any ideas?
Forum: Fixing WordPress
In reply to: No link to log inaccess blog.com/wp-admin/ and it will ask you to login.
Forum: Fixing WordPress
In reply to: comment merginganyone?
Forum: Fixing WordPress
In reply to: comment mergingwhew thank you. didn’t mean to post 10 duplicates of this topic 🙂