not2bug
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Scripts Gzip] Two problems (user directories and css images)Doesn’t work on K2 Theme.
Forum: Plugins
In reply to: [Plugin: Stray Random Quotes] BackslashesOops. Apply the commenting workaround to this file as well.
“stray-quotes/inc/stray_new.php”My previous post fixed editing. This fixes adding.
Forum: Plugins
In reply to: [Plugin: Stray Random Quotes] BackslashesI edited “stray-quotes/inc/stray_manage.php”
//magic quotes
//if ( ini_get(‘magic_quotes_gpc’) ) {$quote = stripslashes($quote);
$author = stripslashes($author);
$source = stripslashes($source);
$category = stripslashes($category);
$visible = stripslashes($visible);
//}My magic quotes were off, yet backslashes were creeping in somewhere.
So I commented out the conditional of the if block to strip them off regardless.It works as expected for me now.
Note: this is a workaround, not a bugfix.
Forum: Plugins
In reply to: [Plugin: Advertising Manager] Wrong datatype in Ad.phpAfter upgrading to WP 2.9 I got the warning message: Warning: fread() [function.fread]: Length parameter must be greater than 0 in /home2/XXX/public_html/wp-includes/pomo/streams.php on line 113;
Deactivaning this plugin warning disappeard.Forum: Themes and Templates
In reply to: Modularity Lite Slideshow SetupI am having the same trouble. When I type in siteurl.com//wp-content/themes/modularity-lite/images/slideshow/image1.jpg I only get the previously uploaded image. I can’t seem to figure out how to change the image, and when I try to type in the same url as an admin, It just links me back to the home page. Thanks for any help!
Forum: Requests and Feedback
In reply to: Plugin for “Post Updates”?theonetruebix, did you ever find anything to manage blog updates?
Right now, I have a hacked up way of doing it by using blog comments. It’s a category where users can’t comment so I post the updates as comments on my own blog posts (hope that made sense). It somewhat works but it doesn’t show up in the updates (the comments) don’t show in the main feed.
Forum: Themes and Templates
In reply to: how to make a div “fixed” after scrolling a certain ammount ?nvm…it’s this piece of code:
window.onload = function( ){ $( window ).scroll( function( ){ var scroller_object = $( "#scroller" ); if( document.documentElement.scrollTop >= 102 || window.pageYOffset >= 102 ) { if( $.browser.msie && $.browser.version == "6.0" ) { scroller_object.css( "top", ( document.documentElement.scrollTop + 15 ) + "px" ); } else { scroller_object.css( { position: "fixed", top: "15px" } ); } } else if( document.documentElement.scrollTop < 102 || window.pageYOffset < 102 ) { scroller_object.css( { position: "absolute", top: "118px" } ); } } ); }Note: $() is the shortcut for document.getElementById() in jQuery
Forum: Themes and Templates
In reply to: how to make a div “fixed” after scrolling a certain ammount ?@vvminovv: Did you ever figure this out? TIA!
Forum: Plugins
In reply to: Tabbed Widgets picky with 2.8?kasparsd!!!
Please update this awesome plugin! We beg you! Pretty please!
Me too (WP 2.7.1)
Forum: Plugins
In reply to: [Plugin: MP3 Player Plugin] Excellent and thanks!@client_techno and others
I think the HEX error is really a misunderstanding since the setup page is a little confusing. Even though selecting the HEX color by clicking in the palette shows you the Corresponding HEX code…it is actually still not set in the theme options. You have to then go ahead and enter the same HEX code in the empty field above. This sounds confusing but if you look at the plugin admin page for the color option, you should figure it out. Basically just remember to manually enter in the HEX number after choosing the color you like.
Cheers
Forum: Fixing WordPress
In reply to: Dashboard does not use CSS so has no formattingI looked at your HTML, kmannics. GoDaddy is adding the same crap HTML to my wp-admin and it is probably messing up our stylesheets
</iframe></noscript></object></layer></span></div></table></body></html><!– adsok –>
<script language=’javascript’ src=’https://a12.alphagodaddy.com/hosting_ads/gd01.js’></script>
Also see http://wordpress.org/support/topic/280162?replies=4
Forum: Fixing WordPress
In reply to: Dashboard does not use CSS so has no formattingIs this the same problem that you are both having?
I checked the Error Console in Firefox (Tools > Error Console) and it says that /wp-admin/load-style.php has the MIME type text/html when it should be text/css.
Maybe we can blame GoDaddy, since they seem to be placing ads on everything I upload. I think that JS is not working on the admin panel either. Any help would be greatly appreciated. Thank you
Forum: Fixing WordPress
In reply to: Advanced (?) use of custom fields and if statements (second try)Looking at the code it seems fine. The google code uses
try{
} catch(err)
which this plugin neglects. However it shouldn’t impact the functioning of the code itself. Give it 24 hours after installation to start tracking data (Google recommends 24 hours)