Mindshare Labs, Inc.
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 3.3 getting inside the admin login HEADSure! This is working for me:
add_action("login_head","mindshare_login_head"); function mindshare_login_head() { echo "<style type='text/css'>.login h1 a { background: url('http://somecompany.com/media/login.png') no-repeat top center !important; }</style>"; }Forum: Fixing WordPress
In reply to: 3.3 getting inside the admin login HEADActually I just found an error in MY code. Doh! This is working for me no problem now in 3.3… BJ maybe you should double check your code?
Forum: Plugins
In reply to: [Sociable] [Plugin: Sociable] When upgrading to a newer versionYep same problem on several sites for me. I’m going to be uninstalling Sociable permanently unless this gets fixed.
Forum: Plugins
In reply to: next_post_link in single.php and custom post typeBump. Looking for the same solution…
Just a follow up – this issue seems to have been resolved in the latest version 0.7.1.6
I wound up fixing the issue on my site by re-installing the plugin files and refreshing the feed.
Same problem here! I’ve tried refreshing the feed, changing the number of events to 100, etc.
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF®)] Values not saving in page templateThis is a bug! I’m having the exact same problem using the latest version 2.1.4
Forum: Plugins
In reply to: [WP-chgFontSize] [Plugin: WP-chgFontSize] Doesn't work over HTTPS / SSLLook for this block around line 90 in wp-chgfontsize.php:
if ($chgfontsize_display_image == 'on') { echo "chgfontsize_imgdecact = new Image();\n"; echo "chgfontsize_imgdecact.src = '" . WP_PLUGIN_URL . "/wp-chgfontsize/decrease_activated.gif';\n"; echo "chgfontsize_imgdecdea = new Image();\n"; echo "chgfontsize_imgdecdea.src = '" . WP_PLUGIN_URL . "/wp-chgfontsize/decrease_deactivated.gif';\n"; echo "chgfontsize_imgincact = new Image();\n"; echo "chgfontsize_imgincact.src = '" . WP_PLUGIN_URL . "/wp-chgfontsize/increase_activated.gif';\n"; echo "chgfontsize_imgincdea = new Image();\n"; echo "chgfontsize_imgincdea.src = '" . WP_PLUGIN_URL . "/wp-chgfontsize/increase_deactivated.gif';\n"; } echo "chgFontSize_display('" . $chgfontsize_display_text . "', '" . $chgfontsize_display_image . "', '" . $chgfontsize_display_steps . "', '" . $chgfontsize_display_restore . "');\n"; echo "chgFontSize();\n"; echo "//-->\n"; echo "</script>\n"; } // Header functions function add_chgfontsize_js() { echo "\n<script src=\"" . WP_PLUGIN_URL . "/wp-chgfontsize/wp-chgfontsize.js\" type=\"text/javascript\"></script>\n"; }and replace with this:
if ($chgfontsize_display_image == 'on') { echo "chgfontsize_imgdecact = new Image();\n"; echo "chgfontsize_imgdecact.src = '" . plugins_url() . "/wp-chgfontsize/decrease_activated.gif';\n"; echo "chgfontsize_imgdecdea = new Image();\n"; echo "chgfontsize_imgdecdea.src = '" . plugins_url() . "/wp-chgfontsize/decrease_deactivated.gif';\n"; echo "chgfontsize_imgincact = new Image();\n"; echo "chgfontsize_imgincact.src = '" . plugins_url() . "/wp-chgfontsize/increase_activated.gif';\n"; echo "chgfontsize_imgincdea = new Image();\n"; echo "chgfontsize_imgincdea.src = '" . plugins_url() . "/wp-chgfontsize/increase_deactivated.gif';\n"; } echo "chgFontSize_display('" . $chgfontsize_display_text . "', '" . $chgfontsize_display_image . "', '" . $chgfontsize_display_steps . "', '" . $chgfontsize_display_restore . "');\n"; echo "chgFontSize();\n"; echo "//-->\n"; echo "</script>\n"; } // Header functions function add_chgfontsize_js() { echo "\n<script src=\"" . plugins_url() . "/wp-chgfontsize/wp-chgfontsize.js\" type=\"text/javascript\"></script>\n"; }Basically just replacing some instances of WP_PLUGIN_URL with plugins_url().
Forum: Plugins
In reply to: [WP-chgFontSize] [Plugin: WP-chgFontSize] Doesn't work over HTTPS / SSLYes I got it to work but I had to edit the plugin code. My post was for the developer though.
Forum: Hacks
In reply to: How to get attachmed image link url?Any luck with this? I’m trying to do the same thing…
Forum: Themes and Templates
In reply to: is_iphone documenation?I actually have been using a slightly modified version of this method with good results: http://www.richardshepherd.com/projects/php-mobile-detection/
Forum: Themes and Templates
In reply to: is_iphone documenation?Thanks Chip, I get that. So I guess I’m wondering if maybe there should be a page added to the Codex to explain all of the available environmental global variables WordPress supplies. I think these could be very useful for both theme and plugin authors: $is_lynx, $is_IE, $is_iphone, $is_chrome, $is_opera, $is_safari, $is_apache, $is_IIS, etc…
What do you think?
Forum: Themes and Templates
In reply to: is_iphone documenation?Um… because its use on the frontend (e.i. in theme development) has not been documented (per esmi’s comment above)?
Forum: Themes and Templates
In reply to: is_iphone documenation?I understand the usage but I don’t want to start relying on something that isn’t going to remain accessible in the WP core.