Paul Kaiser
Forum Replies Created
-
Forum: Plugins
In reply to: [Content Scheduler] [Plugin: Content Scheduler] CS option won't show upAre you running multisite? I’m wondering if it isn’t working right with multisite…
Let me know, please.
Take care,
PaulHowdy,
Glad you like the plugin.
Ah, so you need to the plugin to support custom taxonomies… not just Categories and Tags.Hmm… I’ll see what I can do!
Regards,
PaulOh, man…
I do not know why, but I’ll go check it out and get back to you…
Regards,
PaulForum: Fixing WordPress
In reply to: Duplicate Blog Indexes 'Older Posts Pages'Howdy,
In this part of the code, the pagination gets screwed up:
* Without further ado, the loop: */ ?> <?php query_posts($query_string . '&cat=-4'); ?> <?php while ( have_posts() ) : the_post(); ?>query_posts will mess up pagination and some other things.
(Note: this query_posts line was not in the original 2010 loop.php.)This post I found can help you fix that:
http://stylizedweb.com/2008/08/13/query_posts-pagination-problem/If you go that route, you might want to put back your “Older” and “Newer” links.
Let me know how this works out.
Take care,
PaulP.S. — Please Use Pastebin when communicating more than 10 lines of code in the future.
Forum: Fixing WordPress
In reply to: Category links at top of page not workingHowdy Kitty,
Please try this in your PermaLinks:
/%category%/%postname%/In totally unrelated and unsolicited news: One of our kitties is missing today! I’m running all over trying to find him. 🙁 Send me some good kitty vibes, please.
Let me know if this solution does not work out.
Take care,
PaulForum: Fixing WordPress
In reply to: font/text issuesHowdy,
First, Please use Pastebin when adding more than 10 lines of code on the forum. This keeps your post from goofing up the forum pages, and also makes it easier for folks to help you.
Second, for sizing the names, I suggest you style the names with “Heading 4” and adjust h4 rules in your CSS file as needed.
Third, for the buttons to line up, you need to get the clearing <div> out of there. While it is not in your code provided, it is in the resulting page — so it must be added by the plugin handling your [cssbutton] shortcode.
You may be able to set an option for that plugin, or you may have to edit some files (D’oh…)
What needs removed is:
<div class="clear"></div>Good luck,
PaulForum: Fixing WordPress
In reply to: I have multiple sites and they seem to be getting confusedHowdy,
Are you using Multisite? I’m guessing not.
There should not inherently be a problem with logging in to multiple WordPress sites from the same machine. I use the same username on a zillion sites. (Maybe not exactly a zillion…)
Are you in any way using your browser’s “remember passwords” feature? Sometimes that easily confuses folks.
I realize you may already have done this, but I would log in to each of the sites right now, change the password to something you know, write those down, then go back to each of the 3 sites using a different browser and see if you can log in successfully.
Lastly, wondering if you are using any special plugins that change Login / User password behavior?
Take care,
PaulForum: Fixing WordPress
In reply to: Duplicate Blog Indexes 'Older Posts Pages'Howdy,
You should not give up on the loop file problem.
You won’t be able to naturally remove pages 2, 3, 4… they are just listing pages pulling in posts from your database.Can you use Pastebin and provide your loop file? Or the area in your template where the loop is called?
Can probably help out easily.
Take care,
PaulForum: Fixing WordPress
In reply to: Manual excerpt in latest article sectionHowdy,
We need a bit more code than that. UP to the “the_post()” part, the loop is just getting the next post info ready to display.
What code comes after that?
Note: If it is long (more than 10 lines or so) please use PasteBin to paste the code in and provide the shortened URL here.Probably something I can help with.
Take care,
PaulForum: Fixing WordPress
In reply to: Posts not showing up on front endHowdy,
1. What theme are you using?
2. Can you provide a link to the site and the specific page that is a problem?
3. Was the line of text you added just normal text, or did it contain anything like a [shortcode] or <?php statements ?>?I’ll try to help,
PaulForum: Themes and Templates
In reply to: Create templatesHowdy,
Decent explanation here:
http://www.wplover.com/1818/tutorial-using-jquery-masonry-with-wordpress/Though it is from 2010. NOTE: I have not tried this out, but it is somewhere to start.
Good luck,
PaulForum: Themes and Templates
In reply to: single post template filesHowdy Kanger,
You should be fine, except it is single-post.php (hyphen rather than underscore.)
Check out:
http://codex.wordpress.org/Template_HierarchyThere’s a nifty visual reference that shows how WordPress will decide what template file to use for your page.
No changes that will break that for your singles from 3.1 to 3.4.
Take care,
PaulForum: Plugins
In reply to: Enable Comments on Category PageHowdy,
What theme are you using?
Basic method to make this happen.
1. Check “single.php” file in your theme for how it calls the commenting block.
2. Copy that commenting block.
3. Check “category.php”, “archive.php”, or whatever other template page is used for your category page.
4. Find the loop (usually while( have_posts… blah) and paste the commenting block of code towards the end of the post content in the loop.Let me know if you need more help.
Take care,
PaulForum: Fixing WordPress
In reply to: Category links at top of page not workingHowdy,
Can you list what plugins are Active?
There are plugins that will “help” to remove the “/category/” part, but they can goof things up.Also, what are your settings under:
Settings > PermalinksRegards,
PaulForum: Networking WordPress
In reply to: SEO purposeHowdy,
Do you want all sites on the multisite to contribute to the “Link Juice” of the same site / entity? (I know, that is worded weird.)
Like, if you are having a bunch of sites all about tropical fish, and maybe you’d like for all those different sites people maintain to all sort of “count” towards search engines feeling your multisite is a good authority on tropical fish.
Anyway, you would want subfolder, instead of subdomain.
Take care,
Paul