witchybrit
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Changing Fonts in Twenty Ten templateYou rock! ?? Thanks a million!
Forum: Fixing WordPress
In reply to: Help with Media LibraryOK Thanks but not what I am needing. My issue is with WordPress not Windows ??
Forum: Fixing WordPress
In reply to: How to register Subscribers and Authorsemail me and I can give you details.
Forum: Fixing WordPress
In reply to: How to register Subscribers and AuthorsI would suggest having some custom code work done. Let me know if you want a quote ??
Forum: Fixing WordPress
In reply to: page insertionsIndeed – LOL I was about to post and say “omg I amazed myself” I did indeed make my own page templates ?? So yes THANK YOU! if anyone else gets stuck on that issue let me know will be glad to tell you my process which ended up working quite well.
Forum: Fixing WordPress
In reply to: Help with general tweaksYes on the Admin side – Like when they login I do not want all the WordPress news, Tools section, etc – So I want to be able to control what general subscribers see
Forum: Fixing WordPress
In reply to: Help with an SSL issuegot it
Forum: Themes and Templates
In reply to: Help removing a linkthank you so much
Forum: Fixing WordPress
In reply to: Can you add images by html, instead of the uploader?One way is to find the image you want to post and right click on it and choose “Copy Image location, etc” or copy image address. Then just use your html code and insert.
example image location might be: https://www.gravatar.com/avatar/861a29e49fa7c82fb61f61221db6f9ee?s=48&d=http%3A%2F%2Fwww.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D48&r=g
That is a rough example but you get the idea.
Forum: Themes and Templates
In reply to: Cordobo Green Park 2 0.9.501 HELPLOL I fixed it – If anyone else hits that issue just go into the theme folder and open the ad_middle.php file and remove the word ‘Advertisement’ ??
Forum: Plugins
In reply to: Easy AdSense No GoHmmm – Well that did not show until after I installed and uninstalled your plugin. So I am stumped.
Forum: Plugins
In reply to: Easy AdSense No Gohere is example page: https://continenttours.com/cthome/?p=164
Forum: Fixing WordPress
In reply to: Help Removing “Comments Closed” tagI got it!! Thanks much for the help.
Forum: Fixing WordPress
In reply to: Help Removing “Comments Closed” tagok I see one section at bottom about it but the line you mention. I tried changing a few things but no change on the site.
[<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=”https://www.w3.org/1999/xhtml”>
<head>
<title><?php echo get_option(‘blogname’); ?> – Comments on <?php the_title(); ?></title><meta http-equiv=”Content-Type” content=”<?php bloginfo(‘html_type’); ?>; charset=<?php echo get_option(‘blog_charset’); ?>” />
<style type=”text/css” media=”screen”>
@import url( <?php bloginfo(‘stylesheet_url’); ?> );
body { margin: 3px; }
</style></head>
<body id=”commentspopup”><h1 id=”header”>“><?php echo get_option(‘blogname’); ?></h1>
<?php
/* Don’t remove these lines. */
add_filter(‘comment_text’, ‘popuplinks’);
if ( have_posts() ) :
while ( have_posts() ) : the_post();
?>
<h2 id=”comments”>Comments</h2><p>ID); ?>”><abbr title=”Really Simple Syndication”>RSS</abbr> feed for comments on this post.</p>
<?php if (‘open’ == $post->ping_status) { ?>
<p>The <abbr title=”Universal Resource Locator”>URL</abbr> to TrackBack this entry is: <?php trackback_url() ?></p>
<?php } ?><?php
// this line is WordPress’ motor, do not delete it.
$commenter = wp_get_current_commenter();
extract($commenter);
$comments = get_approved_comments($id);
$post = get_post($id);
if ( post_password_required($post) ) { // and it doesn’t match the cookie
echo(get_the_password_form());
} else { ?><?php if ($comments) { ?>
<ol id=”commentlist”>
<?php foreach ($comments as $comment) { ?>
<li id=”comment-<?php comment_ID() ?>”>
<?php comment_text() ?>
<p><cite><?php comment_type(‘Comment’, ‘Trackback’, ‘Pingback’); ?> by <?php comment_author_link() ?> — <?php comment_date() ?> @ “><?php comment_time() ?></cite></p><?php } // end for each comment ?>
<?php } else { // this is displayed if there are no comments so far ?>
<p>No comments yet.</p>
<?php } ?><?php if (‘open’ == $post->comment_status) { ?>
<h2>Leave a comment</h2>
<p>Line and paragraph breaks automatic, e-mail address never displayed, <acronym title=”Hypertext Markup Language”>HTML</acronym> allowed:<?php echo allowed_tags(); ?>
</p><form action=”<?php echo get_option(‘siteurl’); ?>/wp-comments-post.php” method=”post” id=”commentform”>
<?php if ( $user_ID ) : ?>
<p>Logged in as /wp-admin/profile.php”><?php echo $user_identity; ?>. ” title=”Log out of this account”>Log out »</p>
<?php else : ?>
<p>
<input type=”text” name=”author” id=”author” class=”textarea” value=”<?php echo $comment_author; ?>” size=”28″ tabindex=”1″ />
<label for=”author”>Name</label>
</p><p>
<input type=”text” name=”email” id=”email” value=”<?php echo $comment_author_email; ?>” size=”28″ tabindex=”2″ />
<label for=”email”>E-mail</label>
</p><p>
<input type=”text” name=”url” id=”url” value=”<?php echo $comment_author_url; ?>” size=”28″ tabindex=”3″ />
<label for=”url”><abbr title=”Universal Resource Locator”>URL</abbr></label>
</p>
<?php endif; ?><p>
<label for=”comment”>Your Comment</label><textarea name=”comment” id=”comment” cols=”70″ rows=”4″ tabindex=”4″></textarea>
</p><p>
<input type=”hidden” name=”comment_post_ID” value=”<?php echo $id; ?>” />
<input type=”hidden” name=”redirect_to” value=”<?php echo attribute_escape($_SERVER[“REQUEST_URI”]); ?>” />
<input name=”submit” type=”submit” tabindex=”5″ value=”Say It!” />
</p>
<?php do_action(‘comment_form’, $post->ID); ?>
</form>
<?php } else { // comments are closed ?>
<p>Sorry, the comment form is closed at this time.</p>
<?php }
} // end password check
?><div>Close this window.</div>
<?php // if you delete this the sky will fall on your head
endwhile; //endwhile have_posts()
else: //have_posts()
?>
<p>Sorry, no posts matched your criteria.</p>
<?php endif; ?>
<!– // this is just the end of the motor – don’t touch that line either ?? –>
<?php //} ?>
<p class=”credit”><?php timer_stop(1); ?> <cite>Powered by WordPress</cite></p>
<?php // Seen at https://www.mijnkopthee.nl/log2/archive/2003/05/28/esc(18) ?>
<script type=”text/javascript”>
<!–
document.onkeypress = function esc(e) {
if(typeof(e) == “undefined”) { e=event; }
if (e.keyCode == 27) { self.close(); }
}
// –>
</script>
</body>
</html>
]Forum: Fixing WordPress
In reply to: Help with Nav issue please! :)Shane YOU ROCK!!! Thank you so much. ??