/themes/marketers-delight/searchform.php
and change line 12 to:$source = ucwords( get_post_type() );
/themes/marketers-delight/templates/breadcrumbs.php
find the hard coded "Docs" string and change it to what you'd like. In the next update this will automatically generate the post type name, so if you renamed it to "Questions" as in my last reply it will show here automatically.Yes, these are both related to a couple of changes I am going to release in a patch update you can make now if you'd like. This involves making simple edits to core MD files that will be in the next release already:
1) Edit/themes/marketers-delight/searchform.php
and change line 12 to:
PHP:$source = ucwords( get_post_type() );
2) Edit/themes/marketers-delight/templates/breadcrumbs.php
find the hard coded "Docs" string and change it to what you'd like. In the next update this will automatically generate the post type name, so if you renamed it to "Questions" as in my last reply it will show here automatically.
Let me know how that works for you. The questions library you've setup looks AWESOME on your site!
This will require a change to a core MD file, which has been on my todo list as there are a few enhancements I've been wanting to make to the searchform anyhow. I can confirm the following change will be in the next MD5.3.x patch, so it will be safe for you to edit. You can open /wp-content/themes/marketers-delight/searchform.php and replace line 13-14:WOOT! Thanks. Much better now -- only issue so far is "Docs" still shows up in the search bar on category pages. It doesn't on the home of Docs though, odd.
Ray
elseif ( is_category() || is_tax() )
$source = ucwords( get_post_type() );
elseif ( is_category() || is_tax() ) {
$post_type = get_post_type_object( get_post_type() );
$source = $post_type->labels->name;
}