Showing posts with label posts. Show all posts
Showing posts with label posts. Show all posts
Wednesday, February 15, 2017
How to automatically share your blog posts to Facebook group when published
How to automatically share your blog posts to Facebook group when published
A lot of bloggers are using Facebook groups to drive massive traffic to their blogs. They create Facebook groups, add thousands of members, then auto post to the Facebook groups from their blogs.
Read more »Read More
Available link for download
Sunday, February 12, 2017
How to add Random posts widget for Blogger with image thumbnails and excerpt
How to add Random posts widget for Blogger with image thumbnails and excerpt
Some blog visitors find it difficult to locate there favourite post, due to alot of post in the blog, sometimes they do end up not getting what they want.
Here is a widget code that will help your blog reader get the best out of your blog.
With the help of the random post display widget your visitors can easily find the post of there choice.
How to add a random post widget that displays list of posts in a random order with thumbnails and snippet
The image below is how you home page will look like.

1. Login to your blog dashboard. Locate the layOut option and click on it.
2. Click on Add Widget, from the popup window click on HTML/Javascript. See image below.

3. Copy the below code and paste it inside the triangular box you see.
To edit the code to your choice, change the value in thick black colour according to the instructions below.
Adjust the thumbnail dimension by changing the value "75"
Control the the length of the summary (in characters) by changing the110value from var random posts_chars=110;-
Hide the post date and comment count change yes from var random posts_details=yes;to no;- Font Size for
Posts Titles and Summary:to modify the font size for the post snippet modify the 11px value and for the posts title, the 12px value;
How helpful is this post, if it helped you let me know, if you are finding any thing difficult ask question and I will answer you.
Here is a widget code that will help your blog reader get the best out of your blog.
With the help of the random post display widget your visitors can easily find the post of there choice.
How to add a random post widget that displays list of posts in a random order with thumbnails and snippet
The image below is how you home page will look like.

1. Login to your blog dashboard. Locate the layOut option and click on it.
2. Click on Add Widget, from the popup window click on HTML/Javascript. See image below.

3. Copy the below code and paste it inside the triangular box you see.
<style>#random-posts img {border-radius: 10px;float: left;margin-right: 5px;width:75px;height:75px;background-color: #F5F5F5;padding: 3px;transition: all 0.2s linear 0s;}#random-posts img:hover {opacity: 0.6;}ul#random-posts {list-style-type: none;padding: 0px;}#random-posts a {font-size:12px;text-transform: uppercase;padding: 0px auto 5px;}#random-posts a:hover {text-decoration: none;}.random-summary {font-size:11px;background: none;padding: 5px;margin-right: 8px;}#random-posts li {margin-bottom: 10px;border-bottom: 1px solid #EEEEEE;padding: 4px;}</style><ul id=random-posts><script type=text/javaScript>var randomposts_number =5;var randomposts_chars =110;var randomposts_details = yes;var randomposts_comments = Comments;var randomposts_commentsd = Comments Disabled;var randomposts_current = [];var total_randomposts = 0;var randomposts_current = new Array(randomposts_number);function randomposts(json) {total_randomposts = json.feed.openSearch$totalResults.$t}document.write(<script type="text/javascript" src="/feeds/posts/default?alt=json-in-script&max-results=0&callback=randomposts"></script>);function getvalue() {for (var i = 0; i < randomposts_number; i++) {var found = false;var rndValue = get_random();for (var j = 0; j < randomposts_current.length; j++) {if (randomposts_current[j] == rndValue) {found = true;break}};if (found) {i--} else {randomposts_current[i] = rndValue}}};function get_random() {var ranNum = 1 + Math.round(Math.random()* (total_randomposts - 1));return ranNum};</script><script type=text/javaScript>function random_posts(json) {for (var i = 0; i < randomposts_number; i++) {var entry = json.feed.entry[i];var randompoststitle = entry.title.$t;if (content in entry) {var randompostsnippet = entry.content.$t} else {if (summary in entry) {var randompostsnippet = entry.summary.$t} else {var randompostsnippet = "";}};randompostsnippet = randompostsnippet.replace(/<[^>]*>/g, "");if (randompostsnippet.length < randomposts_chars) {var randomposts_snippet = randompostsnippet} else {randompostsnippet = randompostsnippet.substring(0, randomposts_chars);var whitespace = randompostsnippet.lastIndexOf(" ");randomposts_snippet = randompostsnippet.substring(0, whitespace) +"…";};for (var j = 0; j < entry.link.length; j++) {if (thr$total in entry) {var randomposts_commentsnum = entry.thr$total.$t + + randomposts_comments} else {randomposts_commentsnum = randomposts_commentsd}; if (entry.link[j].rel == alternate) {var randompostsurl = entry.link[j].href;var randomposts_date = entry.published.$t;if (media$thumbnail in entry) {var randompoststhumb = entry.media$thumbnail.url} else {randompoststhumb = "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjehlRViebS0PU9nYMhRBIJx9soL6dfxcyFH0wFC7R1vxjF20Drh999cL7Q1XHo2ZJu4B6wpA7PCkewOHEIRYvikwdN_Te6IPWVr5xy8gUH2TXe7GUhqiybytiLHBBisicBPiUSV8QMyZU/s1600/no_thumb.png"}}};document.write(<li>);document.write(<a href=" + randompostsurl + " rel="nofollow"><img alt=" + randompoststitle + " src=" + randompoststhumb + "/></a>);document.write(<div><a href=" + randompostsurl + " rel="nofollow"> + randompoststitle + </a></div>);if (randomposts_details == yes) {document.write(<span><div  class="random-info"> + randomposts_date.substring(8, 10) + . + randomposts_date.substring(5, 7) + . + randomposts_date.substring(0, 4) + - + randomposts_commentsnum) + </div></span>};document.write(<br/><div class="random-summary"> + randomposts_snippet + </div><div style="clear:both"></div></li>)}};getvalue();for (var i = 0; i < randomposts_number; i++) {document.write(<script type="text/javascript" src="/feeds/posts/default?alt=json-in-script&start-index= + randomposts_current[i]+ &max-results=1&callback=random_posts"></script>)};</script></ul>
To edit the code to your choice, change the value in thick black colour according to the instructions below.
Adjust the thumbnail dimension by changing the value "75"
Control the the length of the summary (in characters) by changing the110value from var random posts_chars=110;-
Hide the post date and comment count change yes from var random posts_details=yes;to no;- Font Size for
Posts Titles and Summary:to modify the font size for the post snippet modify the 11px value and for the posts title, the 12px value;
How helpful is this post, if it helped you let me know, if you are finding any thing difficult ask question and I will answer you.
posted from Bloggeroid
Available link for download
Friday, February 10, 2017
Suspected phone thief mistakenly posts selfie on victim’s Instagram
Suspected phone thief mistakenly posts selfie on victim’s Instagram

