fitzpatrick512
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: ERROR: WordPress 2.9 requires MySQL 4.1.2 or higherJust ran into the same problem.
Unbelievable a “hosting company” would still be running a version of MYSQL from 2004!
Anyways, here’s where you can download older versions of WP:
Forum: Plugins
In reply to: Sharing Media Library among Subsites WordPress 3 MultisiteI am also interested in this. I’ll let you know if I find anything out…
Forum: Networking WordPress
In reply to: URL pathing change with WordPress 3 multisiteSome of my installed plugins didn’t like the move and I got some errors (seems the plugins wrote to the DB somehwere that I didn’t find) so I decided to just reinstall – the site was under development and didn’t have any real content anyways.
And this really is an awesome resource, pardon my previous sarcasm, I think I should have just tried some more search terms before posting.
Thanks!
Forum: Networking WordPress
In reply to: URL pathing change with WordPress 3 multisiteIt’s funny, I’m always the only one to reply to any of my threads. Awesome community.
Here’s someone else who had the same question, and some answers:
Forum: Networking WordPress
In reply to: URL pathing change with WordPress 3 multisiteIt seems users of WordPress MU were just modifying the DB directly – seems like I must be missing something here.
Lets see if anyone has any ideas…
Forum: Fixing WordPress
In reply to: using conditionals to implement page specific sidebarsOk, revisiting this issue for another project. I want to combine the following bits of code, in lay terms I want it to do this:
If it’s the homepage, display the “Homepage Sidebar”, if not, display the other side bar, “Sidebar”/
<?php if (is_home()) { the_content(); } else { the_excerpt(); } ?> <?php genesis_before_sidebar_widget_area(); ?> <?php if (!dynamic_sidebar('Sidebar')) : ?> <div class="widget widget_text"><div class="widget-wrap"> <h4 class="widgettitle">Sidebar Widget Area</h4> <div class="textwidget"><p><?php printf(__('This is the Sidebar Widget Area. You can add content to this area by visiting your <a href="%s">Widgets Panel</a> and adding new widgets to this area.', 'genesis'), admin_url('widgets.php')); ?></p></div> </div></div> <?php endif; ?> <?php if (!dynamic_sidebar('Homepage Sidebar')) : ?> <div class="widget widget_text"><div class="widget-wrap"> <h4 class="widgettitle">Sidebar Widget Area</h4> <div class="textwidget"><p><?php printf(__('This is the Sidebar Widget Area. You can add content to this area by visiting your <a href="%s">Widgets Panel</a> and adding new widgets to this area.', 'genesis'), admin_url('widgets.php')); ?></p></div> </div></div> <?php endif; ?> <?php genesis_after_sidebar_widget_area(); ?> </div>Forum: Fixing WordPress
In reply to: using conditionals to implement page specific sidebarsI ended up with an admittedly less elegant solution:
Since the pages that I wanted to change happened to have their own templates, I was able to just change the call for sidebar.php on each page to call different instances of the sidebar, which in turn call for the custom sidebar I enabled in functions.php
I added additional sidebar.php files (sidebar-2.php etc.) to the server, and have this code within it.
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(2) ) : ?> <?php endif; ?>Then I call his sidebar.-2.php file from the template files like so:
<?php get_sidebar('2'); ?>So I got away with a half-assed solution this time, but I’m very interested n something more robust, surprised there isn’t a plugin or it.
Forum: Plugins
In reply to: recommendations: Commerce Plugin with Digital Downloads WPtouchSeems like the best thing to do is wait until Wptouch 2 comes out actually, and luckily this project can wait a bit.
Forum: Fixing WordPress
In reply to: RSS feed of arhcive postsHmm… still searching on this one too, seems like I’d have to mod the core files? 🙁
Forum: Fixing WordPress
In reply to: change RSS permalinksI have a php redirect that works with a mobile detection script (using WPtouch) already. Ideally I’d be changing the link before the RSS spits it out, do I think i need to do it through WP’s core files. This way no one ever sees the mobile links unless they are ON a mobile browser.
Thanks for your input, I’ll investigate your idea further, and I agree a .htaccess solution would be cleanest, but since I’m already counting on PHP redirects anyways, I might go that route.
Forum: Fixing WordPress
In reply to: RSS feed of arhcive postsDoes this question make sense? I know that RSS is for “current” stuff, but can I have it generate everything BUT the current posts?
Forum: Plugins
In reply to: [Plugin: WPtouch iPhone Theme] Testing WPTouch on a laptop, PC, mac etc.I ended up using Chris Pederick’s User Agent Switcher for Firefox. Handy.
Thanks Chris!
Forum: Plugins
In reply to: [Plugin: WPtouch iPhone Theme] Testing WPTouch on a laptop, PC, mac etc.I can see the toggle in the footer of the mobile site via Android, but not on my laptop / firefox.
Forum: Fixing WordPress
In reply to: Can You Put PHP Code In Custom Field?hmm…. I actually could use some PHP code in my Custom Fields!
Forum: Everything else WordPress
In reply to: WordPress Integration with SmoothGallery 2.0I’ve found the Featured Content Gallery to be resource hog – adding seconds to my page loads.
Currently looking for a lightweight solution. Hopefully Christian’s is it. I wouldn’t mind hard coding it, but I honestly just don’t know how.