I've been trying to figure this out for days, but basically, I'm trying to create it so that when I create a post on Tumblr, the title is clickable. At the moment, the only link is the tiny timestamp on the photo, and it's not obvious that some of my blog posts even exist.
I think this is the code I need to edit, but I can't work out exactly what I need to add:
<div class="inner">{block:Title}
<h4>{Title}</h4>{/block:Title}
I've tried adding: {Title} as suggested online, but that doesn't work at all. Can anyone help?
My website: http://wildwood-shore.tumblr.com
Related
the answer to this one will probably be obvious to many of you, but I recently decided to make a website for my girlfriend and expand my knowledge while doing that. So here is my dilemma:
I am using the Blossom Mommy Blog theme, which is a child of the Blossom Feminine theme.
Below a single post page, there is a previous post/ next post navigation menu and the "previous/next" text is in English and I want to change that to be in Bulgarian. I was able to see this in the browser debugger, but I can't seem to find where this comes from in the theme files themself, so any help would be really appreciated!
P.S. I even prepared a screenshot, but apparently I cannot attach files here...
P.P.S. Tried looking at the parent and child functions.php, also the templates, but could not find this HTML. Looks like some function is calling it, but I have no idea where to find this function.
With many thanks,
Dobri
Function: previous_posts_link();
Function: next_posts_link();
Use:
previous_posts_link( "Your label" );
More info:
https://codex.wordpress.org/Function_Reference/next_posts_link
https://codex.wordpress.org/Function_Reference/previous_posts_link
My blog
Recently i am getting no thumbnail in some of my blogger post which is shown in the home menu. I am using custom template. But i don't think the template has issues. Because i tried with some other custom templates. But the thing is its showing thumbnail correctly in stock template like flipcard, sidebar. Also it is showing correctly in mobile view. Even if i delete and repost the same post this problem occurs.
But if i try some random name for my post like "asdasdsawfe" the thumbnail sometimes works. Can anyone tell me what i am doing wrong.
Never mind just figured it out. My template didn't support special character. So the character (') was the reason for it.
6:23 AM (1 hour ago)
Hi, can anybody help to understand how to create Internal links (Anchor Links) in a post? I can't able to find any helpful answer. Feeling very frustrated.
I did exactly what a person said me on the Blogger product forum -
For anchor link:
You can create hyperlink in the HTML mode. Just insert the following code where you want to place an anchor. (you can change archorlinkname to whatever you like)
<a name="anchorlinkname"></a>
For the link within the same post that you want to jump to that anchor, please use this code. (you can also change the word in yellow)
Click here to go to anchorlinkname
But something weird is happening once I am updating my post or going from HTML mode to Compose mode.
Error -
<a href="https://www.blogger.com/blogger.g?blogID=48019486#overview">
I don't know why these https://blogger.com/blogger.g?blogID=48 and https://blogger.com/null gets added automatically. It redirecting me back to the admin post section or to blogger sign in section if I am not Signed In.
My Blog - www.lifewithdata.com
Found the answer here: https://productforums.google.com/forum/#!topic/blogger/5MU_HH5T7rA
you must add the address of the page or post.
only works in the non-dynamic templates.
Peace be upon those who follow guidance, I was able to make internal links within post on blogspot platform by using anchors like below:
sectionName
<a name="sectionName">sectionName</a>
I was using a theme based on Dynamic Views and worked for me, and changed it to other theme and the links still work.
I wanted to try out Linkwithin, a widget to show related posts underneath each post, to see how it looks like and stuff. On the Linkwithin website you can install the widget by clicking on a link which directed you to Blogger. I added the widget to my blog.
Now I would like to get rid of it, but on the Linkwithin website it's stated NOWHERE how to remove Linkwithin! So I tried deleting the widget but it wasn't showing up. So I went to the HTML source code and wanted to delete it straight from there, but I simply can't find it...
Does anyone know how to get rid of it, or can find it in the code?
Website is www.wldhrts.com
Many thanks!
You need to remove that widget from your blog. It's the first widget on your right sidebar (just above the search box).
Move to
Blogger >> template >> edit Template >>
Search for 'id='HTML2' it's the widget holding your linkwithin code. You should be able to find code like
<b:widget id='HTML2' locked='false' title='' type='HTML'>...</b:widget>
Remove the whole widget.
you can alternatively set nRelate on your Blog which is way better then LinkWithin.Here is the link of complete post explaining every process step by step. nRelate also offer you to earn some money by showing ads on your Blog or website.
http://sarcaassm.blogspot.com/2014/02/setup-nrelate-widget-to-your-blog.html
it is not always 'HTML2'. it depends upon where you have it. just try to reinstall it from linkwithin site, you will see codes, see what are they, note down on notepad and then search them in tempelate and remove. that will only work super fast. you may also like 'how to remove it only from blogger home'
I'm working on a custom responsive template for Blogger. Since Blogger doesn't have a "featured image" feature like Wordpress, is there a way that I can make the first image embedded in the post appear above the post-body and post-title? is there some kind of if/conditional statement that I can use?
Or, would it be best for me to HTML the post-title inside the post itself below the first embedded image? However, if I followed that method, how do I make the image within the post link to the post itself without editing it?
Thanks...
If you want to grab the first image, you can use make use of the template tag - <data:post.firstImageUrl/>
Below Example might help you out.
<b:if cond='data:post.firstImageUrl'>
<img expr:src ="data:post.firstImageUrl" expr:alt="data:post.title"/>
</b:if>
This will work only within the Blogger's Post Loop
Another way of using Featured images will be to use an image link in the enclosures and to edit your template to render enclosure links as featured thumbnails. My Blog post might help you with this (http://www.bloggerplugins.org/2011/09/post-thumbnails-for-blogger.html) . It hasn't been updated for over 2 years, but it might give you some guidance.