lifestyler
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Sidebar Login] DASHBOARD link gone on version 2.1.5hmm, now version 2.1.6 is totally &^%^$&#(#
The form always stays in the same way, logged in or not.
Maybe you should wake up first Jolley before you send out plugins…grt Bas
Forum: Fixing WordPress
In reply to: RSS Doesn’t Work – XML Parsing Errorok figured it out. In my customized Theme the functions.php had a space somewhere beteen some php lines:
<?php ... code .... ?> [space] <?php ... code .... ?>
What the rss does is take the functions.php and output it into the rss feed if there is anything to output. Normally you dont output anything from functions.php, but if the WP core files don’t strip whitespaces this could be the results…
Forum: Fixing WordPress
In reply to: Your attempt to edit this post: “abc” has failed !!!Ok, because disabling the autosave caused problems for me i tried some more and notice i had to deactivate the ‘post’ script also to avoid getting a javascript error while going from title field to editor.(i have no idea what this script does, but i didnt notice anything wrong after deactivating it…) And cause i didnt like the wordcount anyway i disabled that to:P
I Got everything working right now by activating this plugin:
<?php /* Plugin Name: Your attempt Fix Version: 1.0 Plugin URI: https://www.www.ads-software.com Description: Fixes the very anoying "Your attempt to edit this post" bug in WP7 admin Author: Bas Author URI: */ function wp_27_adminpost_fix() { wp_deregister_script('autosave'); wp_deregister_script('post'); wp_deregister_script('word-count'); } add_action( 'wp_print_scripts', 'wp_27_adminpost_fix' ); ?>
Forum: Fixing WordPress
In reply to: Your attempt to edit this post: “abc” has failed !!!Ok i just found out some more details by simply testing
– the “quickpost” on the wordpress dashboard works and actually posts like normal in IE7
– Adding a new post in IE7 fails when directly publishing
– Editing a concept post which was saved before works fine in both IE7 and FF
– Adding a new post in FF works just fine when directly publishingI also noticed the following: When writing a new post in IE7 i see at the bottom of the editor that its saving the post as a concept (and it shows me a date/time when its done, after 1 or 2 seconds)
When i do exactly the same thing in FF it tries saving it as a concept but no matter how long i wait, it doesnt complete the saving.any ideas?
Forum: Requests and Feedback
In reply to: Serious Problem with posts in WordPress 2.5Got this problem since i upgraded to wp 2.7. still no solution? I dont feel like editing manually in core files cause that will require me to do so on every upgrade….
Forum: Fixing WordPress
In reply to: Can’t open in Internet Explorer, works in Firefoxthikn you got a bigger problem atm ??
500 Internal Server Error
BTW you asked the exact same question before, and i recently commented there also, so better go there and read and delete this duplicate post
Forum: Fixing WordPress
In reply to: Can’t open in Internet Explorer, works in Firefoxshow an error on thise javascript part:
jQuery.noConflict();
jQuery(document).ready(function() {
jQuery.embedquicktime({jquery: “https://obsessivejew.com/blog/wp-content/plugins/embed_quicktime/jquery-1.2.1.pack.js”, plugin: “https://obsessivejew.com/blog/wp-content/plugins/embed_quicktime/jquery.embedquicktime.js”});
});so it seems to me like its a video plugin causing errors? Probably conflicting with the lightbox, try disabling the video plugin and enable the lightbox again. Video plugins should be easier to find;)
Forum: Fixing WordPress
In reply to: Is this possible?doenst wp_sticky plugin help?
Forum: Fixing WordPress
In reply to: Category Specific Templatein your template file where you want to show it.
Forum: Fixing WordPress
In reply to: Can’t open in Internet Explorer, works in Firefoxi think its a jQuery problem of some kind. Both IE and FF give errors on it.
Forum: Fixing WordPress
In reply to: Your attempt to edit this post: “abc” has failed !!!come on guys, a lot of people have this problem according to a search in the forums, no one a good definitive solution for this?
Forum: Fixing WordPress
In reply to: VERY strange refresh problemits fixed? i didnt notice anything
Forum: Fixing WordPress
In reply to: How To Make One Page INVISIBLE from Navigation?Forum: Fixing WordPress
In reply to: Can’t open in Internet Explorer, works in Firefoxi had that problem some time ago also, caused by a certain plugin. I can’t remember which one it was though. If i’m right it had something to do with a javascript going into a loop.
First try checking your site with Firefox (with firebug plugin) I notice a lot of errors on your site! Pay special attention to these errors:
Error: jQuery is not defined
Source File: https://obsessivejew.com/blog/
Line: 48Error: missing ; before statement
Source File: https://obsessivejew.com/blog/wp-content/plugins/lightbox-2-wordpress-plugin/lightbox/js/effects.js
Line: 1
Source Code:
Change the path in ../../wp-content/plugins/lightbox-2-wordpress-plugin/lightbox/lightbox.jsForum: Fixing WordPress
In reply to: Links work in IE, but not in FirefoxYour friend installed the google analytics plugin for wordpress. By default it doesnt track the admin user! I had the same problem you had and that was because i was logged in as admin (with that same link structure you showed in your first post in my posts) but because the plugin aint working for me as admin i couldnt click the links cause it gave javascript errors. Best is set the google analytics plugin in settings to track admin also (default is not to do that).
The code posted above here came from MS Word. Tell your friend to use the ‘paste-from-word’ button in the wysiwig editor
hope it helps you!
btw the links work fine for me…