• Resolved i420bdawg

    (@i420bdawg)


    I use google reader to combine multiple feeds and would like to include a “source_title” field that mentions the original source. While this works in custom templates i like the default way that Hungry feed displays the feeds.

    So all i want to do is add the source title below or next to the authors name.

    I dont mind using a custom template provided the defaule CSS for the layout is shared. I have looked through the HungryFEED files and cannot find the true default CSS/HTML so that i can add the field to the default configuration or copy the configuration to the custom template.

    https://www.ads-software.com/extend/plugins/hungryfeed/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter i420bdawg

    (@i420bdawg)

    discovered that by default custom templates used the h3 tag for the titles. I did not like this so I removed them and it restored the original look i was looking for. I would recommend setting default settings to not use the h3 tag as this can cause issues with custom WP templates. other than that, great product. My only recommendation would be a little easier customization of the layout for the feeds.

    Thread Starter i420bdawg

    (@i420bdawg)

    Here are the custom templates i am now using:

    <!--Combined Multi-Feed Layout -->
    <div class="hungryfeed_item">
    <b><a style="font-size:12pt" href="{{permalink}}">{{title}}</a><br/>
    <div>Posted: {{post_date}}</div>
    <div>Author: {{author}}</div>
    <div>Source: {{source_title}}</div></b>
    <br/>
    <div>{{description}}</div>
    <br/>
    </div>
    
    <!--Single Feed Layout with Author -->
    <div class="hungryfeed_item">
    <b><a style="font-size:12pt" href="{{permalink}}">{{title}}</a><br/>
    <div>Posted: {{post_date}}</div>
    <div>Author: {{author}}</div></b>
    <br/>
    <div>{{description}}</div>
    <br/>
    </div>
    
    <!--Single Feed Layout without Author -->
    <div class="hungryfeed_item">
    <b><a style="font-size:12pt" href="{{permalink}}">{{title}}</a><br/>
    <div>Posted: {{post_date}}</div></b>
    <br/>
    <div>{{description}}</div>
    <br/>
    </div>

    thanks for sharing your templates. yea, i need to make the custom template code and the “default” hungryfeed output consistent. better documentation is always on my todo list as well ??

    with the new “mustache” functionality in the templates you could actually do all 3 of those templates as a single custom template and then create parameters for yourself. there’s some examples here https://www.ads-software.com/support/topic/plugin-hungryfeed-code-injection

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: HungryFEED] feed source in default template not custom template’ is closed to new replies.