Doodlebee
Forum Replies Created
-
Forum: Plugins
In reply to: [Back End Instructions] upload images to wrong folderThat’s really weird… What version of WP are you running? What other plugins are installed? And what theme are you using? Have you tried the old ‘deactivate everything and re-activate one by one” thing to see if it’s definitely my plugin?
Forum: Plugins
In reply to: [jQuery Comment Replies] Add numbers of repliesLet me see what I can pull off for you 🙂
Forum: Plugins
In reply to: [jQuery Comment Replies] Add numbers of repliesDid you get this working? Or…?
Forum: Plugins
In reply to: [Back End Instructions] Featured Slider image disappearMasleif, I seem to have misplaced your email address – could you drop me a note again so I can send these files to you? i think I’ve got it sorted out 🙂
Thanks!
Forum: Plugins
In reply to: [Back End Instructions] Possible to create a Custom Help Tab?Just letting you know that I have this added back in. I’m doing some final testing on the next release right now – so it should be up in the next day or two.
Forum: Plugins
In reply to: [Theme My Login] Fatal error: Call to a member function shortcode()Got it.
theme_my_login = Theme_My_Login::get_object(); $args = array_merge( $args, $instance ); echo $theme_my_login->shortcode( $args );Forum: Plugins
In reply to: [Back End Instructions] Featured Slider image disappear2.5.2 is the one I uploaded yesterday – so you’re using the current version. Apparently the fix didn’t take for you.
Forum: Plugins
In reply to: [Back End Instructions] Featured Slider image disappearOkay. How frustrating!
I think what I’m going to have to do is finish up the rewrite I’m working on. It’s almost complete – right now I’m testing the search functionalities. (i just tried to put this quick-release out for you, so your issue would be resolved – but apparently I’ve overlooked something.)
I’m in the middle of launching a HUGE site for a client right now, so I need to focus on that this week, but I’ll work on the BEI plugin this weekend, see if I can’t get the rewrite finished up. If I *do* get it completed, would you be my guinea pig, and let me email it to you to test it on your system before I officially put it in the repository? It’ll either be this weekend, or sometime next week.
Forum: Plugins
In reply to: [Back End Instructions] Featured Slider image disappearHow does it not work? Is it still doing the same thing as before? Are you getting any error messages/notifications?
Forum: Plugins
In reply to: [jQuery Comment Replies] Add numbers of repliesBah, I misunderstood your question – sorry. No, not really. You could edit the core code to do that, but if I ever update, it’ll overwrite your changes. As to how, though, I have no idea. I’ve never been asked that before.
EDIT: seems there is a method to do it, and use use the callback function (as mentioned previously) to pull that off. In place of the text (“children”) you could use $show, where $show:
$options = get_option('bb_jcr_options'); $show = $options['show_replies'];Forum: Plugins
In reply to: [jQuery Comment Replies] Add numbers of repliesThat all has to do with your styling. The plugin basically uses the default WordPress wp_list_comments method, just adds and extra class so you can have the expansion. if you want to change the default styling/layout of the comments themselves, then you need to use CSS, and/or add a function to your functions.php (to use a callback for the wp_list_comments) file to make those changes. My plugin doesn’t touch any of that, but here’s an example on how to do that in the codex.
Forum: Plugins
In reply to: [Back End Instructions] Featured Slider image disappearOkay, sorry so late, but I forgot that that weekend was Easter, and we’ve been redoing our kitchen, so this kind of got pushed back a bit.
I made a quick fix and uploaded it today. In my localhost install, with Canvas, it’s working. But let me know if you have any issues (and especially let me know of any error messages you get, because it’s working fine for me with nothing but WooThemes and this plugin activated).
I’m still working on the rewrite – turns out it’s a little mor difficult than I expected 🙂
in nay case, I *did* find a way to solve the issue. the problem is that I have a custom loop in my plugin that pulls in the instructions into whatever page you’re on. I had to remove the loop (if(have_posts()) etc) and replace it with a customSELECT query and a foreach statement. Apparently the Loop was conflicting with something in the Canvas theme. I’m still getting error messages with Canvas, but at least my plugin will work with it now.
Forum: Plugins
In reply to: [Back End Instructions] Possible to create a Custom Help Tab?An old version did that, but it was removed in version 2 because of several requests to just integrate it into the existing “Help” tab, especially since the effect was a bit buggy.
I’m currently working on a rewrite. I can try to add it back in as an option.
Forum: Plugins
In reply to: [Post Comments as bbPress Topics] Comments Not Showing on PostYep – looks like it’s because it’s being used on a custom post type. It works fine on regular posts.
Forum: Plugins
In reply to: [Post Comments as bbPress Topics] Comments Not Showing on PostI am having this same issue. I’ve reverted the theme to TwentyTwelve, and deactivated all plugins save the ones that are absolutely necessary:
Advanced CustomFields (but even with this shut off, it doesn’t affect it)
bbPress 2.2.4
bbPress Topics for Posts
Custom Post Type UI (because I’m using the bbPress Topics for Posts with a custom post type)Regular posts show everything just fine, but all i see on the custom post type page is the form to post a comment as a topic. None of the comments show up on the page, though.
ETA: I do have a fix I found previously to make the plugin recognize custom post types:
add_filter( 'bbppt_eligible_post_types', create_function( '$post_types', 'return array("post", "page", "courses");' ) );and yes, comments are enabled for the individual post, as well as for the custom post type in general.