How do I disable number count on photos posted with star aurora theme?

1,469 views
Skip to first unread message

kate

unread,
Jul 23, 2012, 9:31:40 AM7/23/12
to tumblr...@googlegroups.com
Hi - I've got photos up on my site (which has star aurora theme) and they have numbers on the photos.
 
At first it was only when you hovered the cursor over a pic but now it seems to be that the photos just have a number on them permanently. Zero at the moment but I think its programmed to act as a counter for how many people view the pic?
 
Anyway, I want to disable and have no idea how! Any tips gratefully received! Kate

Sean Zhu

unread,
Jul 24, 2012, 2:08:09 AM7/24/12
to tumblr...@googlegroups.com
Can you give the link for your blog or for the theme?

kate

unread,
Jul 24, 2012, 11:24:48 AM7/24/12
to tumblr...@googlegroups.com
sure - my blog site is linked to www.kateadair.com
 
any ideas you have would be amazing

Sean Zhu

unread,
Jul 24, 2012, 12:10:55 PM7/24/12
to tumblr...@googlegroups.com
The number refers to the number of notes a post has. On Tumblr, a note refers to a social action, or as I'll try to explain it, "something someone has done with your post". Each time someone replies to your post, reblogs (shares on their own blog) your post, or likes your post or someone's reblog of your post, a note is added, and the note count goes up by 1.

The note count also appears on the dashboard (the page you see at www.tumblr.com), at the top-right corner. You can click the note count to see the actual notes (who has reblogged/liked/etc.).

Incidentally, you can also see the four buttons that Tumblr users can click to produce notes — reply (with text), reblog, reply with photo, and like. Note that not all social actions are available for all posts.
 
So, the reason your posts show a zero is simply because no one has reblogged, replied to, or liked your posts — yet.

I took a look at your theme. For this theme, you can hide the note count by putting the following in your Custom CSS. (Custom CSS is in Tumblr » your blog » Customize » Advanced.)
.photo_info {display: none}

kate

unread,
Jul 24, 2012, 2:13:38 PM7/24/12
to tumblr...@googlegroups.com
thanks so much Sean, that's all so helpful!
Message has been deleted
Message has been deleted

Sean Zhu

unread,
Aug 2, 2012, 5:53:11 AM8/2/12
to tumblr...@googlegroups.com, mlle....@gmail.com
Can you post a link to a page with the Install Theme button? It's easy to hide via CSS.

On Tuesday, July 31, 2012 9:09:35 PM UTC-7, _maf wrote:
Hi both, thanks, this is what I was looking for too! Now, is there any way to take off the large 'Install theme' block as well? No problem to give the creator a link but this is quite heavy.

M.

Sean Zhu

unread,
Aug 2, 2012, 5:57:41 AM8/2/12
to tumblr...@googlegroups.com, mlle....@gmail.com
A basic caption block looks like this:

