Bainternet
Forum Replies Created
-
Forum: Plugins
In reply to: [Aviary Editor] Aviary closes before I can use itShould be fixed now. on version 0.3
Forum: Plugins
In reply to: [Aviary Editor] Aviary closes before I can use itShould be fixed now. on version 0.3
Forum: Plugins
In reply to: [Aviary Editor] Similar plugin still actively updated?this will be updated soon. 🙂
Forum: Plugins
In reply to: [In category Order] Where do I go to change the order?You need to go to the category edit screen.
Nice suggestions but not possible since the logic for sorting is done by the plugin and if that is deleted then it can’t be done
Forum: Plugins
In reply to: [User Specific Content] Select Default Options for all postsI’m sorry to hear your “not satisfied with this answer”
but I coded this plugin they way i needed it and shared it with the WordPress community the way I like.Also your use case is not everyone’s use case and not everyone use this plugin the way you do on your site.
I posted a solution to help overcome this “issue” as an example you can use it or not.
You can suggest and request features but not dictate what or how the plugin should work just because you need it that way.
maybe when I’ll find the time or sponsor I’ll add an option to define your defaults.
Forum: Plugins
In reply to: [In category Order] Does it keep the the order when the plugin is deletedIt is stored in the database but it wont work!
Forum: Plugins
In reply to: [In category Order] Order is not changed in category loopOut of the box its only changing the main query.
changing a custom query requires custom coding.
ex:
add_action('pre_get_posts','custom_pre_get_posts'); function custom_pre_get_posts($q){ if ($q->is_category('board-of-directors')){ $t = get_term_by( 'slug', 'board-of-directors', 'category'); if ($t){ $order = $GLOBALS['in_cat_order']->get_all_category_posts($t->term_id); if (count($order)> 0 ){ $q->set('post__in',$order); $q->set('orderby','post__in'); } } } }Forum: Plugins
In reply to: [ShortCodes UI] Tinymce button on frontend?No simple way of doing this, it requires major custom coding.
This is very rude of a plugin do disable it self with no update and based on this move I will never use the plugin again.
For anyone looking for a quick fix open requirements.php in the includes directory and add
return true;on line 23 eg:function tw_requirements_check( $force_check = false ) { return true; $check_okay = get_transient( 'tw_requirements_check' ); if ( empty( $force_check ) && $check_okay !== false ) { return $check_okay; } ....Forum: Plugins
In reply to: [Simple TOC] Use TOC outside the_content but inside the loopNot really since the plugin uses the content to alter it and add the anchor tags.
Forum: Plugins
In reply to: [Simple TOC] Multisite supportHumm… I have no idea whats being asked or reported here.
Forum: Plugins
In reply to: [Twitter Hash Tag Shortcode] Plugin API is outdated?fixed in version 0.6 but you have to provide the API keys your self.
Forum: Plugins
In reply to: [Author Category] WooCommerce SuppoertIt’s not really the directions this plugin is going but its an idea for a new plugin 🙂
Forum: Plugins
In reply to: [Author Category] Localisation not fully workingThanks again, Fixed in 0.8.