wireframe74
Forum Replies Created
-
Forum: Plugins
In reply to: Jquery Not Working For Nivo SliderFound an answer on Nivo Slider forum. It seems that latest version of jquery 1.6 needs a little adjustment:
Forum: Fixing WordPress
In reply to: Conditonal Gget_post_metaActually I found a handy link here that sorted this all very easily by defining a new function:
http://www.nathanrice.net/blog/an-easy-way-to-get-the-contents-of-a-custom-field/
Just added this to functions.php
function get_custom_field($key, $echo = FALSE) { global $post; $custom_field = get_post_meta($post->ID, $key, true); if ($echo == FALSE) return $custom_field; echo $custom_field; }and this to my template where I needed this applied.
<?php if(get_custom_field('dark_background')) { ?> class="darkerBackground" <?php } ?>Forum: Fixing WordPress
In reply to: Conditonal Gget_post_metaI got this working with is page…
<div class="faq <?php if ( is_page (array('privacy-policy','index',)) ){ $margin= 'widerColumn"'; echo $margin; } ?>but ideally I need this to be determined by custom field so that its content managed and not hardcoded.
Managed to get this sorted:
From this article:
http://www.themelab.com/2008/03/26/put-your-dormant-domains-to-use-with-wordpress/There is a theme also has that source code here
http://feedwordpress.radgeek.com/wiki/themes-designed-feedwordpress
Forum: Fixing WordPress
In reply to: Import DB Issue – Plugins not WorkingIt seems I did everything correctly..The issue arises from a common problem associated with timThumb and Hostgator that have mod_security to disallow timbThumb from working:
Forum: Fixing WordPress
In reply to: Add Attirbute to LinkFound this solution..most easiest of the lot after heaps of google searches which had all kinds of things related to modifying functions.php file etc :
<?php add_link_attr('get_sidebar', '2', 'target="gallery"'); ?>Hi I worked out issue finally I had a developer look at it. It was a header.php file problem that I had.
Before I used your plugin I used something else in the header.php file which was causing the issue..Thanks for response 🙂
Forum: Fixing WordPress
In reply to: Page Templates Displaying but arent being Applied to PagesActually problem solved ..the old index page was still there which was redirecting to my previous wp installation subfolder which contained a different wp_blog_header
Forum: Fixing WordPress
In reply to: End User Manual/GuideI am looking for the same thing..I found this recently:
Forum: Fixing WordPress
In reply to: Client Accidentally hit upgrade buttonIt turns out the sub directory of blog was causing the issues here..As my I have next to no kwoldege of .htaccess I re-installed everything into site root and no more problems 🙂
Forum: Fixing WordPress
In reply to: Client Accidentally hit upgrade buttonI just had my first go at a manual upgrade..
Unfortunately I got the white screen of death so site is down..I overwrote all files cept the wp-content files..So everything is down right now and I am trying to work out how to get everything back up..I logged into PhpMy Admin and everything still looks like it is there with db..
Is it a matter of restoring original files now..or should I just grab all files for WP 3.0 and try again (minus wp-content)..I didn’t disable plugins first time around as I couldn’t log into admin panel originally.
Forum: Fixing WordPress
In reply to: Client Accidentally hit upgrade buttonThanks for advice..I tried that also and it wasnt a plugin or a theme issue…Perhaps the automatic upgrade wasnt completed properly and I have to do it manually..
A few other weird things were happening like when I went to edit a users settings I got an error page..
All of my files within the directories wp-content,wp-includes and wp-admin now have permissions set to 755..Is this a security threat? Or is 777 the one to watch out for..
Forum: Fixing WordPress
In reply to: Client Accidentally hit upgrade buttonYes..am still having issues..(seems like the 404 error is a common one) I tried a few work arounds :
http://www.seo-strategies.org/2009/08/wp-adminphp-404-not-found-error-wordpress/
And also this:
http://www.techzoomin.com/wordpress-login-issueswp-admin-showing-404-error-page/
But still despite using login details I am getting 404 error once logged in instead of viewing control panel..As mentioned it worked fine yesterday for no know reson..which is why I thought it might have something to do with a few users being logged in at the same time..
Forum: Fixing WordPress
In reply to: Client Accidentally hit upgrade buttonLots of good info there…thanks for that..I actually went back in and the login was working fine yesterday..And now it isnt..
http://www.topshottennis.com/dev/wp-admin.php
Could this have something to do with other users logged in at the same time? It seems to have a mind of its own?Forum: Fixing WordPress
In reply to: Upgrading Plugins – Maintenance ModeI managed to get site back up by renaming the .maintenance file..I still am not able to upgrade plugins however? I keep getting an error like the one listed above?