{block:Photo}
{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
{/block:Photo}

You can try looking for {Caption} in your theme code. If it's not there, then the theme's author didn't put any code to display the captions. You can add it yourself by inserting the basic caption block I wrote above in any appropriate place within {block:Photo}…{/block:Photo}.

On Tuesday, July 31, 2012 9:22:08 PM UTC-7, mlle....@gmail.com wrote:
Also, and this might be complicated, but any caption/text information attached to a photo post doesn't appear anywhere. Even when you link through, on the solitary post page, it's always just the image. I am moving over from an other theme, and each of my photos has a caption... I would prefer not to totally lose this. Any ideas?

Thanks!
Message has been deleted

fashun...@gmail.com

unread,
Aug 3, 2012, 4:16:18 PM8/3/12
to tumblr...@googlegroups.com
Hello! I also use the star aurora theme and I have a question as well, for you Kate. How did you go about setting up your pages? The names of my pages are so close together at the moment and I like how yours are spaced evenly apart. 

Sean Zhu

unread,
Aug 4, 2012, 3:18:01 AM8/4/12
to tumblr...@googlegroups.com, fashun...@gmail.com
Hm, her blog looks like it doesn't have pages at all to me. Where are you seeing the names of pages?

Or perhaps she removed them recently?

Sean Zhu

unread,
Aug 4, 2012, 3:41:48 AM8/4/12
to tumblr...@googlegroups.com, fashun...@gmail.com
Sorry, I was looking at the wrong blog.

You can tweak the spacing of page links via CSS. The page links have class menu_item, so the CSS selector .menu_item will match each page link.  It looks like her blog is using:
.menu_item {margin: 0 15px;}
You can put that in your custom CSS box (Tumblr » your blog » Customize » Advanced) and play around with the value until you get something you like.

In CSS, margin: 0 15px is equivalent to:
margin-top: 0; margin-right: 15px; margin-bottom: 0; margin-left:15px

Also keep in mind that it might take a few minutes for Tumblr to update your blog's theme.

Sean Zhu

unread,
Aug 4, 2012, 3:56:15 AM8/4/12
to tumblr...@googlegroups.com, mlle....@gmail.com
It's a good start! In fact, you can actually see the caption on the permalink page now!

The problem is that your theme never links to permalink pages: when I click an image, I get to /image/145783202 instead of /post/145783202.

I've added newlines and tabs to the part of your theme code in question:
{block:Photo}
<div class="photo">
<div class="photo_info">
<h2><a href="{Permalink}">{NoteCount}</a></h2>
</div>
{LinkOpenTag}
<img src="
{block:IndexPage}{PhotoURL-250}{/block:IndexPage}
{block:PermalinkPage}{PhotoURL-500}{/block:PermalinkPage}
" alt="{PhotoAlt}" class="main_photo" />
{LinkCloseTag}
</div>
{block:PermalinkPage}
{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
{/block:PermalinkPage}
{/block:Photo}

On your blog, for the first post, this renders as:
<div class="photo">
<div class="photo_info">
</div>
<img src="http://24.media.tumblr.com/BxhsUtOsIq5lsbvfRHJfTUKco1_250.jpg" alt="PIRAMIDE DEL SOL, TEOTIHUACAN, MEXICO, JUNE 2009." class="main_photo">
</a>
</div>

I've highlighted the part in interest. It looks like {LinkOpenTag} is generating the /image/145783202 link, but {Permalink}, however, produces the link you want. (I marked some of the code in red because that's the note count stuff you've hidden via the custom CSS stuff described earlier in this thread. If you were to unhide it, you would notice that if you click the big 0, you'd get to the permalink page, which does have the caption.)

How to fix: If you want clicking an image to always take the user to the permalink page (which has captions), replace {LinkOpenTag} with <a href="{Permalink}"> and {LinkCloseTag} with </a>.

Hope that made sense and works!

On Thursday, August 2, 2012 5:18:27 AM UTC-7, Michelle Arevalos Franco wrote:
Thanks for getting back to me Sean.

I put the line you sent in this area:

<div class="posts">   
        {block:Posts}
        <div class="post {block:IfInfiniteScroll}load{/block:IfInfiniteScroll}" id="post_{PostID}">{block:Text}{block:Title}<h2>{Title}</h2>{/block:Title}{Body}{block:More}<h3><a href="{Permalink}">{lang:Read more}</a></h3>{/block:More}{/block:Text}{block:Answer}<p><strong>{lang:Asker asked}: {Question}</strong></p><p>{Answer}</p>{/block:Answer}{block:Chat}{block:Title}<h2>{Title}</h2>{/block:Title}<div class="lines">{block:Lines}<div class="line {Alt}">{block:Label}{Label}{/block:Label} <em>{Line}</em></div>{/block:Lines}</div>{/block:Chat}{block:Quote}<h2>"{Quote}"</h2>{block:Source}<p>- {Source}</p>{/block:Source}{/block:Quote}{block:Link}<h2><a href="{URL}" {Target}>{Name}</a></h2>{block:Description}{Description}{/block:Description}{/block:Link}{block:Photo}<div class="photo"><div class="photo_info"><h2><a href="{Permalink}">{NoteCount}</a></h2></div>{LinkOpenTag}<img src="{block:IndexPage}{PhotoURL-250}{/block:IndexPage}{block:PermalinkPage}{PhotoURL-500}{/block:PermalinkPage}" alt="{PhotoAlt}" class="main_photo" />{LinkCloseTag}</div>{block:PermalinkPage}{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}{/block:PermalinkPage}{/block:Photo}{block:Photoset}{block:IndexPage}{Photoset-250}{/block:IndexPage}{block:PermalinkPage}{Photoset-500}{/block:PermalinkPage}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}{block:Video}{block:IndexPage}{Video-250}{/block:IndexPage}{block:PermalinkPage}{Video-500}{/block:PermalinkPage}{block:Caption}{Caption}{/block:Caption}{/block:Video}{block:Audio}{block:AlbumArt}<a href="{Permalink}"><img src="{AlbumArtURL}" class="main_photo" /></a>{/block:AlbumArt}<div class="player">{AudioPlayerWhite}</div>{block:Caption}{Caption}{/block:Caption}{/block:Audio}
       

But that didn't make the captions appear. The captions are all already added into the tumblr post (see attached), so don't know if this makes a difference?

Here's the link to the page: http://onahidingtonothing.tumblr.com/

And the theme is called 'Star Aurora'.

Thank you!!
M.

On Thursday, August 2, 2012 5:18:27 AM UTC-7, Michelle Arevalos Franco wrote:
Thanks for getting back to me Sean.

I put the line you sent in this area:

