Social Icons

Pages

Showing posts with label Gadget Problems. Show all posts
Showing posts with label Gadget Problems. Show all posts

Thursday, 14 November 2013

The TextList Gadget Now Lacks A URL Option

We're seeing a few reports, in Blogger Help Forum: Something Is Broken, about broken TextList gadgets.
I cannot add a URL, linking to the Title of my posts, using the "Configure TextList" wizard. The 'Add URL' option is missing from the "Configure TextList" wizard.
Similar to the shared design between the "HTML" and "Text" gadgets, it appears that the "LinkList" and "TextList" gadgets shared features.

Having fixed various Blogger accessory gadgets, it appears that Blogger Engineering has removed or updated some odd gadget features.

One previously discussed change, which received mixed reviews, was the positioning of new entries in the LinkList gadget. Now, we're seeing that the odd option, to add a URL to TextList entries, has been removed.

If your blog uses a TextList in the function of a LinkList, it's possible that you may be seeing this omission too. Barring the chance that Blogger Engineering can be persuaded to reverse their recent change, you may have to start a new LinkList gadget, and update your new gadget with the necessary URLs.

It appears that Blogger is redesigning some of their "multi personality" gadgets - and realigning or removing some options that may be redundant, given the context of the specific gadgets. If the gadget redesigns affect your blog, that may be a change to which you may have to adjust.

>> Top

Tuesday, 19 March 2013

Blogger Blogs Displaying Mysterious "SECURITY WARNING" Popup Boxes

This week, we're seeing a few concerned blog owners, in Blogger Help Forum: Something Is Broken, asking about a mysterious SECURITY WARNING popup box, on their blogs.

Like the earlier concern about the transparent boxes covering the blog, this appears to be another broken FaceBook Connect gadget.

The mysterious SECURITY WARNING isn't too hard to resolve.

Generally, the problem will start with a new FaceBook accessory, recently added.

<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/id_ID/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>

<div class="fb-like-box" data-href="http://www.facebook.com/xxxxxxx" data-width="265" data-show-faces="true" data-stream="true" data-header="true"></div>

If you can identify the problem gadget in your blog, you can edit the gadget, and Remove it. Some owners have installed the code in question, in a specific post.

As an alternate solution, you may add CSS which will hide the warning. Using the "Add CSS" wizard in the Template Designer Advanced menu, add the following code:
#fb_xdm_frame_http, #fb_xdm_frame_https
{
display:none !important;
}

As always, after you add or remove the code in question, and save the changes, you will need to clear browser cache and restart the browser, to accurately test success in resolving the problem.

>> Top