tpohare
Forum Replies Created
-
I think I’ve found the issue in version 1.1
/players/songs/add-song.php link 66
$psql = "SELECT * FROM wp_hmp_playlists";
My table prefix isn’t wp
Upgrading has had no effect. Can add playlists no problem but they’re not recognised when I try to add a song.
Error returned is:
The image cannot be displayed because it contains errors. I can download the images directly as .bin files
I’ve had no issues with the system for several weeks.
Forum: Plugins
In reply to: [Plugin: Register Plus Redux] Passwords not saved correctlyOk I uncovered a clash between Theme my Login & Register Plus Redux which I’ve resolved. Now I’m sent the autogenerated first time. So I just have the initial problem now. If anyone has a fix that’d be great.
Forum: Plugins
In reply to: [Menubar] [Plugin:Menubar] Working with %name in templatesWorked perfectly, thank you.
Forum: Plugins
In reply to: [Plugin: Register Plus Redux] Passwords not saved correctlyTo follow up on this I’ve done some tests.
If I register initially, everything works & I can login with the password I registered with.
But once login as an admin and approve the user the password is reset.
Forum: Plugins
In reply to: Register Plus Redux emails wrong passwordI’m afraid I have the same problem but that fix didn’t work. Any other solutions?
Forum: Hacks
In reply to: query_posts inside wp-admin Create PostsAs an add-on to this, there’s no issue at all if there are no pages set as Factsheets
Forum: Plugins
In reply to: [Plugin: Menubar] Class "current_page_item" Custom Post Type ClashThanks that worked perfectly.
Further to this I have another small issue in the same circumstances. The section is highlighted when I’m in the root of a section but not in a post within that section. So it will work for /articles/ but not /articles/test. How can I set the highlighting to remain when I’m within I’m with the section?
Forum: Plugins
In reply to: [Plugin: Contact Form 7] Setting Return-Path Mail HeaderI’ve actually resolved this by making a change to
wp-includes\pluggable.php
I added
ini_set("sendmail_from", '' . $from_email);
to wp_mail( $to, $subject, $message, $headers = ”, $attachments = array() ).
This needs to be added anywhere between where $from_email is defined and where the mail is actually processed.