manifestcreative
Forum Replies Created
-
Have never used it, but why don’t you give InstaComment a try?
Forum: Fixing WordPress
In reply to: Unique photo for each parent categoryI’m answering as many noob questions as I can in hopes of someone taking a look!
Forum: Fixing WordPress
In reply to: Internet ExplorerAlso, check your DocType
Forum: Fixing WordPress
In reply to: Add a member counterGive this a shot…
<?php $user_count = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->users;");?> <p><?php echo('user count is ' . $user_count . ' members'; ?></p>
Forum: Fixing WordPress
In reply to: link not appearing in a postYou can wrap any element with an anchor tag that specifies a target.
<a href="https://www.google.com" target="_blank">Place any image, SWF file or text here to create the link</a>
Forum: Fixing WordPress
In reply to: Desperately Seeking Help!It’s unlikely, unless you’ve actually overwritten the file. If you used an FTP client, it’s usually hidden as that file is reserved for the system.
See what GoDaddy tells you and take it from there. After that, switch to a real webhost. I’ve had great luck with HostGator.
Forum: Fixing WordPress
In reply to: Add a member counterExcellent! Please mark the thread resolved!
Forum: Fixing WordPress
In reply to: link not appearing in a postAre you using the HTML or Visual editor?
Forum: Fixing WordPress
In reply to: Cannot Align Image and Text in Aurora ThemeCan you give me a specific example of the bold and italics not working. How about posting a permalink and describing to me where the bold text should be?
Forum: Fixing WordPress
In reply to: websiteWow, you are having problems sedao15,
First off, when you want a temporary ‘Under Construction’ page, it’s usually best to rename your current index.php file to something like index_old.php. You can then create a html page that give the message that you want.
The website looks different because it cannot find your stylesheet. Without digging around, there’s not a whole lot more that I can tell you.
As for the inability to sign in to the admin, you’re getting a 404 error. This means that the file is missing.
The easiest way to get back to where you were, is to reupload the blog from your backups… The ones that I hope you made!
Reply back and I’ll try to help further.
Forum: Fixing WordPress
In reply to: Unique photo for each parent categoryCan anyone give me a little WordPress love on this stumper?
Forum: Fixing WordPress
In reply to: Add a member counterHi Oste15,
I’m not much of a programmer either. However, I did find this post in the WordPress Codex that I hope will help.
<?php $user_count = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->users;");?> <?php echo 'There are currently ' . $user_count; . ' members.' ?>
There’s also a similar thread here!
Forum: Fixing WordPress
In reply to: Problem with IEAlso check your Doctype — the very first line in your code. Here’s a great article from A List Apart about that.
This is the one that I use most often:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
Forum: Fixing WordPress
In reply to: Cannot Align Image and Text in Aurora ThemeCan I get a link to your site? I’ll take a look at it in Firebug and see if I can help.
Forum: Fixing WordPress
In reply to: link not appearing in a postI’m going to need a bit more information if you still need help. How about going to the ‘Edit Post’ section, and opening the offending post. From there, click the “HTML” tab, and copy and paste the code here. If it’s a very long post, find the paragraph with the link(s) and post that.