3rdaxis
Forum Replies Created
-
Forum: Plugins
In reply to: [LDD Directory Lite] Auto submit without approvalsweet
Forum: Plugins
In reply to: [LDD Directory Lite] email notification issue. Approve link not sentthanks
Forum: Plugins
In reply to: [LDD Directory Lite] email notification issue. Approve link not sentI found the issue in the includes/shortcodes/_submit.php.
$message = str_replace('{aprove_link}', admin_url('post.php?post=' . $post_id . '&action=edit'), $message);aprove_link should be approve_link.
{site_title} still does not show correctly in the emails though.
Forum: Plugins
In reply to: [LDD Directory Lite] Auto submit without approvalWow.. just realized i asked this same question for this plugin when i tried it 2 years back and never had a reply. Can anyone help me out there?
Forum: Plugins
In reply to: [LDD Directory Lite] Font issuechanged the load of some scripts and is working.
Forum: Fixing WordPress
In reply to: useless error message. Any ideas where to look?I want to ad that disabling plugins has has no impact and the error still remains.
Forum: Hacks
In reply to: Want to change core code without changing core code.I do not know nor do i know exactly what code to use or where to place it. i know that filters are often in functions, but I really would need some code and know where to place it.
Forum: Plugins
In reply to: [MP3-jPlayer] display file name, not title.If somebody can shed some light on how to accomplish this outside of editing a core script that would be helpful.
Forum: Fixing WordPress
In reply to: Audio Upload in Library. Show File Name, Not Title?If someone can explain how to add this outside of editing a core script, that would be helpful.
Forum: Fixing WordPress
In reply to: Audio Upload in Library. Show File Name, Not Title?That was the best solution i could come up with. Im not sure how to add this in any other way.
Forum: Plugins
In reply to: [MP3-jPlayer] display file name, not title.after doing many searches i found that nobody has really come up with a solution to this. I went into wp-admin/includes/media.php and found these lines.
if ( ! empty( $meta['title'] ) ) $title = $meta['title'];I then did this.
//if ( ! empty( $meta['title'] ) ) // $title = $meta['title']; if ( ! empty( $meta['file'] ) ) $file = $file['file'];Works perfect.
So now i can have “artist name – artist song.mp3 display.
Forum: Fixing WordPress
In reply to: Audio Upload in Library. Show File Name, Not Title?after doing many searches i found that nobody has really come up with a solution to this. I went into wp-admin/includes/media.php and found these lines.
if ( ! empty( $meta['title'] ) ) $title = $meta['title'];I then did this.
[Removed]
Works perfect.So now i can have “artist name – artist song.mp3 display.
Forum: Plugins
In reply to: [TheThe Image Slider] [Plugin: TheThe Image Slider] Lightbox 2Same thing happened to me… Taint
I found if i also remove the navtheme shortcode, the filmstrip goes away.
Forum: Plugins
In reply to: [Postie] Multiple image attachments in postie causing failed postsI found a solution that may work to fix anyone’s issue with multiple image attachments.
Under settings > Media I set the Large size way up and now there is no issue with the original postie code. I set the dimensions up to 6000x6000px. I started to think about what would cause it to fail and sent a bunch of very small pictures which all posted just fine, so it was not the number of pics, So I figured it must be the size.
I use color box set to just use medium size images which i have set to max 800px, so no mater the size image sent in by people, there is no issue with failed posts or too large of an image on screen.