Can I add a share button to a individual media items within in Tumbr text post? - tumblr

I would very much like to add a share button to an individual image that is part of A text post with multiple media items.
I would like to learn where to put the code or if there's a theme that has this function.

Related

Flutter tagging and filtering the data based on tags selected(Multi selection of Tag is possible)

I'm trying to create a new page in which people can view all the people which are providing the services on my platform but can be filtered by using tagging
The filter should happen in such a a way that people who are providing most of the services which are tagged should be on top and based on the number of tags hit the order of people will be maintained most tag hit on top and least tag hit to be on the below side of the search result
For this purpose i'm trying to use "https://pub.dev/packages/flutter_tagging/example" which is a library which helps with flutter tagging
but now i want to add this tag filter to filter my grid based on the tags selected
so basically a search button on top using which the tags can be added
a button to switch the grid to list (i have the code for both grid and list but they ar enot related to my data at the moment)
and finally the tag to filter the data
Step 1:- Once the user clicks on View ALl the user is redirected to next screen
Step 2:- Currently the second screen is just a grid however i want it to have the flutter tagging to filter all people and also a button to change from grid to list
I'm new to flutter so any guide reference will be great
for any question please feel free to ask

How to put gesture detector at specific points on the photo?

I will make an application with Flutter. I want to show different pop-ups when I click on certain parts of a photo that I imported from outside in the application.
For example, get a photo like this.
enter image description here
When I click on the fields I have determined in this photo, I want to give a pop-up according to the field and give information.
one more example.
I want to show what the button does by opening a pop-up when you put this png into practice and click on the fields I specified.
Do you have any suggestions for a resource or library that I can mark on the photo or help me?[!

OpenGraph publish action display

I am writing here to ask you for some help. I;m trying to publish action "vote" which is connected with built-in object "movie". I can post that action with image, but message is displayed above that image (thumbnail).
I've tried to add some custom properties/field such as "viewers" (Integer), but it didn't succeded. It is not displayed in my timeline.
I want to post thumbnail on the left, and on the right: name of movie and my custom fields or plain text (Side by side). Please help me achieve that effect.
I also noticed that published action is displayed in Activity Feed instead of News Feed or Timeline (profile).
In your app's Open Graph settings, define Captions for the vote action.
https://developers.facebook.com/docs/opengraph/define-actions/

Wordpress - Show Portfolio Categories

I'm working with a WordPress website and a client wants to show a list of categories in the footer. Unfortunately, it is showing as empty because he has no posts and has set the categories to portfolio items which he wants people to be able to click to.
So, how do I show the portfolio categories in the widget rather than the post categories?
Thanks,
Jack
Probably the easiest way I can think of to get the result that you want without having to resort to changing any Theme Files would be this:
Log into your Wordpress Dashboard
Navigate to Appearance->Menus
Create a new Menu, and (if applicable) enable the Custom Taxonomies for your menu by clicking on Screen Options (top right-hand corner of the page) and ticking your Portfolio's Custom Categories and/or Custom Post Types
Once all of the items you want is in your Custom Menu, save it.
Navigate to Appearance->Widgets
Add the Custom Menu Widget to the sidebar in which you would like your items to appear
Select the Custom Menu you just created, and Save
When dealing with Premium Themes, it would always be safest to stay out of their code and avoid changing anything altogether, so try this approach first. Otherwise, you may have to get your hands dirty and alter some code or contact the Theme Developer.

Make clickable text to another UIViewController

I have a block of text shown like:
What I am trying to accomplish is that when I add the test to this table view cell, I want to make a specific word or group of words clickable. Lets take the group of words Grand Turk Lighthouse for example. Is there a way to add a href to the word that when I click it, it will send me to say View2 which is in the app. I am building an app that will not go to the internet and so I want a way for the link to be clickable to send to another page within the app. Thanks for any help provided.
I can't give you specific answer, but you may try this :
https://github.com/AliSoftware/OHAttributedLabel
it also could give different style, color, and href in one label.
another alternative, is to use UIWebView, and listen / delegate to it. load html within the app.
hope it helps.