Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Tumblr Plugin
#11
macky Wrote:Hi, is it at all possible to move the post date below the post title?
You would have to change the simpletumblr.js code.

Move this section:
Code:
// Create a link to Tumblr post
                    postDate = document.createElement("div");
                    postDate.className = "tumblr_post_date";
                                    
                    postLink = document.createElement("a");
                    postLink.href = post.url;
                    postLink.innerHTML = (settings.shortPublishDate)? post["date"].replace(/(^\w{3},\s)|(:\d{2}$)/g, "") : post["date"];
                    postDate.appendChild(postLink);
                    
                    listItem.appendChild(postDate);

                    // Apply list item to list
                    list.appendChild(listItem);

to just after the line:
Code:
text = post["regular-body"] || post["photo-caption"] || post["quote-source"] || post["link-text"] || post["link-url"] || post["video-caption"] || "";

(and before the if statements).

It might also be possible with your CSS - as everything is in nested DIVs...

macky Wrote:Also how would I go around making the post title the link to the post rather than the date?

Thanks!

That's problematic, as not all post even have a title, so in many cases there would be nothing to make the link from. (every tumbler post will have a post date/time, that is why it is normally used as the link)

But you could modify the js file to change this as well.

-Rob A>
Reply


Messages In This Thread
Tumblr Plugin - by RobA - 2011-05-19, 05:22:34
RE: Tumblr Plugin - by scootball - 2013-06-06, 00:58:26
RE: Tumblr Plugin - by shawn_a - 2013-06-06, 01:30:50
RE: Tumblr Plugin - by Timbow - 2013-06-06, 01:31:36
RE: Tumblr Plugin - by scootball - 2013-06-07, 04:43:01
Tumblr Plugin - by RobA - 2011-05-20, 03:15:02
Tumblr Plugin - by samrocksc - 2011-05-20, 05:11:33
Tumblr Plugin - by RobA - 2011-05-20, 07:26:47
Tumblr Plugin - by samrocksc - 2011-05-21, 08:42:14
Tumblr Plugin - by samrocksc - 2011-05-21, 08:47:42
Tumblr Plugin - by RobA - 2011-05-22, 10:49:23
Tumblr Plugin - by samrocksc - 2011-05-26, 06:53:45
Tumblr Plugin - by datiswous - 2011-06-01, 09:26:27
Tumblr Plugin - by macky - 2011-06-11, 00:08:25
Tumblr Plugin - by RobA - 2011-06-11, 08:14:40
Tumblr Plugin - by Boz - 2011-12-07, 05:02:52
Tumblr Plugin - by RobA - 2011-12-08, 01:55:59
Tumblr Plugin - by lucamusolesi - 2012-03-18, 09:10:26
Tumblr Plugin - by RobA - 2012-03-19, 03:59:28



Users browsing this thread: 1 Guest(s)