ckpicker
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Modify Page Title Outside of Header.phpI was able to use a filter hook to assign a value to wp_title:
function assignPageTitle(){ return "Title goes here"; } add_filter('wp_title', 'assignPageTitle');Forum: Themes and Templates
In reply to: Modify Page Title Outside of Header.phpIs there a WordPress hook or anything I could use to do this?
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Conditional Redirect?That did the trick!! Thanks so much!
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Conditional Redirect?Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Conditional Redirect?I even tried to do it the “old school” JavaScript way:
on_sent_ok: "alert('Technician ' + document.forms[1].technicians.options[document.forms[1].technicians.selectedIndex].value);"But nothing happens. No alert box or anything. What am I doing wrong?
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Conditional Redirect?Nope. The value just keeps coming back as ‘null’.
Forum: Requests and Feedback
In reply to: Improving the WordPress.org support forumsE-mail subscriptions would be lovely. Subscribing to a thread via RSS is helpful, but e-mail is definitely my preferred method.
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Album Template PaginationHallelujah! I found the solution: http://wordpress.org/support/topic/233363?replies=6#post-1308425
Forum: Plugins
In reply to: [Plugin: Events Calendar] breaks lightboxSame issue for me. It’s breaking the Featured Content Gallery plugin which also uses MooTools.
Forum: Plugins
In reply to: [Plugin: Events Calendar] Event Calenar and Spartan ThemeAfter looking at Frenchtowner’s site, it appears he’s using Event Calendar, and not Events Calendar. The names are so confusing…
Forum: Plugins
In reply to: [Plugin: Events Calendar] Event Calenar and Spartan ThemeFrenchtowner – can you be more specific as to how you resolved this? I’ve been messing around with all of the javascript for both of these plugins, but haven’t gotten it resolved. Thanks.
Forum: Fixing WordPress
In reply to: [Plugin: Events Calendar] Conflict with Revolution ThemeI’m also having this issue. Unfortunately, I have still been unable to resolve it. The Featured Content team has acknowledged that it’s a conflict, but haven’t given any information on how to resolve it.
I’m pretty sure it’s a conflict with Mootools (Used by FCG) and jQuery (Used by EC) but I haven’t been able to track it down. Any one have any ideas?
Forum: Fixing WordPress
In reply to: add special character using link_before or link_afterAny ideas on this one? I’m running into this issue also.
Forum: Themes and Templates
In reply to: Different CSS class for Last list_itemI actually wanted a dynamic way to do this, where pages can be added without having to change the CSS and I figured out a way to do it.
I wanted a | separator between my li links and I used the :first-child pseudo class in my CSS in order to keep a | from showing up after the last list-item. Works like a charm!
Forum: Fixing WordPress
In reply to: [Plugin: NextGEN Gallery] HTTP ERROR 412 while uploading photosThis solved my issue:
SOLUTION:
If you’re happy editing your blog’s .htaccess file, try adding this to the end of the file:<IfModule mod_security.c> <Files upload.php> SecFilterEngine Off SecFilterScanPOST Off </Files> </IfModule>NextGen uses a file called upload.php for handling uploads, and this code should disable mod_security on that file.