nnd
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Comment text field shows up below sidebar imagesHah. Well, I guess I won’t help anyone on this shit forum anymore. Yet another Nazi cunt moderator on a power trip. GO FUCK YOURSELF. Actual, go kill yourself and do the world a favor. Worst forum I’ve ever been on. Total joke.
Forum: Fixing WordPress
In reply to: Comment text field shows up below sidebar imageslol, oops. Something went wrong there. And of course WP has no way to edit it.
[code moderated as per forum rules - please use the pastebin]
Should be:
[dito]
Forum: Fixing WordPress
In reply to: Comment text field shows up below sidebar imagesThis needs to be fixed, too:
[code moderated as per forum rules - please use the pastebin]
Forum: Fixing WordPress
In reply to: Comment text field shows up below sidebar imagesFind:
[code moderated as per forum rules - please use the pastebin]
Delete all 3 margin rules:
In #leftside,#rightside, delete "margin-top:-15px;"
In #leftside, delete "margin-right:15px;"
In #rightside, delete "margin-left:15px;"Forum: Fixing WordPress
In reply to: disable commenting using twenty tenYou need to uncheck “Allow Comments” on each page individually.
If you don’t see that option, click on Screen Options near the top right and check “Discussion”.That or make a Child Theme with a new loop-page.php
Forum: Fixing WordPress
In reply to: How to display uploaded WMV video file in a postSearch Google not the Codex.
Make sure you use the HTML editor when you paste the code into the post.
.wmv isn’t recommended for the web, all browsers other than IE need a special plug in to play them, and they are usually way too large or they aren’t streaming (or some reason, not quite sure, just know they aren’t used much).
.flv is usually the way to go. You should convert .wmv to .flv “they” say.Forum: Fixing WordPress
In reply to: My codes keep disappearingFor now, put the disappearing code in LAST. Using HTML mode. And if you think you might go back later to edit it, save the code snippet in a text file on your computer somewhere.
Wordpress has always had problems with removing or changing some things with the visual editor, don’t hold your breathe waiting for a fix.Forum: Fixing WordPress
In reply to: cannot get to my login page – lost!Forum: Fixing WordPress
In reply to: Avatar driving me crazy – multi user site – 6 problemsI just stumbled upon a post on here that said that to get the avatar image inside the loop, use this:
<?php echo get_avatar( $post->post_author, 46 ); ?>
Forum: Fixing WordPress
In reply to: Avatar driving me crazy – multi user site – 6 problemsChange all
<?php the_author() ?>
to
<?php the_author_posts_link(); ?>
Good tutorial on Authors page template (good resource site, over all)
https://justintadlock.com/archives/2008/06/09/doing-more-with-gravatars-authors-template-pageForum: Fixing WordPress
In reply to: Avatar driving me crazy – multi user site – 6 problems1. Does the index.php have
<?php echo get_avatar( get_the_author_meta('user_email'), '70' ); ?>
in the loop? (70 is the size, can be any number),
and is “Use avatars” checked, in dashboard, under “Settings” > “Discussion”?2, 6. Avatars are created using https://www.gravatar.com, all authors need to make an account and upload an image. No other way to do it that I know of other than maybe a plug in (you can search for one)
3, 4. A bit more involved, you need to make a custom template (unless you can find a plugin), as well as edit sidebar.php with some fancy PHP, using
<?php wp_list_authors(); ?>
5. Does the theme have
<?php the_author_posts_link(); ?>
in the loop?