jeezyo
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Links on website still pointing to localhostTry this: Go to this link, https://help.godaddy.com/article/39 to learn how to determine your databases host name. Once you’ve got that, go into the wp-config.php file in the root of your install, look for
define('DB_HOST', 'localhost');
and change localhost to the name you got in the previous step.Forum: Fixing WordPress
In reply to: Lost wp-admin folderI would update those files as well. Really, you need to update everything aside from your wp-content folder and its contents, which is where all your themes, plugins, and uploads are.
EDIT: Of course, make sure you first write down the database and config info in your wp-config file, so that you can enter it into the new one.
Forum: Fixing WordPress
In reply to: opening an existing postcheck your permalinks. are you using a custom structure?
Forum: Fixing WordPress
In reply to: Lost wp-admin folderI think the answer is in here, maybe mid page: https://www.ads-software.com/support/topic/30-fatal-error-cannot-redeclare-wp_load_image?replies=15
I think you were probably using an older version of WP, and then loaded in admin files for 3.0 or similar. They apparently moved that function, so now its duplicating. You basically need to do a manual upgrade, so replace your WP core files, including the wp-Includes — just leave wp-content so you dont mess with your themes/plugins.
Forum: Fixing WordPress
In reply to: how to seperate post in a frame ?You just need to add a border to the div surrounding your post. Best bet is to create a child theme so you dont lose changes to your css when updating, but it looks like you would just add something like this:
.single .hentry { border: 1px solid #000; }
Forum: Fixing WordPress
In reply to: auto update to facebook?I do this outside of wordpress, through facebook. Facebook app called “RSS Graffiti”. There are WP plugins that can achieve this as well.
Forum: Fixing WordPress
In reply to: Trying to embed a static front page into a themeThere are actually a few plugins which allow you to create a theme based on duplicating an existing site — so it can copy pages, posts, categories, etc. — whatever you choose. So you could set that stuff up ahead of time. Not sure whats out there for free, but ive seen a few premium plugins.
Forum: Fixing WordPress
In reply to: Lost wp-admin folderForum: Fixing WordPress
In reply to: Add HOME Link as Default to the Navigation?You mean its displaying vertically instead of horizontally? You need to target the css for the navigation list and display:inline;
https://css.maxdesign.com.au/listamatic/horizontal01.htmForum: Fixing WordPress
In reply to: How to design photo social networkYou can do this with buddypress, but not out of the box. You’ll need a media plugin for buddypress.
Forum: Fixing WordPress
In reply to: White Screen of Death on Server Portwrong db username or password?
Forum: Fixing WordPress
In reply to: Admin Pop-up windows displayed under pageah..well, if its set to 2 columns, try just dragging the sections you want in the right column in the gray box that should show up. You might need to re-select 2 columns to see it.
Forum: Fixing WordPress
In reply to: Trying to embed a static front page into a themeYou could create a custom template to display posts, and a custom index template. They’d still have to actually add those pages though.
Forum: Fixing WordPress
In reply to: How do I change this You do not have ALT tag set to your keywordThis is coming from some SEO plugin? Sounds like it is, and its referring to your images. When you’re inserting your images from the media library, in the popup that allows you to insert your image, you’ll see a field for “alternate text”. Just put your keyword in there.
Forum: Fixing WordPress
In reply to: products pageClarify — are you saying you want the products page to be your home page? If so, go to Setting–>Reading, choose static front page, and then select the products page.