wiziology
Forum Replies Created
-
Forum: Plugins
In reply to: w3 Total Cache: Minify External Javascript and Buggy BehaviorI can not find a way to even access the minify wizard in the current release. I’d like to place the JS in the footer as well but can’t. Can someone help me with finding this wizard?
Forum: Fixing WordPress
In reply to: Custom Post Type Not WorkingI have solved my problem. The solution can be found here.
Forum: Fixing WordPress
In reply to: Pagnation on Author PageWow Mark, you are a lifesaver!!
After changing the permalink settings and deactivating all plugins, it started working. Then changing the permalink settings back to how I had them, everything worked perfectly!
Thank you so much!
Forum: Fixing WordPress
In reply to: Pagnation on Author PageI unlocked the pages from maintenance mode so you could see what is actually happening.
Forum: Fixing WordPress
In reply to: Pagnation on Author PageYes, the author page behaves correctly without the 5 lines posted above and in fact, it even works with the 5 lines. It’s just when you go to page 2 that it stops behaving the right way.
And yes, I’m using an author template, author.php
Thanks for the help!
Forum: Fixing WordPress
In reply to: Pagination for Custom Post TypesHey Mark,
I am hoping you can help me as well. I have posted my problem (which is similar to the ones above) here: https://www.ads-software.com/support/topic/pagnation-on-author-page?replies=1#post-1790388
If you would be so kind as to take a look and see if you can offer any insight, I would greatly appreciate it.
Thanks in advance!
Forum: Fixing WordPress
In reply to: Pagnation on Author PageUpdate:
Apparently it is also doing the same thing on my “category” pages. A custom articles page I made works fine tho.
The page isn’t currently live, but I can provide a link with a login if need be.
Thanks again
Forum: Installing WordPress
In reply to: Fresh 3.0 Install to subdirectory failsHey Ipstenu, There isn’t an .htaccess file inside of the 2011 directory. I created a new folder and installed the fresh WP install and that’s currently all that’s in there.
Forum: Installing WordPress
In reply to: Fresh 3.0 Install to subdirectory failsA follow-up. I am still having problems with https://www.westerncreative.com/2011 redirecting to the homepage, however, if you go to https://www.westerncreative.com/2011/?p=1, you can see that the single post works just fine. So for some reason if there is a get variable, the page won’t redirect, but if there isn’t, you get taken to the homepage.
What could possibly be causing this??
Forum: Installing WordPress
In reply to: WP 3.0 cannot migrate site from testing servera_johnson: There actually is mention of doing that.
https://codex.www.ads-software.com/Moving_WordPress
https://codex.www.ads-software.com/Backing_Up_Your_DatabaseForum: Installing WordPress
In reply to: Fresh 3.0 Install to subdirectory failsThanks for the response esmi, however, the .htaccess file in the root is blank so that can’t be what’s causing the redirect.
If there are any other suggestions, i’m open to ideas!
Forum: Fixing WordPress
In reply to: Paging Returning 404 ErrorSurprisingly, as soon as I posted this, I thought of something which may work, and it actually did. I do not know if my question has been a problem for others, however, this was my fix:
Go to the admin panel > Settings >Reading
I had Posts page: Blog (to associate my blog with the posts) but i guess that’s not correct. Just set this back to “- Select -” and reload your page. Now all of my paging works correctly… does yours?
Forum: Fixing WordPress
In reply to: Multiple tag / category queriesyour best chance to figure this problem out is to contact the person who wrote the article you are referring us to. they probably can help you with any problems with their plugin.
Forum: Everything else WordPress
In reply to: Add Comment Count to About PageNo problem man, just remember to be patient when you post on here. Hundreds of people are posting questions every day, so it’s very easy for one to get lost in the mix. Eventually, someone will find it!
To answer your question, the loop is what retrieves post or page information.
The loop starts with:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>and ends with:
<?php endwhile; else: ?>
<p><?php _e(‘Sorry, no posts matched your criteria.’); ?></p>
<?php endif; ?>1) Copy page.php template from your template directory. At the very top of the file, add this to the very first line:
/*
Template Name: About Page
*/After the line with the_post() and before the first endwhile, add this line:
<?php
echo $post->comment_count;
?>Save the file as about.php and upload it to your current template directory. Login to your WordPress admin page and go to manage pages to select your about page. This will bring up the page editor. You will have your title and page content. Well below that, you will see a section saying “Page Template”. Click the dropdown box and select About Page. Now your about page will load the about.php file instead of the standard page.php
You can read about the loop here:
https://codex.www.ads-software.com/The_LoopHope this helps.
– The Wiz
Forum: Everything else WordPress
In reply to: Add Comment Count to About Pagehey man, just came across your post, try using the following code within the loop.
<? $comment_count = $post->comment_count; ?>