Lokesh-
Forum Replies Created
-
Re-installed the plugin, works fine now.
Forum: Fixing WordPress
In reply to: Stylesheet not loading?Fixed it. For some reason the URLs pointing to the CSS weren’t quiet right, so I used this tool.
https://interconnectit.com/products/search-and-replace-for-wordpress-databases/
Searched for the problem I found, and replaced it with the correct URL, everything works again.
Forum: Fixing WordPress
In reply to: Categories widget sending users to homepage in custom themeWoot! I figured out what I was missing. I missed the very critical step of creating an archive.php file.
Forum: Fixing WordPress
In reply to: Categories widget sending users to homepage in custom themeI think it might be a problem with my permalinks. I tried changing them to default and it didn’t make a difference, so I read that it might be a problem with the .htaccess file that wordpress will generate when you change permalink settings. I don’t have that file though so I couldn’t delete it or make changes to it.
As far as viewing individual posts the best that I can do is click the view post links in wp-admin, and that will load a blank page. Otherwise all I can see is what the loop I posted previously displays.
Any other things I should be looking into, or a major step I could of missed when it comes to making posts viewable?
Thanks in advance,
Forum: Fixing WordPress
In reply to: Categories widget sending users to homepage in custom themeYes, but the only other links are also just in my main menu, and link to pages if that matters. I don’t have any other links that link to specific posts or categories.
Would it be a problem with the loop?
<div class="posts"> <?php $myposts = get_posts(''); foreach($myposts as $post) : setup_postdata($post); ?> <div id="postbg"> <div id="postContent"> <?php the_content(); ?> </div> </div> <?php endforeach; wp_reset_postdata(); ?> </div>
Forum: Fixing WordPress
In reply to: Categories widget sending users to homepage in custom themeThank you for the quick reply
<div class="sidebar-box"><span class="sidebar-title">Categories</span><div class="dots"></div> <ul> <li class="cat-item cat-item-6"><a href="https://localhost:8888/wordpress/category/appliances/" title="View all posts filed under Appliances">Appliances</a> <ul class="children"> <li class="cat-item cat-item-7"><a href="https://localhost:8888/wordpress/category/appliances/admiral/" title="View all posts filed under Admiral">Admiral</a></li> <li class="cat-item cat-item-8"><a href="https://localhost:8888/wordpress/category/appliances/bendix/" title="View all posts filed under Bendix">Bendix</a></li> <li class="cat-item cat-item-9"><a href="https://localhost:8888/wordpress/category/appliances/deep-freeze/" title="View all posts filed under Deep Freeze">Deep Freeze</a></li> <li class="cat-item cat-item-10"><a href="https://localhost:8888/wordpress/category/appliances/frigidaire/" title="View all posts filed under Frigidaire">Frigidaire</a></li> </ul> </li> </ul> </div>