Bernard Bos
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: My Site is running slow… any support appreciatedYou can try to load the javascripts (there are lots of it) in the footer instead of the header. http://wordpress.org/extend/plugins/footer-javascript/ This should speed up the loading time. Next to that: do a google search for
javascript compressionand give that a try.Reduce the images to a couple of bytes via compression, try to use a single css file instead of five.
In the end, you maybe want to change your theme because it’s enormous.
Hope I could help.
Forum: Fixing WordPress
In reply to: Poblem with postsMost welcome! Glad I could help.
Forum: Fixing WordPress
In reply to: Poblem with postsYou could look into your themes
functions.phpfile for further information about the error.Bytheway, I recommend you to upgrade to the latest version of WordPress (2.8.5) for the best experience (I saw that your theme was designed for 2.8).
Forum: Plugins
In reply to: [Plugin: Upload ] activation error@ovidiu: It looks like the description isn’t updated yet. It still directs to http://example.com/wp-admin/options-general.php?page=uploadplus where it should direct to http://example.com/wp-admin/options-misc.php
Forum: Plugins
In reply to: [Plugin: Our Progress] Incomplete?It’s not missing, the plugin file searches in the wrong map. Just change these lines:
$path = "../wp-content/plugins/ourprogress/images/"; (line 93)with
$path = "../wp-content/plugins/fundraising-thermometer-plugin-for-wordpress/images/";and
echo '<link type="text/css" rel="stylesheet" href="'. get_bloginfo('wpurl').'/wp-content/plugins/ourprogress/images/'.$theme.'/style.css" />' . "\n"; (line 169with
echo '<link type="text/css" rel="stylesheet" href="'. get_bloginfo('wpurl').'/wp-content/plugins/fundraising-thermometer-plugin-for-wordpress/images/'.$theme.'/style.css" />' . "\n";That will do the trick.
Forum: Installing WordPress
In reply to: 2.7 upgrade – Redirect Loop errorWhile waiting on your host, you could try this plugin, it helped for me
Disable Canonical Redirection
(save as php and upload it in your /wp-content/plugins directory, then activate it)Forum: Fixing WordPress
In reply to: Is there a way to avoid medium size thumbnails on image gallery?Thanks for the solution.
Bytheway, in 2.6.1 it’s line 447 in media.php
Forum: Fixing WordPress
In reply to: Help: Site looks different in IE and FirefoxAlso you can check your stylesheet. There are also more articles on the internet about making special IE stylesheets.
Good luck!
Forum: Fixing WordPress
In reply to: first 1 2 3 4 … 10 last – navigation barI use this plugin: Page Numbers and really like it.
Forum: Fixing WordPress
In reply to: [Plugin: Get Recent Comments] Howto fix the ūG_OF_TITLE% …Go to Settings -> Recent Comments and hit Update Recent Comment Options ».
I’ve had the same problem and this solves it.
Forum: Fixing WordPress
In reply to: Upload Media Errorhttp://wordpress.org/support/topic/164999?replies=1
Look here for more resolutionsForum: Everything else WordPress
In reply to: Reference with alt tag on mouse overAdd this piece of code to [1]:
[<a title="reference">1</a>]= [1] at mouseover it’s a reference.Use this:
[<span style="cursor: pointer;"><a title="reference">1</a></span>]to get a pointer-cursor at mouseover.Forum: Requests and Feedback
In reply to: Title LinkGo to your templates index.php file and find the following line
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a><h2>
(or a line similar to this (this is the default theme))Just delete everything except
<h2><?php the_title(); ?></h2>Do the same thing in page.php, single.php etc.
Forum: Alpha/Beta/RC
In reply to: 2.5RC1 login problemThe patch is working wonderful! Thanks for the link.
Forum: Your WordPress
In reply to: Personal italian blog – Homemade themeWhat kind of theme are you using? Can you give me a link?
I like the minimalistic theme!