The Lagos State Police Command is on the trail of a suspected burglar who allegedly posted his picture on the Instagram account of his victim. The suspect, whose name had yet to be identified, mistakenly posted the picture with one of the phones reportedly stolen from the victim, Sam Abimbola.
According to PUNCH Metro ,the suspect had sneaked into the victims residence on Ago Palace Way, Okota, Lagos, at about 3am on Tuesday, carting away phones, a laptop and a passport. The burglar was said to have gained entry into the apartment through the kitchen.
He also reportedly made away with Abimbolas wifes jewellery and the identity card of his sister-in-law, who lived with the family. While lamenting the loss, Abimbola reportedly got a call at about 7am from a friend, who alerted him to a picture posted with one of the stolen phones on his (Abimbolas) Instagram page. Abimbola told our correspondent that he had woken up around 5am to prepare for work when he discovered the house had been burgled. He said,
According to PUNCH Metro ,the suspect had sneaked into the victims residence on Ago Palace Way, Okota, Lagos, at about 3am on Tuesday, carting away phones, a laptop and a passport. The burglar was said to have gained entry into the apartment through the kitchen.
He also reportedly made away with Abimbolas wifes jewellery and the identity card of his sister-in-law, who lived with the family. While lamenting the loss, Abimbola reportedly got a call at about 7am from a friend, who alerted him to a picture posted with one of the stolen phones on his (Abimbolas) Instagram page. Abimbola told our correspondent that he had woken up around 5am to prepare for work when he discovered the house had been burgled. He said,
I slept around 2am on that day and my sister-in-law woke me up around 5am, saying that her bag was scattered in the living room. That was when I discovered that a burglar had entered into my apartment. He cut through the window and got access into the house through the kitchen. He entered into my bedroom, stole my passport, laptop, two phones a Samsung Note 5 and a Samsung tablet my sister-in-laws ID card and her money. The burglar also stole my wifes accessories and took some bottles of water from the fridge.
I dont know the extent of what was stolen from my wifes valuables because she was not around. He ransacked a bag where my credentials were but fortunately, he didnt go with them. Around 7am, he mistakenly posted his picture on my Instagram account with my phone. I am sure he must have used the phone to take the picture. I have reported to the police at the Ago Palace division and some of the policemen said he was a known face at a joint in the area.The sister-in-law, who did not want her name in print, urged the police to track down the suspect and bring him to book.
I am certain he was the one who attacked our house. He could not have sold the phone to somebody before 7am when he posted the picture, she added.The Lagos State Police Public Relations Officer, Dolapo Badmos, who confirmed the burglary to our correspondent, said the police were on the trail of the suspect. Badmos, a Superintendent of Police, added that the Commissioner of Police, Fatai Owoseni, had instructed the division to transfer the case to the Special Anti-Robbery Squad at the command headquarters in Ikeja.
She said, The victim reported the matter at the station and the police will ensure that the suspect is tracked down. The CP has instructed that the case should be transferred to SARS in Ikeja for discreet investigation.
posted by ConnectMe
Source: LivingIntunes
Available link for download
Sunday, January 22, 2017
How to Add related posts widget to your blog and increase your blog view
How to Add related posts widget to your blog and increase your blog view
Most readers of your blog will spend more time on your blog after reading a post, if they see more related posts. If you want to increase the page views of your blog, then you have to be showing related posts
Read more »Read More
Available link for download
Subscribe to:
Posts (Atom)