WP Libra
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Stuck in WordPress hell!Copy your Home content
Create a page called New Home
Paste Home content
Set new Home Page to the page called New Home
What happens?Forum: Everything else WordPress
In reply to: Make money from my blogI think you are going about it wrong.
The first question is how can I get more visitors to my site. Then after you achieve that, worry about monetizing. Honestly, I would wait a good year before even putting any ads up unless you can gain a good amount of traffic in a short time which is not common.
Forum: Fixing WordPress
In reply to: hyperlinks issuesWhat words does he see that have them?
What browser/version is he using?
PC or MAC?
Has he cleared browser cache?Forum: Fixing WordPress
In reply to: How to Remove Meta Data on One PostThat was only step 1. Now that you did that add
#post-2446.meta { display: none; }in style.css and you’re done.
Forum: Fixing WordPress
In reply to: thumbnail appears on content pageJust put the code at the bottom of your style.css
There is a report that the plugin doesnt work with 3.5.1 in the reviews.
Forum: Fixing WordPress
In reply to: thumbnail appears on content pageYou changed themes on me. You might need to use an !important tag here.
body.single .thumbnail { display: none !important; }Forum: Fixing WordPress
In reply to: Virus Comments on my blog and now email too.Well easy way is go to Settings -> Discussion and disable WP from sending emails to the admin when new comments are made.
Forum: Fixing WordPress
In reply to: thumbnail appears on content pageAppearance -> Editor -> Style.css
Add
body.single .thumb { display: none; }Forum: Fixing WordPress
In reply to: How to Remove Meta Data on One PostWell here is an easier fix.
Appearance -> Editor
Select index.phpFind
<div class="meta group"> <div class="signature"> <p>Written by <?php the_author() ?> <span class="edit"><?php edit_post_link('Edit'); ?></span></p> <p><?php the_time('F jS, Y'); ?> <?php _e("at"); ?> <?php the_time('g:i a'); ?></p> </div> <div class="tags"> <p>Posted in <?php the_category(',') ?></p> <?php if ( the_tags('<p>Tagged with ', ', ', '</p>') ) ?> </div> </div>Change
<div class="meta group">to
<div id="post-<?php the_ID(); ?>" class="meta group">Post back here when that is done and I can tell you how to finish the rest.
Forum: Fixing WordPress
In reply to: How to Remove Meta Data on One PostIt’s called Firebug, an extension to Firefox.
You can only view but can also manipulate CSS in real time, nothing saves though. Just a cool developer tool that helps diagnosis website issues.
Forum: Fixing WordPress
In reply to: Where is my websiteI’d start by deactivating all your plugins manually.
Unless you know why your site redirects to /blog/
If it isn’t supposed to do then you might want to wonder if you changed the URL in settings maybe?
Forum: Fixing WordPress
In reply to: How to Remove Meta Data on One PostNot sure if video responses are cool but here ya go.
Forum: Fixing WordPress
In reply to: How to Remove Meta Data on One PostAlso it is a sticky post but the meta is outside the div. So you can’t target it. The HTML structure is going to have to change to support targeting this specific post through CSS.
Forum: Fixing WordPress
In reply to: How to Remove Meta Data on One PostYour theme doesn’t support giving classes per post.
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> //Post content </article>The code above adds an ID and Class to each post. This is something you would have to add in to your theme. Your theme doesn’t have a DIV around the entire post so you would have to add it.
When that is complete you can target a specific post and use display none.
As for looking in the DB to remove it, that won’t get you anywhere.
The best way is to do the above but with your theme it is going to require some work.
Forum: Fixing WordPress
In reply to: Not having access to dashboardNot remove. Just disable by renaming the plugin folder.