ladylola
Forum Replies Created
-
Forum: Plugins
In reply to: [Facebook Comments] Your plugin made my Facebook comments disappearThanks for the help re the temporary solution (removed the 100% and it’s appearing again). Hoping they fix it soon! Wasn’t happy when I realised my comments had been down for hours. Also I didn’t update, this just suddenly happened. I updated thinking it would be fixed, but nope. Annoying.
Forum: Plugins
In reply to: [WP Splash Page] Hover button colourSpoke to soon, solved myself. Added the following to the template stylesheet:
#wpsp-continue:hover { background-color: #ffffff !important; color: #000000 !important; }
Forum: Fixing WordPress
In reply to: How to show images from post on main blog pageActually that fix stopped anything in brackets [ ] in posts from working, including shortcodes and my contact form.
I will update if I get a fix that works.
Forum: Fixing WordPress
In reply to: How to show images from post on main blog pageResolved by maker.
Kept
//
before$content = apply_filters( 'the_content', $content );
on line 230 of wp-includes\post-template.php and added$content = wpautop($content);
directly underneath.So now it’s:
//$content = apply_filters( 'the_content', $content ); $content = wpautop($content);
Now shows images and keeps formatting.
Forum: Installing WordPress
In reply to: Downgrading from WordPress 3.3 to 3.2.1over-write the wp-admin and wp-includes and the root WP folder files EXCEPT wp-config with 3.2.1 files.
log in to admin and upgrade db if promptedFollowed these instructions to downgrade from 3.4.1 to 3.2 and worked perfectly. Thanks!
Forum: Fixing WordPress
In reply to: Problems with upload path after moving siteFYI, I got help on another forum.
They suggested I search through all site files for matilda2. Did that and it was in wp-config.php. The line was:
define(‘WP_TEMP_DIR’, ‘/home/matilda2/public_html/fruitaddicts/wp-content/uploads’);
Changed to new path and all working. Hadn’t seen that defined in wp-config before so I didn’t think to look there, but glad it is fixed.
Forum: Fixing WordPress
In reply to: Problems with upload path after moving siteThe permissions of /home/fruitadd/public_html/wp-content/uploads are set at 755. Also tried 777 and no luck.
The folder /home/fruitadd/public_html/wp-content/uploads is present.
From the error message it knows the upload path is /home/fruitadd/public_html/wp-content/uploads, but why is it trying to create the temp file in the old path before moving it to the current upload path?
What do you mean by the owner of the folder?
Many thanks.
[ Please do not bump, that’s not permitted here. ]