How to code "Category" for tumblr - tumblr

christinerenu.tumblr.com
I have managed to get a theme that allows for Categories.
I was wondering on how to tag/code my posts to display on each "Category" page.
eg: I was would like the coffee related images to display when I click on "Cafe"
Cheers

You simply need to change
christinerenu.tumblr.com/tagged/cafe/
to christinerenu.tumblr.com/tagged/coffee
You can do this by going to your blog's "customize" tab, and editing the HTML. Try searching the code by pressing Ctrl-F on your keyboard, this will allow you to search. Search for "cafe" until you find the link. Simply change "/tagged/cafe" with "/tagged/coffee"

Related

FB Instant Articles Comments, Like, Share

We are having difficulty getting the "Comment" and "Like" links to show up at the bottom our development instant articles. We have enabled the option "Show on articles" under feedback settings but it still won't work. The "Comment" and "Like" links do however show up for images.
We even tried to manually add the tag <meta property="fb:likes_and_comments" content="enable"> and that too didn't work.
Any thoughts on what could be happening?
Try
Click 'Publishing Tools' at the top of your Page.
Click 'Configuration' under 'Instant Articles' in the left
navigation bar
Scroll down to the 'Tools' panel, select 'Feedback Settings,' and set
your preferences on showing or not showing the feedback buttons.
referring to:https://developers.facebook.com/ia/blog/post/2016/06/28/update-to-like-comment-share

Firefox addon SDK - Sidebar or panel with embedded browser

I want to develop a firefox addon sdk to show a sidebar or a panel that contains an embedded browser with a navigation bar.
I have constraint too : Since the page shown in the embedded browser, I want to be able to inspect the dom, to hightlight some specific text and also to be able to select text from and send it to a specific input in sidebar with right menu.
Is there some examples or ideas how can I do this?
P.S : I'm sorry for my bad English ;)
Use sidebar module, create HTML file with a fixed textarea top:0, left:0, width: 100%. Create an iframe that takes up the rest of the sidebar. User enters text into the textarea, then listen for enter keystroke, use regex to see if it's a URL, and set iframe source to the URL if it's a URL or to a Google search if not.
Loading a whole browser into the sidebar seems like overkill, but if you really want to, try to load chrome://browser/content/browser.xul into the sidebar.

Is there a way to have the page tabs expand by default?

I am adding tabs to my page in fb. The problem is my customers do not notice that they need to click on the arrow icon to see all the tabs. Is there a way or setting that allows me to show all tabs on my page?
No, there is no way. Reorder your tabs so that the ones you really want your customer to see are displayed first. Another thing you can do is modify your cover photo in a way that indicates to your customers that there are cool tabs there. Facebook discourages using the cover photo for advertisements, so try to keep it classy.

facebook show recommend count on mouse over

I am using Addthis plugin. I have an "F" icon on the page. I want it to work as recommend functionality.
is there anyway to do following
if somebody click on F, it should work as recommend is clicked, and on move over this F, it should just show the Count of recommend
we do not want to show standard recommend box with count
Secondly question, when i click on any like button it also show another Share Popup, but even even if i cancel this popup, still my timeline show i have recommended that particular page.. then what is use of that popup.
You can use the Facebook Dialog JavaScript to show a Share dialog for a custom button. Or use the Send Dialog button to create a private share dialog.
The "Comment Box" on the Like Button is optional, it's not required. If you enter a comment, it adds it to the Like post that appears on your timeline. But you can still like a page without entering a comment. A Like with a comment appears more prominent on the user's timeline.

How to disable the text "Be the first of your friends to like this" beside a FB button

I want a simple Like button. How can I obtain that. I don't want any viewcount nor people displayed besides my like button.
Your best bet may be to use the Facebook like button code generator and:
Set the Layout Style to button_count
Uncheck the Send Button option
Uncheck the Show Faces option
Hope this helps!
Just change the attribute show-faces to false like this:
<fb:login-button show-faces="false"></fb:login-button>
Shorter answer: Use:
data-layout="button_count"
in your element. This will display '0' rather than the longer prompt. There is unfortunately no way to display nothing at beside the button, however you can use CSS/JS tricks to hide the count.
This could be as simple as:
$('div.fb-like').width(48).css({'overflow':'hidden'})
but see the question linked above for more detailed information.