Forum Replies Created

Viewing 15 replies - 331 through 345 (of 3,008 total)
  • Plugin Author Doodlebee

    (@doodlebee)

    Yes, the plugin is supposed to allow you to add content using the regular methods. Basically, this just creates a new post type, so adding images, files, text, videos, etc. can be inserted into the post content area (just lik you could with any other post).

    There is no AJAX window to add a new instruction – it takes you to the instructions section, and there’s a “Write Instruction” area – exactly the same as the “write post” area. Do you mean you can’t upload an image when you click the “Add Image”icon? (That shouldn’t be affected, either.)

    I don’t know if the Greek characters are causing the issue – but it’s a possibility.

    Have you tried deactivating your theme and your plugin (and reactivating one at a time) to see if something else is conflicting?

    Thread Starter Doodlebee

    (@doodlebee)

    Okay! I got it. Instead of adding the option right there at the check, I put the add_option call within the create_first_post function. Works a treat!

    Thanks anyway 🙂

    Thread Starter Doodlebee

    (@doodlebee)

    YES! You are a HERO. Thank you SO MUCH!

    Thread Starter Doodlebee

    (@doodlebee)

    Cool – I’ll give that a shot. (I’m using the “div” instead of “li”, so I don’t know if that makes a difference) – thank you so much!

    Plugin Author Doodlebee

    (@doodlebee)

    I fixed this in the updated version (0.8) – I just submitted it to the repository, so it’ll be a few before it shows up.

    Doodlebee

    (@doodlebee)

    You’re looking for an image gallery with thumbnails. There’s tons of plugins that do that. My personal favorite is Shiba Gallery Plugin – but all kinds of gallery plugins do this. There’s tons in the plugin repository.

    Thread Starter Doodlebee

    (@doodlebee)

    Actually, I can’t on a forum like this – it’s for a client, and NDA and all that. But I was just wondering if this was some bug that I’ve come across because I’m currently poring over the code trying to figure out how to fix it. it’s really bizarre. I know how the forum feels about paid-for clients, but I figured this was worth mentioning because someone who’s *not* doing this for a client might have the same issue.

    Thread Starter Doodlebee

    (@doodlebee)

    Sweet! Thank you! That’s awesome 🙂

    Thread Starter Doodlebee

    (@doodlebee)

    What’s the default behaviour of WordPress search? A comma-separated list of category id’s?

    Yes. When I remove your plugin, the comma-separated values do, indeed do exactly what they are supposed to. When I reactivate the plugin, it ignores all the IDs save the first one.

    >>WordPress search actually works, it’s a process of fixing things that people tell me to fix. This is one of those.<<

    Okay, well I’ll change my vote form “doesn’t work” to “works (because truly, it *is* a terrific plugin) and this is obviously some kind of bug. I’ve been working on it myself, though – so if I figure anything out, I’ll pass the info to you.

    Thanks so much!

    Plugin Author Doodlebee

    (@doodlebee)

    Thanks, deflorence 🙂 If it helps, there’s a “css” folder in the plugin. You’re more than welcome to just change what’s in there to make it look however you like – I don’t recommend changing the div ID though, since the js that causes the show/hide function relies on the div ID. But if you do change the files, I’d definitely recommend making backups so they don’t get overwritten when an upgrade occurs 🙂 Another idea is to just hook into the enqueue_back_end_header() function to add your own styles 🙂 If you add your own to the end, it’ll override the plugins default (and very minimal) styles.

    Plugin Author Doodlebee

    (@doodlebee)

    Okay – I’ve just committed the 0.7 version to the plugin repository – it could take about 20 minutes or so before it shows up – so watch for it 🙂

    Thanks again for letting me know 🙂

    Plugin Author Doodlebee

    (@doodlebee)

    I just found the warnings. Yep – they are there if you have reporting turned on (either via PHP or through the ‘WP_DEBUG” constant in your wp-config.php file). Again, these warnings don’t affect the functionality of the plugin – still works fine. They are there because when you first activate the plugin, you don’t have any data for the plugin to pull – it’s empty.

    Thanks for letting me know about it though – because it *is* annoying, even if it doesn’t affect anything.

    I’ve just edited the plugin to check for empty data now – uploading version 0.7 (after I finish writing this post) to get rid of the notices. If you don’t mind, could you remove your vote that the plugin doesn’t work? Because it does. Thanks! 🙂

    Plugin Author Doodlebee

    (@doodlebee)

    That’s a “notice”, not an error. It means it doesn’t affect how it works. You’re seeing the notification because you have reporting turned on, probably set to view all.

    Not saying I won’t look into it, but it’s not an error.

    Thread Starter Doodlebee

    (@doodlebee)

    The site I used it on isn’t live yet, so I can’t show it to you. But when I used it, all I did was upload and activate the plugin. I used the documentation at http://mediaelementjs.com to make my changes. I basically did everything I needed in my functions.php file, and then created a shortcode to pull in the dynamic stuff into the function.

    Thread Starter Doodlebee

    (@doodlebee)

    Okay, I think I’ve got it sorted. I still need to work out some kinks with the layout, but it seems to be working – my associated Pages/categories are using the same template that’s set for the Page.

    Anyway, the function I used to make it work:

    function find_template() {
    	global $wpdb, $post;
    	$where = where_are_we();
    	if(is_category()) {
    	  $desc = get_category($where)->description;
    	  $page = get_page_by_title($desc);
    	  $pageID = $page->ID;
    	  $template = get_post_meta($pageID, '_wp_page_template', true);
    	  $templatepath = get_query_template('page', $template);
    	}
    	return $template;
    }

    then, at the very top of my index.php file:

    <?php $template = find_template();
            if ($template) {
    		  locate_template($template, true);
            } else {
            	get_header();
            	get_sidebar();  ?>

    So far it’s working just fine. I just have some layout issues to address. And again, the “where_are_we()” function I used up there is a custom written function to check to see where we are, and grab the ID of the topmost parent/category.

Viewing 15 replies - 331 through 345 (of 3,008 total)