Forum Replies Created

Viewing 15 replies - 241 through 255 (of 546 total)
  • Let me just add that bringing a client to anhosting.com returns $85 to you if you are an affiliate. At $6.95 USD per month (paying a year up front), it can’t be beat given huge bandwidth, disk space and features, as well as an easy to use cpanel.

    wow whooami, tell us what you really think! that’s about the strongest language I’ve ever heard you use (I generally respect your posts because they are so darn useful)

    I use midphase and/or anhosting (the same place, different pricing) because they are fairly cheap and can be reached 24/7/365 by phone. If you are an affiliate who takes all your clients there, you get leverage and can get a top level manager to give you his or her extension to call if you have issues.

    The best part for anyone in Croatia (or really, just about anywhere other than the US) is that your money goes a long way here now, sad to say.

    Why are you using the single quote? Try using a character entity for it if all you want is ‘something like this’

    the character entity to use is for an apostrophe. If you want matching opening and closing ones, the left side one is

    otherwise, put the \ in before the single quotes you use yourself and see what happens.

    HTH

    you can apply a min-height property and value to the .post style (which will work in modern standards browsers) and set up an IE conditional comment that adds a height:value for browsers lte IE6, as in:

    <!--[if lte IE 6]>
    put a set of style tags and rules here or link to a different style sheet just to be used if the users browser is IE6 or older
    <![endif]-->

    Modern browsers respect min-height and IE browsers 6 or older will ignore it and use the height value. If the content is greater than the height, it will just go ahead and expand vertically anyway.

    HTH

    Um, did you try clicking the Publish button? Until you publish, everything is a draft.

    Read this: http://codex.ww.wp.xz.cn/Template_Tags/wp_list_categories

    you can exclude the ids of any category you don’t want to have displayed in your menu of categories. Other than that, if you are asking how to not show those category posts, use a custom query to exclude posts of a particular category.

    Read this: http://codex.ww.wp.xz.cn/Displaying_Posts_Using_a_Custom_Select_Query

    HTH

    Read up on the use of custom fields. If each post is a new project under the category “Recent Projects” then you can set up a custom field of 1-x number of images (linked or not) and then customize your category_x.php template (where x is the id for that category) to conditionally look for custom fields and display their content.

    There have been plugins to make this easy (c2c_custom) in the past versions but I haven’t tested to see if those work in 2.5x versions.

    HTH

    1) set up a category called News
    2) add news items as posts
    3) develop a template specifically for displaying your news and name it category_x.php where “x” equals the number of the category (its ID). You can simply copy the content of category.php into this file and save it and upload it to your theme folder. When you click the link to take you to your news page, it will load posts for that category.

    Or… simply make that category, add news posts to it, then use some custom code in your page.php file that conditionally will display the last “x” number of posts in a specific category (the news one).

    I believe there are plugins to help you with calling recent posts for specific categories, but be careful which ones you use – some don’t work in recent versions of WordPress.

    This is probably a CSS adjustment of the top or bottom margin of the class .post

    If you post your site URL, someone can help.

    Forum: Plugins
    In reply to: CSS got hacked

    nevermind… I edited my comment. Godaddy, btw, STILL doesn’t offer the latest version of WordPress… and I was the one that got them to go from 2.1.2 to 2.3.2 (trying to get them to stay up-to-date)…

    anyway, good luck with your issues… I got hacked once and I’ve been much more diligent about keeping WordPress up-to-date since.

    Hi, Monika
    Can your approach be used in the home.php file to show posts from just one category?

    I just upgraded a site from 2.1.2 to 2.3.3 and boy, is my homepage broken! first off, is_home() no longer works and oddly, the page wants to show ALL the posts from ALL categories.

    And, the Reading Options in my admin doesn’t list ALL my category templates, so I cannot make one for that category and set my home page to it.

    too weird. Any help appreciated…

    now, after doing that, can I LIMIT the posts returned to JUST those from category 1?

    Forum: Plugins
    In reply to: Customizable Post Listings

    I just decided to skip the whole plugin thing and use my own code for showing two different sets of content on the same page, limiting the number of posts for the second and displaying in a preferred order…

    the first loop:

    <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
    <?php if ( in_category('4') && is_home() ) continue; ?>

    <!–tags and arguments for how to format the content here for the homepage Page post–>

    <?php endwhile; ?>
    <?php else : ?>
    <?php endif; ?>

    <?php
    //now query to get recent posts from a category (news)

    query_posts(‘cat=94’);
    $posts = get_posts(‘category=94&numberposts=8&offset=0&order=DESC’);

    foreach ($posts as $post) : start_wp(); ?>

    <!–tags and arguments for displaying these links to posts–>

    <?php endforeach; ?>

    Actually, it's a tiny bit more than that, but I left out the html for each type of content... that is it, though...
    
    you can run the loop several times using this method, just include another line with the appropriate category number for each coming after the first loop, and use the second method block of code to query, start, & end the loop
    
    <?php if ( in_category('x') && is_home() ) continue; ?>

    —————

    I love plugins… it’s definitely one of the coolest features in WordPress. But it is infinitely annoying to become dependent on a particular plugin that becomes obsolete when the author doesn’t maintain it through WordPress evolutions. (not whining, though 😉

    I am happy to hear that this plugin might get some attention… it’s a good one.

    Forum: Plugins
    In reply to: Customizable Post Listings

    same problem… no posts appear. I’ve read the rather lengthy topic about categories/terms but I haven’t a clue where to start trying to fix this.

    Anyone in touch with scott reilly? I really love both cpl and his custom fields plugin…

    anyone have a good replacement for

    c2c_get_recent_posts ($num_posts = 8,
    $format = '<li style="padding:.5em;">%post_date%: %post_URL%</li>',
    $categories = '94',
    $orderby = 'date',
    $order = 'DESC',
    $offset = 0,
    $date_format = 'm/d/Y',
    $authors = '',
    $include_passworded_posts = false);

    I’m open to ideas and new plugins…

    thanks

    Forum: Plugins
    In reply to: Newsletter plugin

    sigh… yeah, I saw that the forums were gone and emailed Marcus… I finally got an email back saying I should send ONE email with a list of stuff (I’ve found a few bugs) which I did, but have not heard back as of yet… (2-3 days)

    While I am figuring it out on my own, I may, if I don’t hear from him, get my bank to reverse the charges for purchase, since there’s no support as claimed.

    I hope he’s just busy improving the plugin and will respond soon.

Viewing 15 replies - 241 through 255 (of 546 total)