haochi
Forum Replies Created
-
Forum: Requests and Feedback
In reply to: Recursive search tool to check WP directoriesForum: Fixing WordPress
In reply to: cannot log inJust remove/delete the empty line on line 18.
https://img299.imageshack.us/img299/9214/emptylinesme4.pngThere’s another one on line 56, remove that as well if you see any similar errors.
Forum: Fixing WordPress
In reply to: Replacing Title with Image (logo)You can:
1) change#logo
‘swidth
to500px
or something like that, or
2) applypadding-left:210px;
ormargin-left:210px;
to the image inside #logo rather than #logo itself.Doing one of those two should fix the problem, #1 is preferred.
Forum: Fixing WordPress
In reply to: Replacing Title with Image (logo)What do you mean “doesn’t display properly”?
I can see the logo in IE perfectly.BTW are you trying to comment out // text-indent: -9999px;
? This is how to do it correctly.
/*text-indent: -9999px;*/
Forum: Requests and Feedback
In reply to: WordPress Server Load>> Is this caused by the permalinks structure?
Possibly. Having pretty permalink definitely puts more (albeit not very much in most cases) loads on the server. It’s a good idea to optimize your theme code and the plugins that your site’s using.>> Is it worth, SEO wise, having the fancy permalink structure enabled?
SEO depends on many factors so it might actually hurt your site. However, generally speaking, yes, it helps.Forum: Fixing WordPress
In reply to: Broken images on Index.php onlyYou can 1) move the signup.jpg to /images/ or, 2) change “/images/signup.jpg” in your index.php file to “https://www.premierlimotampa.com/wp-content/themes/monoblock/images/signup.jpg”
Forum: Fixing WordPress
In reply to: Site works for months, then goes crazy.Probably BAStats.
Forum: Fixing WordPress
In reply to: A page showing just the post titles…..One of the easiest way (although it’s really not a good idea if you have a lot of posts, cache the page if necessary): Create a page template and use query_post().
Forum: Fixing WordPress
In reply to: Can Post Comments… But Can’t See ThemThe comments_template() tag is supposed to be in the single.php file.
Forum: Installing WordPress
In reply to: Please HELP!!!!!!!!!!!!!!!!!!!!!!!!!!!!Forum: Fixing WordPress
In reply to: Site works for months, then goes crazy.It’s the visitor plugin, disable it and/or use something else.
Forum: Fixing WordPress
In reply to: Searching and getting rid of “Read the rest of this entry ?”You used the
<!--more-->
tag to separate your content in your posts, that’s why. If you are using the acosmin them then it should display the same way on the homepage.Forum: Installing WordPress
In reply to: how to add “Related entries”Use one of these plugins: https://www.ads-software.com/extend/plugins/tags/related
or roll your own.Forum: Installing WordPress
In reply to: Name of databaseYou have to create it. Most likely you will need to create the database in your webhost’s control panel of some sort. If you don’t know how to do it, ask your host.
Forum: Fixing WordPress
In reply to: Searching and getting rid of “Read the rest of this entry ?”Edit your search.php file in your theme directory.
I don’t know what theme you are using so can’t tell you exactly what to remove, but most likely you would find “the_excerpt()” there and if you do, replace that with “the_content()”.