randinicole
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Migrating wordpress buildForum: Fixing WordPress
In reply to: Error importing WordPress BlogHave you checked your upload limit, when you go to import it should say Choose a file from your computer: (Maximum size: 7MB) or whatever it is.
This would be the first thing that I would check as I have had similar issues importing backups and had to modify my php.ini file. But I am on a vps so I was able to do it myself, if it is the case you would have to have godaddy modify it for you, if they do that, I have never used godaddy hosting so I have no clue.
Forum: Fixing WordPress
In reply to: Permalinks question: realty.fearlessflyer.comIt is a plugin, it has nothing to do with the theme. You can either go through the plugins screen from your wordpress admin and search no category base and install it that way or you can download it and either ftp it into your plugins folder or upload it via the wordpress admin. You can download it from the wordpress site.
https://www.ads-software.com/extend/plugins/wp-no-category-base/
Forum: Fixing WordPress
In reply to: Permalinks question: realty.fearlessflyer.comI have used this plugin for awhile now, works great.
Forum: Fixing WordPress
In reply to: fatal error, trying to load siteMy first step would be to log in via ftp and rename or delete the contactform plugin folder and take it from there.
Forum: Fixing WordPress
In reply to: No logo on 'home' pageWhere is your logo located, if it is showing up on regular pages (non front page) and blog post pages, modify your index.php file. It is hard to give you a fix without knowing what your code is or where things are located, but from what you posted it seems that something is missing from the index.php that is found in page.php or single.php
Forum: Fixing WordPress
In reply to: Help with SidebarYou are welcome ??
Forum: Fixing WordPress
In reply to: Help with SidebarI have done this, one way to do it, not saying it is the best way but it has always worked for me.
Modify your single.php page, add the get_sidebar call to add the sidebar and rename your content id to something like singlepagecontent, so you can style the width of the content so you can fit the width of the sidebar and get them side by side.
Forum: Fixing WordPress
In reply to: Child category countThank you, strange I looked at that and must have missed something ??
Forum: Fixing WordPress
In reply to: Change .com/blog to just .comWell you can modify the index.php file from wordpress admin -> appearence -> editor -> and then make sure you hit the “Main Index Template
(index.php)” on the right hand side and that it loaded into the editor.Forum: Fixing WordPress
In reply to: Change .com/blog to just .comI would read over this. Skip to the middle where it says “Using a pre-existing subdirectory install”
Mainly steps six and seven.
6. Change the following and save the file. Change the line that says:
require(‘./wp-blog-header.php’);
to the following, using your directory name for the WordPress core files:
require(‘./blog/wp-blog-header.php’);
7. Login to your site. It should still be https://example.com/wordpress/wp-admin/Step by step instructions. If you need help after attempting that, I would just post again. But that is the standard answer.
Use the_excerpt insead of the_content in your index.php file, it should do what you need.
https://codex.www.ads-software.com/Function_Reference/the_excerpt
Forum: Themes and Templates
In reply to: Preview of postsForum: Themes and Templates
In reply to: Want Comments on Pages as well as PostsMake sure that your page.php file has the php (comment) code that the single.php file has. It should look something like this
<div id="comments"> <?php comments_template(); ?> </div>
Forum: Themes and Templates
In reply to: Footer don't stay at the bottomWell without viewing the webiste itself and the code I would suggest trying the <div style=”clear:both”></div> trick. Place that right before your footer section starts.