Tom Morton
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Unregistered users comments for authorization?Your best bet is to have them previously had an approved comment, not sure if there is a way to “auto approve” people who register.
Forum: Fixing WordPress
In reply to: Blank log-in/WP-Admin pageHmm, well the next step is to deactivate your current theme. Lets say your theme is called “Toms-theme”. Go to WP-Content, themes and rename “toms-theme” to “toms-theme-1” and visit the wp-admin. This will default your wordpress site back to the twentyten theme and “hopefully” get your admin panel back.
Let me know if that works. If not, we try more ideas!
Forum: Fixing WordPress
In reply to: Page not showing in feedNot a problem, be sure to mark this as “resolved”
Forum: Fixing WordPress
In reply to: Pass a variable from admin to templateThis sounds like what you need is a custom theme option that displays a widget on the dashboard. Not something that is easily explained in a forum post, you can do some searching or fire me an email at my website, the link is next to my picture.
Some reading on custom dashboard widgets
http://www.wpbeginner.com/wp-themes/how-to-add-custom-dashboard-widgets-in-wordpress/
Forum: Fixing WordPress
In reply to: how can i avoid "Nothing found for Tag" messeage ?The title is handled by the WP Header.php in your theme file.
The title is assigned when your wordpress site hits that “tag not found” page. You could just do a custom title if you wanted to in the head, taking out the generated title, but that wouldn’t be good for SEO.
Forum: Fixing WordPress
In reply to: Blank log-in/WP-Admin pageIf you’re seeing a white screen when visiting your site and the dashboard, login to your FTP and go to WP-content. Change your plugins folder to plugins1, then go to your dashboard. This will deactivate all your plugins and you should be able to login. Then change the folder back to plugins and reactivate them.
Forum: Fixing WordPress
In reply to: how can i avoid "Nothing found for Tag" messeage ?How is it coming from WP Core? Where did you track that down?
I’m almost positive that it comes from your theme files.
Forum: Fixing WordPress
In reply to: help with commentsWhat is the point of this? The reason I ask is there is no real way to kill comments without (probably) breaking your site or what you want to achieve.
If you are looking for people to vote on your posts, why not try any of these plugins that will attach themselves to your posts, not your comments:
http://wordpress.org/extend/plugins/vote-it-up/
Forum: Fixing WordPress
In reply to: Update post does not show new post – but view post doesIt depends on what you are trying to update. WordPress often takes out broken HTML in your posts if needed. Maybe that’s whats happening?
Forum: Fixing WordPress
In reply to: Loop inside single post based on custom field valuesFunny you mention this, I did a similar thing not with posts but with pages and a custom theme menu. I think this might work:
<?php $single_posts = echo get_post_meta($post->ID, 'Products', true); $post_array = array($single_posts); //construct array for single posts id's $args = array('order' => 'desc', 'p' => $post_array); $single_post_fields = new WP_Query($args); $count = 0; ?> <div role="complementary" class="homepage-widgets" id="footer-widget-area"> <?php while ($single_post_fields->have_posts()) : $single_post_fields->the_post(); $count++; $do_not_duplicate = $post->ID; ?> <p>Whatever your HTML and WP stuff is to call the post (the_title, the_content, etc)</p> <?php endwhile; wp_reset_query(); ?>I haven’t tried it, but its similar to my page code so it should work.
Forum: Fixing WordPress
In reply to: main theme stylesheet stop working in visual editorDid you update your active theme? The active theme is what handles customization of the visual editor in the wp-admin.
Forum: Fixing WordPress
In reply to: Page not showing in feedNot sure if WP automatically adds pages to feeds, I don’t think it does.
Try this plugin: http://wordpress.org/extend/plugins/rss-includes-pages/
Forum: Fixing WordPress
In reply to: Unregistered users comments for authorization?Settings>Discussion
Find the checkbox that says
Before a comment appears An administrator must always approve the comment Comment author must have a previously approved commentCheck the one that applies and BAM, no registration or previously approved comments? Always held in moderation.
Forum: Fixing WordPress
In reply to: how can i avoid "Nothing found for Tag" messeage ?That is coming up because that tag does not exist within your WP Site.
You can edit that message, depending on your theme, in the category-loop.php, the category.php or maybe even your archive.php.
Look in those files and perform a text search (usually CTRL-F or COMMAND-F) for “nothing found for tag”
Forum: Fixing WordPress
In reply to: email form new userThat’s generated in the WP Core, but there are a few plugins that could help. I did some quick google searching, found this stack overflow issue:
http://stackoverflow.com/questions/1464073/change-email-content-for-new-user-in-wordpress
and these plugins
http://epicalex.com/new-user-email-set-up/
http://wordpress.org/extend/plugins/welcome-email-editor/Hope this helps!