Tim Bowen
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Download Monitor] Disable Front-End CSSHere’s a simple solution we used to remove this extra server call. Just add the following to your functions file to deregister the CSS file:
add_action( 'wp_print_styles', 'my_deregister_styles', 100 );
function my_deregister_styles() {
wp_deregister_style( 'dlm-frontend' );
}Forum: Plugins
In reply to: [Search Everything] Disable Frontend-Stylesheet?Figured it out after looking more deeply into plugin code. Just add this to functions.php to remove the version script that’s being added to the header.
remove_action( 'wp_head', 'se_global_head', 10 );Forum: Plugins
In reply to: [Search Everything] Disable Frontend-Stylesheet?This works great for removing the CSS. But what about removing the <script> that’s inserted into the header?
Thanks!
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF®)] WordPress 3.9 RC1 and disappearing TinyMCEI’m having this same issue, even when using ACF 5 beta. The new TinyMCE does work but without the HTML fallback it’s difficult to know if clean code is being added, especially if you copy/paste from another source.
Forum: Plugins
In reply to: [Gravity Forms + Custom Post Types] multi-select linked to a custom taxonomyI’m having this same issue using:
Gravity Forms v1.7.5
Gravity Forms + Custom Post Types v3.0.1
WordPress v3.5.1Does anybody have a fix for this?
We’re also running into this issue but the github bug fix didn’t seem to do it for us. Any idea how to get it working?
Forum: Plugins
In reply to: Using QuickPress for Custom Post TypesI’m also looking for this solution. I found notes saying this had been moved to WP 3.2, however I’ve yet to find any documentation on how to do it.
Any suggestions?
Thanks guys. It looks like this issue was fixed with the 3.5.7.2 update.
Forum: Plugins
In reply to: [WordPress Importer] [Plugin: WordPress Importer] Not importing media libraryI’m having this same issue. Any idea how to fix this?
I was able to get it working by adjusting line 270 (from daybot’s post) to this:
$content .= sprintf('<div class="canvas" style="width: %dpx; height: %dpx;">', '100%', $info->height);Ben, any chance you can post the code that you used to get this working? It looks like this comment form hid the solution daybot posted.
Thanks!
Yes, The WordPress SEO plugin works great with Shopp.
Forum: Plugins
In reply to: List Bookmarks Categories as LinksI’m also looking for a solution to this. Any ideas?
My issue is coming from a call I have in the header to: date_default_timezone_set()
I wasn’t sure how to reset this, but when I removed it the calendar is fixed. I’m going to keep searching for a way to escape this call so I can use this functionality along with the events calendar plugin.
I’ve also had this issue and it had to do with my header.php theme code.