JohnnyWhite2007
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Any action in dashboard loads a blank pageTry changing your theme, then disable all plugins by renaming the plugins folder. If then you are able to use wp-admin, enable your theme. If all is well there, one by one re-enable your plugins.
Forum: Fixing WordPress
In reply to: Moving my site from a redirect?If the theme is not built where it is all dynamic, then yes you will need to do that.
Forum: Fixing WordPress
In reply to: Increase Size of Tagline in TwentyTen ThemeEdit site-description in the css file in on the theme. Put something like the following:
font-size:30px;Though playing with the size to get it they way you want it is in order.
Forum: Fixing WordPress
In reply to: Redirect 301All broken links (404 errors) can easily be fixed by adding the following line in your .htaccess file.
ErrorDocument 404 http://www.grappling-italia.com
This way when someone goes to a page that does not exist anymore, they will be taken to your main page of your site.
Forum: Fixing WordPress
In reply to: How do i get this effect?That’s javascript that is doing that. It’s a hidden <div> element and then they use the onClick() function to display it.
Forum: Fixing WordPress
In reply to: Ability to send newsletter to all subscribersI use this to email my subscribers:
http://wordpress.org/extend/plugins/email-users/
I was able to send HTML emails also with it. You want them to be able to unsubscribe, this is not slavery.
Forum: Fixing WordPress
In reply to: user registrationYou can use the link below to allow them to register. Though you need to have it set to where they can register in the first place.
http://www.YourDomainGoesHere.com/wp-login.php?action=registerForum: Fixing WordPress
In reply to: Warning file_get_contentsSomething is wrong with your footer. Line 60 shows this:
function get_footer( $name = null ) { do_action( 'get_footer', $name ); $templates = array(); if ( isset($name) ) $templates[] = "footer-{$name}.php"; $templates[] = "footer.php"; // Backward compat code will be removed in a future release if ('' == locate_template($templates, true)) load_template( ABSPATH . WPINC . '/theme-compat/footer.php'); }Whatever your footer has in it, whether it be a widget, or plugin. But it’s trying to get the contents of a page from another site and displays it there. I would try commenting out everything in your footer.php file and see if you still get the error.
Forum: Fixing WordPress
In reply to: 404 errrors with catagories and tagsTry setting the chmod to 644. Then go into WordPress → Settings → Permalinks → Save Changes.
Forum: Fixing WordPress
In reply to: re-stalling troubleRun this in a SQL Query:
UPDATE wp_options SET option_value = replace(option_value, ‘http://www.moonstruckorganics.com/blog’, ‘http://www.moonstruckorganics.com’) WHERE option_name = ‘home’ OR option_name = ‘siteurl’;
That should fix it.
Forum: Fixing WordPress
In reply to: Fatal error: Cannot redeclare __popular_posts()It looks like the function __popular_posts() already exists somewhere. Try enabling the default theme first, then enabling this theme. Also try clearing your cache and reloading.
Forum: Fixing WordPress
In reply to: Moving my site from a redirect?You would first change the Site and Home URL under the Settings > General Settings to the new url, then move everything over. From there is should work flawlessly.
Forum: Fixing WordPress
In reply to: Can you turn widgets off for one post?You can copy the normal page from the templates and make it its own template and just take out the sidebar widget code. Then for each page you don’t want the widgetized sidebar, assign that template to it.
Forum: Fixing WordPress
In reply to: Secure website wordpressI found this to be helpful to me:
Forum: Fixing WordPress
In reply to: WordPress Themes StuckThis could be database issue.
- Login to phpMyAdmin
- Go to the wp_options table
- Find template and stylesheet(commonly option_id 45 & 46)
- If they are Lifestyle 40, then change it to the correct
- Clear your cache, logout, and refresh
If that doesn’t work, then you might try repairing the database and see if that helps.