whiteorb
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Survey And Quiz Tool] Conflicts with Gravity FormsThis has officially become a big issue for us. In order to edit gravity forms I have to disable Survey & Quiz. Any help would really be appreciated.
Forum: Plugins
In reply to: [WP Survey And Quiz Tool] Conflicts with Gravity FormsAny ideas on this?
Forum: Plugins
In reply to: [TagPages] [Plugin: TagPages] PageTags cause tag results to lose menuAh ok, so I set the priority before the function and that seemed to resolve another issue that had come up. Very cool!
Forum: Plugins
In reply to: [TagPages] [Plugin: TagPages] PageTags cause tag results to lose menuSo it was caused by this function
add_filter('pre_get_posts', 'query_post_type'); function query_post_type($query) { if(is_category() || is_tag()) { $post_type = get_query_var('post_type'); if($post_type) $post_type = $post_type; else $post_type = array('post', 'software', 'documents', 'news', 'nav_menu_item', 'page'); $query->set('post_type',$post_type); return $query; } }
Fortunately, I don’t need it any longer. Curious though why that would happen.
Forum: Plugins
In reply to: [TagPages] [Plugin: TagPages] PageTags cause tag results to lose menuIt doesn’t occur with the default themes. Can you think of anything that could possibly cause this?
Forum: Plugins
In reply to: [TagPages] [Plugin: TagPages] PageTags cause tag results to lose menuIt doesn’t occur with the default themes. Can you think of anything that could possibly cause this?
I resolved this with
$('#modal').click(function (e) { $('#modal-content').modal({ overlayClose:true, position: ['15%', null], }); return false; });
Forum: Plugins
In reply to: [More Fields] WYSIWYG field broken in WordPress 3.2Err I mean WordPress 3.2.1
Forum: Plugins
In reply to: [Smart 404] Smart 404 not working in 3.1.1When I enable Smart 404 any page with a 404 will throw a redirect loop. There really aren’t any other details beyond that.
Forum: Plugins
In reply to: [Terms of Use] Adding the Accept date on a custom pageBut is it the date that they agreed to the terms of use on a page?
Forum: Plugins
In reply to: [Smart 404] Smart 404 not working in 3.1.1Yeah it’s causing a redirect loop.
Forum: Plugins
In reply to: [WP-Table Reloaded] Using table elements for tables not placed in plugin.Oh also saving to excel and csv.
Forum: Plugins
In reply to: [More Fields] WYSIWYG field broken in WordPress 3.2In order to use Aaron’s fix you would have had to make the Post_Type manually. I’m using More_Types.
Forum: Plugins
In reply to: [More Fields] WYSIWYG field broken in WordPress 3.2So what’s the solution to this issue? So what’s the solution to this issue? I don’t see anything within More Fields that references
wp_tiny_mce_preload_dialogs()