darran
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: how to reinstall wordpress without losing your data ?What is the error message? You have to be specific.
If she has access to phyMyAdmin, she can also change her password from there and relogin to the dashboard.
Forum: Everything else WordPress
In reply to: how to reinstall wordpress without losing your data ?You have 2 alternatives:
1) You can back your SQL data file through phpMyAdmin
2) You can export the posts/comments from your admin (since you can’t even login, this would not even be an option)
Forum: Fixing WordPress
In reply to: Long URL – Why??Did you specify your blog URL to be https://www.village-green-gifts.com/search-company?
Forum: Fixing WordPress
In reply to: Text size commentsYou have to modify the <small> tag in your css.`
small {
font-size:1.2em;
}Do change the font-size should you wish to make it bigger or smaller.
Forum: Fixing WordPress
In reply to: My site loads so slowly can anyone please help?It may sound painful, but this is the only way. You have to enable each plugin one by one, and look for the one which is using up a huge amount of resources. Sometimes, some plugins are the culprits, and this is all down to plugin’s author.
Forum: Fixing WordPress
In reply to: code and gibbish in previous blog artcles after upgrading to 2.6.1. Will it work in WordPad?
The better choice would be notepad, as Wordpad does have a certain level of formatting. Personally, I have not used it, but my guess that like Word, it may generate some gibberish along with your entered text.
2. Can I insert links in either Notepad or Wordpad?
You can, but to do that, you will need to use the link anchor tags;
<a>
3. Will it work in WORD if you use RTF or simply text file?
I do not understand what you are asking. Why would you want to paste your text back into word?
Forum: Fixing WordPress
In reply to: unapproved comments showing in sidebarUsually most theme developers would not want their theme showing spam comments, I do not understand why it was not the case. More often than not, you would not need to edit the query, that is of course down to the theme developer.
Forum: Fixing WordPress
In reply to: unapproved comments showing in sidebarReplace
if ( $comments = $wpdb->get_results("SELECT comment_author, comment_author_url, comment_ID, comment_post_ID FROM $wpdb->comments ORDER BY comment_date_gmt DESC LIMIT 5") )
with
if ( $comments = $wpdb->get_results("SELECT comment_author, comment_author_url, comment_ID, comment_post_ID FROM $wpdb->comments WHERE $wpdb->comments.comment_approved = '1' ORDER BY comment_date_gmt DESC LIMIT 5") )
This will get you to display approved comments including trackbacks and pingbacks. Should you wish to have only comments listed, use the following.
if ( $comments = $wpdb->get_results("SELECT comment_author, comment_author_url, comment_ID, comment_post_ID FROM $wpdb->comments WHERE $wpdb->comments.comment_approved = '1' AND $wpdb->comments.comment_type = '' ORDER BY comment_date_gmt DESC LIMIT 5") )
Forum: Themes and Templates
In reply to: changing name of “home” pageYou have to go into your theme directory and edit the theme’s header.php.
It should be located under wp-content/themes/<theme-name>
Forum: Plugins
In reply to: Lightbox 2 doesn’t work?!Here is what I got in the debug mode:
Resource interpreted as document but transferred with MIME type image/png.
https://masonsklut.com/wp/wp-content/uploads/2008/09/new-dialogue-window-photoshop.pngIt looks to be a problem on the plugin’s side, maybe you can bring this up to the developer.
Forum: Fixing WordPress
In reply to: unapproved comments showing in sidebarThis code cannot be seen from your website’s source.
I need the code in your sidebar.php
Forum: Fixing WordPress
In reply to: Things screwed up all of a suddenSome feedback, your site hanged FireFox for me, and my entire system slowed to a crawl, I had no choice but to terminate FireFox.
Forum: Themes and Templates
In reply to: Need a big search formThere is no code to see what you are doing wrong. It would help if you showed what you did in your CSS and markup file.
Forum: Plugins
In reply to: Lightbox 2 doesn’t work?!Nice site you have there, I just briefly scanned through the articles. Very interesting, I am going to subscribe to your feed.
Do you have an image we can test it out with, so we can actually drill down to what is causing the error?
Forum: Themes and Templates
In reply to: archives without yearHave you tried limiting the number of months?
<?php wp_get_archives('type=monthly&limit=12'); ?>
It wouldn’t make sense to have 2 September archives, now wouldn’t it?