lilqhgal
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Custom Field questionOk so I just add an else statement… will give that a try. Sorry for the confusing question. ??
Forum: Fixing WordPress
In reply to: How long for trackback/pingbacks?Ok I upgraded to 2.8.5 for both of my test sites and still never got any notifications. Can someone help me? Thanks.
Forum: Themes and Templates
In reply to: Using JQuery… what is the right way to do it?nipponese, I’m having the same issue trying to get some plugins that already have jQuery and one that I have hard-coded into my theme (a content slider which is part of the design)… I’m not exactly sure how to use your above posted code to apply to my situation. It works FINE with my code below, UNTIL a plugin that uses jQuery is activated. Here is my code:
<script src="/js/jquery-1.2.6.js" type="text/javascript"></script> <script src="/js/jquery.scrollTo-1.3.3.js" type="text/javascript"></script> <script src="/js/jquery.localscroll-1.2.5.js" type="text/javascript" charset="utf-8"></script> <script src="/js/jquery.serialScroll-1.2.1.js" type="text/javascript" charset="utf-8"></script> <script src="/js/coda-slider.js" type="text/javascript" charset="utf-8"></script>
Any suggestions are appreciated!!!
Forum: Fixing WordPress
In reply to: How long for trackback/pingbacks?Ok I’ve been waiting for like 4 hours now and no trackback or pingback notifications…… am I missing something? Both websites (test sites) are 2.8.4
Forum: Fixing WordPress
In reply to: CategoriesHave you created the categories? Dashboard -> Posts -> Categories (for current versions).
Forum: Fixing WordPress
In reply to: Posting an article as a different authorWhy not simply type a new line at the bottom of each of your posts that says “Article written by So and So from Such and Such.” you could even style that with a link/email addy.
Forum: Fixing WordPress
In reply to: Pingback/Trackback stopped after WP 2.7Bumping because I have the same issues. 2.8.4 and now 2.8.5
Well I think I got it working. I guess my code WAS working, but the problem was that my LINKS were actually pages I set up, so for example I had page 134 as the portfolio page, with the template pulling the categories and posts in. I needed to link to the CATEGORY vs. the PAGE and all is well. I guess I will have to have a hard-coded section in my sidebar for my navigation menu as I can’t have mixed pages and category links together.
Forum: Fixing WordPress
In reply to: Conditional tags changing imagesI accomplished this by adding the conditional statement to my header.php file:
<div id="header"> <?php if (is_front_page()) { ?> <div class="1">first div</div> <?php } elseif (is_page('2')) { ?> <div class="2">second div</div> <?php } elseif (is_page('134')) { ?> <div class="3">third div</div> <?php } elseif (is_category('4')) { ?> <div class="cat-4">fourth category div</div> <?php } else { ?> <div class="plain">the div that is displayed if none of the above conditions are met</div> <?php } ?> </div>
It worked great for me, and you can add different classes for the different background images you need.
However, now my problem is that I can’t get the posts under a certain category to have the conditions met. Using the above example, Category-4 has the correct div but all posts that have been added to Category-4 end up getting the “all other” div (the one called plain above). What can I add to that code that says something like “if cat-4 AND ALL CHILDREN” ? Thanks!
Forum: Themes and Templates
In reply to: Post template for one post?Nevermind I think I figured it out! So far it looks good! ?? Thanks for all the help!
Forum: Themes and Templates
In reply to: Post template for one post?Ok so using the is_sticky() how would I modify the index.php so that it says:
If is_sticky()
–display THIS html–else if
–display this OTHER html–I grasp the concept but I’m not 100% sure how to write the proper code. Thanks!
Forum: Themes and Templates
In reply to: Post template for one post?One post will be stickied to the homepage. That one post I want to have a different template/design than the rest of the posts. On all other pages, that post will not appear.
Forum: Fixing WordPress
In reply to: Visual Dashboard ComponentsI am looking for the same functionality, can anybody suggest anything?
Forum: Fixing WordPress
In reply to: Allow Plugins in other rolesI am looking for this too.
Forum: Themes and Templates
In reply to: How to create a Demo site?AWESOME! And I just found this too, so here’s yet another option:
https://www.supersatellite.com/2008/04/02/filling-a-wordpress-sandbox/