<div class="posts">   
        {block:Posts}
        <div class="post {block:IfInfiniteScroll}load{/block:IfInfiniteScroll}" id="post_{PostID}">{block:Text}{block:Title}<h2>{Title}</h2>{/block:Title}{Body}{block:More}<h3><a href="{Permalink}">{lang:Read more}</a></h3>{/block:More}{/block:Text}{block:Answer}<p><strong>{lang:Asker asked}: {Question}</strong></p><p>{Answer}</p>{/block:Answer}{block:Chat}{block:Title}<h2>{Title}</h2>{/block:Title}<div class="lines">{block:Lines}<div class="line {Alt}">{block:Label}{Label}{/block:Label} <em>{Line}</em></div>{/block:Lines}</div>{/block:Chat}{block:Quote}<h2>"{Quote}"</h2>{block:Source}<p>- {Source}</p>{/block:Source}{/block:Quote}{block:Link}<h2><a href="{URL}" {Target}>{Name}</a></h2>{block:Description}{Description}{/block:Description}{/block:Link}{block:Photo}<div class="photo"><div class="photo_info"><h2><a href="{Permalink}">{NoteCount}</a></h2></div>{LinkOpenTag}<img src="{block:IndexPage}{PhotoURL-250}{/block:IndexPage}{block:PermalinkPage}{PhotoURL-500}{/block:PermalinkPage}" alt="{PhotoAlt}" class="main_photo" />{LinkCloseTag}</div>{block:PermalinkPage}{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}{/block:PermalinkPage}{/block:Photo}{block:Photoset}{block:IndexPage}{Photoset-250}{/block:IndexPage}{block:PermalinkPage}{Photoset-500}{/block:PermalinkPage}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}{block:Video}{block:IndexPage}{Video-250}{/block:IndexPage}{block:PermalinkPage}{Video-500}{/block:PermalinkPage}{block:Caption}{Caption}{/block:Caption}{/block:Video}{block:Audio}{block:AlbumArt}<a href="{Permalink}"><img src="{AlbumArtURL}" class="main_photo" /></a>{/block:AlbumArt}<div class="player">{AudioPlayerWhite}</div>{block:Caption}{Caption}{/block:Caption}{/block:Audio}
       

But that didn't make the captions appear. The captions are all already added into the tumblr post (see attached), so don't know if this makes a difference?

Here's the link to the page: http://onahidingtonothing.tumblr.com/

And the theme is called 'Star Aurora'.

Thank you!!
M.

On Thursday, August 2, 2012 5:18:27 AM UTC-7, Michelle Arevalos Franco wrote:
Thanks for getting back to me Sean.

I put the line you sent in this area:

<div class="posts">   
        {block:Posts}
        <div class="post {block:IfInfiniteScroll}load{/block:IfInfiniteScroll}" id="post_{PostID}">{block:Text}{block:Title}<h2>{Title}</h2>{/block:Title}{Body}{block:More}<h3><a href="{Permalink}">{lang:Read more}</a></h3>{/block:More}{/block:Text}{block:Answer}<p><strong>{lang:Asker asked}: {Question}</strong></p><p>{Answer}</p>{/block:Answer}{block:Chat}{block:Title}<h2>{Title}</h2>{/block:Title}<div class="lines">{block:Lines}<div class="line {Alt}">{block:Label}{Label}{/block:Label} <em>{Line}</em></div>{/block:Lines}</div>{/block:Chat}{block:Quote}<h2>"{Quote}"</h2>{block:Source}<p>- {Source}</p>{/block:Source}{/block:Quote}{block:Link}<h2><a href="{URL}" {Target}>{Name}</a></h2>{block:Description}{Description}{/block:Description}{/block:Link}{block:Photo}<div class="photo"><div class="photo_info"><h2><a href="{Permalink}">{NoteCount}</a></h2></div>{LinkOpenTag}<img src="{block:IndexPage}{PhotoURL-250}{/block:IndexPage}{block:PermalinkPage}{PhotoURL-500}{/block:PermalinkPage}" alt="{PhotoAlt}" class="main_photo" />{LinkCloseTag}</div>{block:PermalinkPage}{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}{/block:PermalinkPage}{/block:Photo}{block:Photoset}{block:IndexPage}{Photoset-250}{/block:IndexPage}{block:PermalinkPage}{Photoset-500}{/block:PermalinkPage}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}{block:Video}{block:IndexPage}{Video-250}{/block:IndexPage}{block:PermalinkPage}{Video-500}{/block:PermalinkPage}{block:Caption}{Caption}{/block:Caption}{/block:Video}{block:Audio}{block:AlbumArt}<a href="{Permalink}"><img src="{AlbumArtURL}" class="main_photo" /></a>{/block:AlbumArt}<div class="player">{AudioPlayerWhite}</div>{block:Caption}{Caption}{/block:Caption}{/block:Audio}
       

But that didn't make the captions appear. The captions are all already added into the tumblr post (see attached), so don't know if this makes a difference?

Here's the link to the page: http://onahidingtonothing.tumblr.com/

And the theme is called 'Star Aurora'.

Thank you!!
M.
Message has been deleted
Message has been deleted
Message has been deleted

vlr...@gmail.com

unread,
Sep 12, 2012, 5:52:36 AM9/12/12
to tumblr...@googlegroups.com
Hello. Could You help me remove "Install theme" button from this theme Star Aurora. I tried many codes, but all unsuccessfully. Here is demo http://starauroratheme.tumblr.com

Message has been deleted

vlr...@gmail.com

unread,
Sep 15, 2012, 5:43:44 AM9/15/12
to tumblr...@googlegroups.com, vlr...@gmail.com
Please help me change fixed size of main image in article to real size, I have size 600px of image height.
Reply all
Reply to author
Forward
Message has been deleted
0 new messages