codingpet
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: robots.txtthe “public_html” is the root folder of hostgator.
Forum: Fixing WordPress
In reply to: Now css or any style recognition on a remote computerIf so, then I think all the images path are http://localhost/mysite/wp based. You must change all path in the database to a URL that can be accessed by remote computers e.g. the ip of your internal server. It based on how you configured your internal server.
Forum: Fixing WordPress
In reply to: robots.txtIt’s in the root of your hosting. You can connect the hosting via FTP and find it in the root folder. You can edit it by text editor e.g. notepad.
Forum: Fixing WordPress
In reply to: Now css or any style recognition on a remote computerCan you share the URL?
How did you installed the WP? Most of the time, this is because the style file can only be visited on the server computer.
Forum: Fixing WordPress
In reply to: Defining Child Pages Using Custom Field & Output as Boxesquery_posts("posts_per_page=-1&post_type=page&post_parent=$pieces");This is the custom query you wrote. The query is incorrect because all pages will be selected and display.
For products, I suggest you use custom post type on http://codex.wordpress.org/Post_Types Create a custom posts type e.g. products to manage all products will be better.
If you don’t want to check codes, this plugin maybe helpful.
http://wordpress.org/extend/plugins/custom-post-type-ui/Forum: Fixing WordPress
In reply to: Troubleshooting By Deactiving Plug InsHave you tried using firefox+firebug and check it in “console” tab. This will tell you if there are any jQuery errors when loading the page. You will see where and why these errors happened.
Forum: Fixing WordPress
In reply to: Inactive img srcstyle.css line 530. Find
#branding {
border-top: 0 none;
padding-bottom: 10px;
position: relative;
z-index: 2;
}change z-index: 2; to z-index: -100; -100 can be other numbers as long as it’s less than 0.
Forum: Fixing WordPress
In reply to: Database Errors While Moving from localhost to webhosthave you imported the sql file in the correct database? You need to navigate to the proper database and then try to import the .sql file. You can’t import it in the root of phpmyadmin. Not sure if this is your problem.
Forum: Fixing WordPress
In reply to: My Home page doesn't load the same on other computersHi,
I’m not from United States. I think it’s not related with locations. I can see the earth logo.
Have you tried to logout or use another browser without login to view the site? Sometimes, contents will be different from different users(admin and normal visitors).
Forum: Fixing WordPress
In reply to: Current User info hiding a row<?php global $current_user; get_currentuserinfo(); if( !empty($current_user->dep1_middlename) ){ echo ‘Middle Name:’ . $current_user->dep1_middlename . “\n”; } ?>
Something like this may solve your issue. Also, I don’t think you need to write “global $current_user; get_currentuserinfo();” for so many times. Just write it once at the start the your codes.
Forum: Fixing WordPress
In reply to: Removing "says:" from comments in 3.4.1Without seeing your site or theme, it’s hard to exactly know how to remove the says. Most of time, says are written in the comment template of your theme.
Forum: Fixing WordPress
In reply to: 2nd level domainThis plugin may work for you. http://wordpress.org/extend/plugins/wordpress-subdomains/
But it hasn’t been updated in over 2 years. It will be better to test it out before really use it.
Forum: Fixing WordPress
In reply to: Inactive img srcYou are using relative image path that I think they are incorrect.
src="/images/p3293.png"Is the image in your theme image folder? If yes, you may trysrc="<?php bloginfo('template_url'); ?>/images/p3293.png"to make sure the image path is correct.Forum: Fixing WordPress
In reply to: My Home page doesn't load the same on other computersI can see the sponsors. Have you tried different browsers on your computer? Can’t you see the sponsors in all browsers?
I guess it’s cache if some of the browsers is different. You can check wp-admin->appearance->widgets section to see if these ads widgets are there.
Forum: Fixing WordPress
In reply to: get page as get postget_page is to get the content and other values of current page. If you want to show thumbnail, try http://codex.wordpress.org/Function_Reference/the_post_thumbnail or http://codex.wordpress.org/Function_Reference/get_the_post_thumbnail