Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)
  • mattrogers123

    (@mattrogers123)

    I recommend using Blubrry PowerPress Podcasting plugin it works rather well and I never had a problem with submitting my rss feed to iTunes

    mattrogers123

    (@mattrogers123)

    looks for something in the css that is like this,

    p  {
    
       something: something;
       something: something;
       font-weight: bold;
    
    }

    change bold to normal or delete the whole line, If it is effecting the whole page then you can add this to the body tag in css,

    body  {
    
       font-weight: normal;
    
    }

    However its hard to tell what the problem is, if you post a link to your website I can have a closer look at the code and tell you where it is.

    mattrogers123

    (@mattrogers123)

    you can do it using javascript however that would be a lot of effort to go to for such a minor thing.

    The reason that you can not give a target like “_blank” in css is due to the fact that people don’t like links opening in new pages. In most cases if they want to open it in another tab or window they will do.

    Thread Starter mattrogers123

    (@mattrogers123)

    thanks thats what i had in mind. I will be updating it aswell with other features as I develop it further

    Forum: Fixing WordPress
    In reply to: RSS Widget
    mattrogers123

    (@mattrogers123)

    this may be of help you could add this into the text widget, have a look at this article for more details.

    <?php
    include_once(ABSPATH.WPINC.'/rss.php'); // path to include script
    $feed = fetch_rss('http://domain.com/feed'); // specify feed url
    $items = array_slice($feed->items, 0, 10); // specify first and last item
    ?>
    
    <?php if (!empty($items)) : ?>
    <?php foreach ($items as $item) : ?>
    
    <h2><a href="<?php echo $item['link']; ?>"><?php echo $item['title']; ?></a></h2>
    <p><?php echo $item['description']; ?></p>
    
    <?php endforeach; ?>
    <?php endif; ?>
    Forum: Fixing WordPress
    In reply to: RSS Widget
    mattrogers123

    (@mattrogers123)

    So you want to list 10 items from 20 – 30 website RSS feeds?

    Forum: Your WordPress
    In reply to: Help Me Out?
    mattrogers123

    (@mattrogers123)

    it depends if they are widgets or if they are in sidebar.php

    if they are in widgets then go to appearance > widgets and they should all be visible on the right hand of the screen all you have to do then is edit the titles.

    If they are in the sidebar.php, then go to appearance > editor.php and then look for the file that is called sidebar.php from there of course if you are familiar with html you could be able to find the titles and change them.

    mattrogers123

    (@mattrogers123)

    I think you have worded this question wrong. The sub-category ‘dog’ should only list the posts that are in it. Where as the parent category should list ‘animal’ which of course includes ‘dog’.

    if the sub-category ‘dog’ was to list all the posts made under ‘animal’ it would make the whole point of the sub-category pointless.

    mattrogers123

    (@mattrogers123)

    can you post a link to your site?

Viewing 9 replies - 1 through 9 (of 9 total)