BTemplates Blog

Tutorials, documentation and news about Blogger.

Category: Widgets.

Add links to a pages based menu on Blogger

The pages widget on Blogger is very useful for use as menu, however, it has a weakness: you can’t add links directly from the panel, but this is possible from the code. Step by step: 1. Go to your template code (Desktop → Design → Edit HTML) and expand widget templates. 2. Search the pages […]

Show recent comments on Blogger

Thanks to a feed, it’s possible to add the recent comments to our blog in a very simple way. Just follow these steps: Go to your blog, and select the “Layout” tab. Choose the place where you wanna put the comments, and click “Add a Gadget”. Select the “Feed” element, and click “Add to blog”. […]

Moving widgets (gadgets) from an old template to a new one!

The most common problem at the time of uploading a new template is that we “lose our widgets”. Is there a way of installing a new template without having to get rid of our beloved widgets? The answer is yes, and yes, it’s simple :). 1. Go to Layout> Edit HTML and without checking the […]

QuickT :: How to show only labels with more than X posts!

1. Go to Layout> Edit HTML and do NOT check the “Expand widget templates” box: 2. Look for this line of code: <b:widget id=’Label1′ locked=’false’ title=’Labels’ type=’Label’/> 3. Replace it with the following code: <b:widget id=’Label1′ locked=’false’ title=’Labels’ type=’Label’> <b:includable id=’main’> <b:if cond=’data:title’> <h2><data:title/></h2> </b:if> <div class=’widget-content’> <ul> <b:loop values=’data:labels’ var=’label’> <b:if cond=’data:label.count &gt; 2′> […]