Brett Bodine
Forum Replies Created
-
drazon, I really do believe you should revise your rating out of respect for the work Steven has put into this. While it is true that his plugin does provide out of the box functionality that you can install and instantly use on any theme, he has put a lot of thought into this plugin.
What it does is provide the framework for churches to integrate sermons, podcasting, events, location information and events that a developer can use to build a site for a church with these key components.
He set up very easy to follow documentation for other developers to add this functionality and in many cases even sell it that theme for profit. He could have easily put this together and bundled it with his own themes and not make it available for other developers to use and would have completely justified in doing so. Instead, he put his work out there along with documentation on how to use it which is very generous and perfectly in line with the spirit of open source.
Reviews shouldn’t be used as a way to express your displeasure and share your opinion on what you think a developer should or shouldn’t do. Rather, they should be a way for you to provide feedback to the developer and other potential users on how well the plugin does or does not function. In this case, his plugin functions very well and does exactly what it claims to do, and does it very well.
Forum: Plugins
In reply to: [Church Content - Sermons, Events and More] Changing "Sermons" to "Teaching"I am having a little trouble. I found http://wpsmith.net/2013/wp/use-registered_post_type-hook-to-modify-post-type-registration/ as an example. They are using registered_post_type but would I use ctc_post_type_sermon_args to hook into filtering the arguments? I haven’t done this before.
Forum: Plugins
In reply to: [Church Content - Sermons, Events and More] Changing "Sermons" to "Teaching"Thanks. I do need a little help in rewriting. I found http://wpsmith.net/2013/wp/use-registered_post_type-hook-to-modify-post-type-registration/ as an example of filtering the arguments but I haven’t done this before.
I see you have
$args = apply_filters( 'ctc_post_type_sermon_args', $args ); // allow filteringwhich allows you to create the filter.In the example I found from the link above, they have
add_action( 'registered_post_type', 'gs_books_label_rename', 10, 2 ); /** * Modify registered post type menu label * * @param string $post_type Registered post type name. * @param array $args Array of post type parameters. */ function gs_books_label_rename( $post_type, $args ) { if ( 'gs_books' === $post_type ) { global $wp_post_types; $args->labels->menu_name = __( 'Books', 'gs_books' ); $wp_post_types[ $post_type ] = $args; } }Which allows you to filter the menu_name of the post type gs_books.
Would this same thing work for the sermons where the post type is ctc_sermon?
Do I use ctc_post_type_sermon_args instead of registered_post_type since that is the hook?
Forum: Plugins
In reply to: [WP Offscreen Navigation] Not working properly on iOS & SafariDid you find a solution to this. I am noticing the same thing and haven’t found anything yet.
Forum: Plugins
In reply to: [WP Offscreen Navigation] Move over to rightYou can change the options in the jquery.sidr.js file on line 185 to right. You will also need to set #mobile-header #responsive-menu-button to float: right;
Forum: Plugins
In reply to: [WP Bootstrap Tabs] Link to specific tabThere are several discussion on that. It is one thing missing from bootstrap (at least bootstrap 2). You can look here
I have implemented direct links to tabs on sites where I put the bootstrap tabs directly in the functions.php file but I am having trouble implementing it on a site right now using the plugin. I will let you know if I find anything.
Forum: Plugins
In reply to: [WP Bootstrap Tabs] How to disable the plugin in certain pageAnother user brought up the topic of loading just on pages with the tabs so I will take a look and do some updates tomorrow.
Forum: Plugins
In reply to: [WP Bootstrap Tabs] Two tab sets on one page?Sorry for the delay, I will take a look.
Forum: Reviews
In reply to: [WP Bootstrap Tabs] Does what it saysThanks @the-rock. I am glad it is useful for you.
Forum: Reviews
In reply to: [Theme Blvd Layout Builder] Great tool for customizing layoutsAnother sort of workaround is to select content from external page.
I thought about that as well but I am not a big fan of creating new pages to use for content. It seems to clutter up the list of pages.
I quickly messed around with Advanced Custom Fields and it is possible to set up a WYSIWYG field for adding content and then display it in a raw content box using a shortcode. Not as good as a Raw content box with it’s own TinyMCE editor but it keeps all the content on the same page you are editing rather than importing from another page or using a widget to handle the content.
Forum: Plugins
In reply to: [WP Bootstrap Tabs] .active class not removed from inactive tabsWhat theme are you using? I looked at your tabs with Firebug but didn’t see anything that jumped out that could be causing the error. Are you using a bootstrap based theme?
Forum: Plugins
In reply to: [WP Bootstrap Tabs] .active class not removed from inactive tabsCan you give me a link to your site so I can check it out?
Forum: Plugins
In reply to: [WP Bootstrap Tabs] 'p' above the tabsI updated the plug in which should now get rid of that empty <p></p> above the tabs.
Forum: Plugins
In reply to: [WP Bootstrap Tabs] 'p' above the tabssyber90 and nellygrl, I will test it out in the next week and try to get an update.
Forum: Plugins
In reply to: [WP Bootstrap Tabs] Tabs inset in page?Sorry for the delay, I will spend some time on this in the next few days, I haven’t had a chance to test it out. I am aware of one bug with a missing closing </div> tag so I will test and updated.