Spencer Finnell
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Categories in admin missingYeah it’s possible. Have you deactived all plugins?
Forum: Fixing WordPress
In reply to: Categories in admin missingDo you have Javascript enabled? That class is active if WordPress recognizes that you have Javascript disabled in your browser.
Forum: Fixing WordPress
In reply to: How do you assign a category to a page?You can automatically see all posts in a category by going to https://yoursite.com/category/category-slug
Forum: Fixing WordPress
In reply to: Comments LoginAre you logged in as an admin on the site?
Forum: Themes and Templates
In reply to: new wordpress more problems?What is in index.php? Can you show me the code in paste bin.
Forum: Themes and Templates
In reply to: Display an Item for certain categoriesUsing an
:
with anif
statement means you close it using something likeendif
, as opposed to a}
. So your code should look like this:<?php if (is_category('3') ): // we're in the Plants category, so show a plant ?> <img src='/images/plant.png' alt='a plant' /> <?php : elseif (is_category('4') ) : // we're in the Flowers category, so show a flower ?> <img src='/images/flower.png' alt='a pretty flower' /> <?php endif; // end the if, no images for other other categories ?>
You had the others right, but on line 4, you needed a
:
Forum: Fixing WordPress
In reply to: Help setting up pages? Need them to list category postsI’m not quite sure what you’re asking. If you assign a post to a category, it will show on the category archive page: https://kinetic-sound.com/category/autos-reviews/ Any posts in that category will be listed on that page.
Forum: Fixing WordPress
In reply to: Comments LoginDo you have it set to users have to log in to comment? Check the Discussion SubPanel for the settings.
Also, are you using a custom theme?
Forum: Fixing WordPress
In reply to: Help with changing index pageYou can solve your first problem with a static front page.
As for your second question, you’ll need to do a bit of HTML/CSS editing in order to add an extra column. Then you can use register_sidebar to create another widgetized area. You might want to check out Thirty Ten
Forum: Fixing WordPress
In reply to: Theme not displaying correctly – does not seem to be a theme issueThis is what I see: https://screensnapr.com/u/9lp06b.png
Looks fine to me. If you are missing graphics/colors, etc, it will most likely be a theme problem (or possibly a conflicting plugin.)
Forum: Themes and Templates
In reply to: Want to change Search page titleAre you trying to change the title on the actual page, or the actual page title that appears in the browser title bar?
Forum: Fixing WordPress
In reply to: Can’t Get Image and Text Side By SideHave you disabled the Visual Editor in your profile on the site?
You can add
class="alignleft"
to the images and (hopefully if your theme has included that correclty) your images will align to the left, allowing the text to wrap around it.Forum: Fixing WordPress
In reply to: Edit the <!–more–> tag to go to an exact position on the page?By default it should load on the section of the page where you placed the
<!--more-->
tag. You want it to go further?Forum: Fixing WordPress
In reply to: Category Link Doesn’t List PostsDid you create the sitemap manually? For example, it’s linking to
https://tanzzmohd.com/blogging/
for the Blogging category, but it should behttps://tanzzmohd.com/category/blogging/
Forum: Fixing WordPress
In reply to: Selecting the main categoryThe category isn’t in the permalink when you are viewing a post. Or are you using a plugin?