Would you like to know how to put a widget of your *Steemit* profile on your website or *WordPress* blog because this might be a good way to link both sites and show your audience that you are on *Steemit?*  I am very excited to show you this website that I have just found because I had been looking for something like this for quite a long time. I wanted to display a profile widget on my *WordPress* blogs and this is now made possible and it's easy to implement. ## **How to Add a Steemit Profile Widget on your Website?** The website where you can get the code from is [*Steemit Widgets*](https://mktcode.github.io/steemit-widgets/index.html) and it looks like this. It was created by *[@mkt](https://steemit.com/@mkt).*  You can click the *"Demo"* button if you wish to see all kinds of widgets that you can have on your website, or click the *"Generator"* button to follow this tutorial. This is a direct link to the generator: *https://mktcode.github.io/steemit-widgets/generator.html*  What you have to do is select *"Profile"* for the widget, enter your *Steemit* username, change the color if you don't like the default one. Then you can unselect the options that you don't want. Just below the form is a preview where every data about your profile is showing, even the *Voting Power.*  Then, you have the code you need to use to show the widget on your site. The first little piece of code has to be placed where you want to show the widget. ``` <div id="steemit-widgets-profile"></div> ``` The second longer code is what is calling the data from *Steemit* and the cosmetic of the widget. It has to be placed just before the `</body>` tag on the *HTML* page where you have the widget.  If you have a regular website in *HTML,* it is easy to do, and you may ask your web developer to just add the code for you. In *WordPress*, you will need a plugin like this *"Head & Footer"* to add the code in the footer of your blog on posts and pages.  You may also have a place on the post editor where you can put that code. Then, in the post, use the *"Text"* window and put the code where you want the widget to be.  This is how it looks like on my blog here: *http://www.michelgerardonline.com*  You can also display the *Steemit* widget in one of your *WordPress* widgets. I chose to have it in the footer, and you just have to put the same code. ``` <div id="steemit-widgets-profile"></div> ``` I use an *"Enhanced Text"* widget in *WordPress* so I can use code in it.  This is what it looks like in the footer together with other widgets.  One issue I have had is that apparently you can only display the widget once on any page or post on a *WordPress* blog, but there is a solution to this that the developer gave me in the comments. Here it is. I put this code on the page itself as explained earlier. ``` <div id="steemit-widgets-profile"></div> ``` Then, I put this code with a different id in the *WordPress* footer widget. ``` <div id="steemit-widgets-profile2"></div> ``` Finally, the code that goes before the `</body>` tag in the *"Head & Footer"* *WordPress* plugin. 1st part. ``` <script src="https://cdn.steemjs.com/lib/latest/steem.min.js"></script> <script src="https://mktcode.github.io/steemit-widgets/assets/js/steemit-widgets.min.js"></script> ``` 2nd part. ``` <script> steemitWidgets.profile({ element: 'steemit-widgets-profile', template: '<div style="border: 5px solid rgb(0, 168, 230); border-radius: 5px; font-family: Arial, Helvetica, sans-serif;"><div style="background-image: url(\'${COVERIMAGE}\'); background-position: center center; background-size: cover; background-color: rgb(0, 168, 230); display: flex; border-top-right-radius: 0px; border-top-left-radius: 0px;"><div style="background: url(\'${IMAGE}\') center center / cover; width: 50px; height: 50px; border-radius: 36px; margin: 10px;"></div> <div style="flex: 1 1 0%; margin: 10px; line-height: 18px; text-align: left;"><a href="https://steemit.com/@${USER}" style="color: rgb(255, 255, 255); text-decoration: none;">@${USER}</a> <span style="background: rgb(0, 168, 230); border-radius: 10px; color: rgb(255, 255, 255); font-size: 11px; padding: 2px 5px; font-weight: bold; border: 1px solid rgba(255, 255, 255, 0.5);">${REPUTATION}</span><br> <a href="${WEBSITE}" style="color: rgb(255, 255, 255); font-size: 12px; text-decoration: none;">${WEBSITE}</a><br> <span style="color: rgb(255, 255, 255); font-size: 12px;">${ABOUT}</span></div></div> <div style="color: rgb(120, 120, 120); background: rgb(255, 255, 255);"><div style="display: table; table-layout: fixed; width: 100%; text-align: center; font-size: 18px; line-height: 21px; padding: 10px 0px 5px;"><div style="display: table-cell;"><b>${POSTCOUNT}</b><br><sup>Posts</sup></div> <div style="display: table-cell;"><b>${FOLLOWERS}</b><br><sup>Followers</sup></div> <div style="display: table-cell;"><b>${FOLLOWING}</b><br><sup>Following</sup></div></div> <div style="display: table; table-layout: fixed; width: 100%; text-align: center; font-size: 12px; border-top: 1px solid rgb(221, 221, 221); padding: 5px 0px;"><div style="display: table-cell;"><span style="width: 15px; height: 15px; display: inline-block; vertical-align: top; margin-right: 3px;"><svg fill="#888888" version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 129 129" xmlns:xlink="http://www.w3.org/1999/xlink" enable-background="new 0 0 129 129"><g><g><path d="M50.2,39.9c-2.3,0-4.1,1.8-4.1,4.1v41.5c0,2.3,1.8,4.1,4.1,4.1c2.3,0,4.1-1.8,4.1-4.1V44C54.3,41.7,52.4,39.9,50.2,39.9z"></path><path d="m30.4,39.9c-2.3,0-4.1,1.8-4.1,4.1v41.5c0,2.3 1.8,4.1 4.1,4.1s4.1-1.8 4.1-4.1v-41.5c0-2.3-1.9-4.1-4.1-4.1z"></path><path d="m10.5,105h86.7c2.3,0 4.1-1.8 4.1-4.1v-17.4h17.2c2.3,0 4.1-1.8 4.1-4.1v-30c0-2.3-1.8-4.1-4.1-4.1h-17.2v-17.2c0-2.3-1.8-4.1-4.1-4.1h-86.7c-2.3,0-4.1,1.8-4.1,4.1v72.8c0,2.2 1.9,4.1 4.1,4.1zm90.8-51.5h13.1v21.9h-13.1v-21.9zm-86.7-21.3h78.5v17.2 30 17.4h-78.5v-64.6z"></path></g></g></svg></span>Voting Power: ${VOTINGPOWER} %</div> <div style="display: table-cell;"><span style="width: 15px; height: 15px; display: inline-block; vertical-align: top;"><svg fill="#888888" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0z" fill="none"></path><path d="M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7z"></path></svg></span> Joined: ${CREATED}</div> <div style="display: table-cell;"><span style="width: 15px; height: 15px; display: inline-block; vertical-align: top;"><svg fill="#888888" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"></path><path d="M0 0h24v24H0z" fill="none"></path></svg></span> ${LOCATION}</div></div></div></div>', user: 'gmichelbkk', reputationPrecision: 1, votingPowerPrecision: 1, updateInterval: 60 }); steemitWidgets.profile({ element: 'steemit-widgets-profile2', template: '<div style="border: 5px solid rgb(0, 168, 230); border-radius: 5px; font-family: Arial, Helvetica, sans-serif;"><div style="background-image: url(\'${COVERIMAGE}\'); background-position: center center; background-size: cover; background-color: rgb(0, 168, 230); display: flex; border-top-right-radius: 0px; border-top-left-radius: 0px;"><div style="background: url(\'${IMAGE}\') center center / cover; width: 50px; height: 50px; border-radius: 36px; margin: 10px;"></div> <div style="flex: 1 1 0%; margin: 10px; line-height: 18px; text-align: left;"><a href="https://steemit.com/@${USER}" style="color: rgb(255, 255, 255); text-decoration: none;">@${USER}</a> <span style="background: rgb(0, 168, 230); border-radius: 10px; color: rgb(255, 255, 255); font-size: 11px; padding: 2px 5px; font-weight: bold; border: 1px solid rgba(255, 255, 255, 0.5);">${REPUTATION}</span><br> <a href="${WEBSITE}" style="color: rgb(255, 255, 255); font-size: 12px; text-decoration: none;">${WEBSITE}</a><br> <span style="color: rgb(255, 255, 255); font-size: 12px;">${ABOUT}</span></div></div> <div style="color: rgb(120, 120, 120); background: rgb(255, 255, 255);"><div style="display: table; table-layout: fixed; width: 100%; text-align: center; font-size: 18px; line-height: 21px; padding: 10px 0px 5px;"><div style="display: table-cell;"><b>${POSTCOUNT}</b><br><sup>Posts</sup></div> <div style="display: table-cell;"><b>${FOLLOWERS}</b><br><sup>Followers</sup></div> <div style="display: table-cell;"><b>${FOLLOWING}</b><br><sup>Following</sup></div></div> <div style="display: table; table-layout: fixed; width: 100%; text-align: center; font-size: 12px; border-top: 1px solid rgb(221, 221, 221); padding: 5px 0px;"><div style="display: table-cell;"><span style="width: 15px; height: 15px; display: inline-block; vertical-align: top; margin-right: 3px;"><svg fill="#888888" version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 129 129" xmlns:xlink="http://www.w3.org/1999/xlink" enable-background="new 0 0 129 129"><g><g><path d="M50.2,39.9c-2.3,0-4.1,1.8-4.1,4.1v41.5c0,2.3,1.8,4.1,4.1,4.1c2.3,0,4.1-1.8,4.1-4.1V44C54.3,41.7,52.4,39.9,50.2,39.9z"></path><path d="m30.4,39.9c-2.3,0-4.1,1.8-4.1,4.1v41.5c0,2.3 1.8,4.1 4.1,4.1s4.1-1.8 4.1-4.1v-41.5c0-2.3-1.9-4.1-4.1-4.1z"></path><path d="m10.5,105h86.7c2.3,0 4.1-1.8 4.1-4.1v-17.4h17.2c2.3,0 4.1-1.8 4.1-4.1v-30c0-2.3-1.8-4.1-4.1-4.1h-17.2v-17.2c0-2.3-1.8-4.1-4.1-4.1h-86.7c-2.3,0-4.1,1.8-4.1,4.1v72.8c0,2.2 1.9,4.1 4.1,4.1zm90.8-51.5h13.1v21.9h-13.1v-21.9zm-86.7-21.3h78.5v17.2 30 17.4h-78.5v-64.6z"></path></g></g></svg></span>Voting Power: ${VOTINGPOWER} %</div> <div style="display: table-cell;"><span style="width: 15px; height: 15px; display: inline-block; vertical-align: top;"><svg fill="#888888" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0z" fill="none"></path><path d="M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7z"></path></svg></span> Joined: ${CREATED}</div> <div style="display: table-cell;"><span style="width: 15px; height: 15px; display: inline-block; vertical-align: top;"><svg fill="#888888" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"></path><path d="M0 0h24v24H0z" fill="none"></path></svg></span> ${LOCATION}</div></div></div></div>', user: 'gmichelbkk', reputationPrecision: 1, votingPowerPrecision: 1, updateInterval: 60 }); </script> ``` I installed it that way on my *WordPress* blog and it works. Would you upvote this post about *Steem* tools and follow me for more because this will encourage me to write more posts like this one? Would you please help _[@jerrybanfield](https://steemit.com/@jerrybanfield)_ become a top _20 witness_ because you can help funding projects to build _Steem_ [as explained here](https://steemit.com/budget/@jerrybanfield/introducing-steem-budget-proposals)? Vote for _jerrybanfield_ as a witness or set _jerrybanfield_ as a proxy to handle all witness votes at [https://steemit.com/~witnesses](https://steemit.com/~witnesses). Read the _[5 reasons why I'm voting for Jerry Banfield as a witness](https://steemit.com/witness/@gmichelbkk/5-reasons-why-i-m-voting-for-jerry-banfield-as-a-witness)_ and how to vote in my post. **Michel Gerard** [www.michelgerardonline.com](http://www.michelgerardonline.com/)
author | gmichelbkk |
---|---|
permlink | how-to-add-a-steemit-profile-widget-on-your-website |
category | steemit |
json_metadata | {"tags":["steemit","steem","tools","crypto","altcoin"],"image":["https://steemitimages.com/DQmYULZ5tNbhx9JFMSTHe7SzVhmxWwB73TKUYYD6Ka7u9BF/widgetWP.jpg","https://steemitimages.com/DQmbDZNmQRVdAc8w8kdZ9oo1q7LEyqfUbq2phGoh7ixfZWw/Steemitwidgets.jpg","https://steemitimages.com/DQmbeZSpw2ZVbZ4191E4CqZyb9R9vg2gNtZWdJSL9JZPX3i/widgetgen01.png","https://steemitimages.com/DQmZU7o5sK23YYmHj94gfxPi2ueZnyqL53pRT5pKd37J6Wg/widgetgen02.png","https://steemitimages.com/DQmTfXr9QdpjeaBXGKMrNzuhCQw8NkFeqoxY9jVoNUn7Qki/widgetgen03.png","https://steemitimages.com/DQmRidkE4rnyhy87KGHnFSN2k5JmMNzKSPtrmMM75MgMFWU/body%20code.png","https://steemitimages.com/DQmcdSYndJZdbgX7jiFxYPwDs1w7rCiUph1EFzip5TZ4xv7/WP%20codepage.png","https://steemitimages.com/DQmf8bkhTeGgsUDpRa49ivqx29rXuDjSE7wGFLFLS1wb2Qs/WP-page.png","https://steemitimages.com/DQma7UVE7CzPyxnDDp6d2m53Dwk9U4jPh7AjZaFzrAXqBHq/WP-widget.png","https://steemitimages.com/DQmab6uQR7884keBprZZdgXtoJHXp7VVTAQLRa7zJS2J6in/WP-footer.png"],"links":["https://mktcode.github.io/steemit-widgets/index.html","https://steemit.com/@mkt","https://mktcode.github.io/steemit-widgets/generator.html","http://www.michelgerardonline.com","https://steemit.com/@jerrybanfield","https://steemit.com/budget/@jerrybanfield/introducing-steem-budget-proposals","https://steemit.com/~witnesses","https://steemit.com/witness/@gmichelbkk/5-reasons-why-i-m-voting-for-jerry-banfield-as-a-witness","http://www.michelgerardonline.com/"],"app":"steemit/0.1","format":"markdown"} |
created | 2018-03-19 09:47:21 |
last_update | 2018-03-20 10:48:18 |
depth | 0 |
children | 77 |
last_payout | 2018-03-26 09:47:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 38.143 HBD |
curator_payout_value | 11.778 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 12,768 |
author_reputation | 39,321,958,154,729 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,307,098 |
net_rshares | 14,972,589,521,864 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
blocktrades | 0 | 2,912,410,671,874 | 14% | ||
gregory-f | 0 | 212,720,945 | 1% | ||
jose-poveda | 0 | 2,884,235,341 | 100% | ||
villenas | 0 | 6,257,523,954 | 100% | ||
lrock | 0 | 199,155,670,486 | 100% | ||
jlufer | 0 | 13,557,320,742 | 50% | ||
michelle.gent | 0 | 254,327,756,687 | 27% | ||
lumbridgecity | 0 | 206,481,713 | 100% | ||
allaz | 0 | 643,912,746,067 | 18.73% | ||
oleg326756 | 0 | 408,663,215 | 1% | ||
kennethbosak | 0 | 41,490,873,018 | 100% | ||
gmichelbkk | 0 | 30,897,451,290 | 100% | ||
greenstar | 0 | 1,496,650,294 | 5.97% | ||
malay11 | 0 | 101,689,603 | 2.5% | ||
scrooger | 0 | 273,295,895 | 0.75% | ||
jo3potato | 0 | 11,423,539,492 | 100% | ||
shango | 0 | 6,530,643,201 | 100% | ||
cryptocat | 0 | 69,045,025,300 | 100% | ||
laloelectrix | 0 | 2,343,602,739 | 100% | ||
jerrybanfield | 0 | 1,220,084,929,896 | 5.97% | ||
mkt | 0 | 41,600,033,202 | 100% | ||
dominikboecker | 0 | 4,461,846,929 | 100% | ||
fitinfun | 0 | 7,474,192,365 | 9% | ||
shravanthakur | 0 | 359,484,296 | 100% | ||
rishabhbhandari | 0 | 491,602,752 | 100% | ||
asadqayyum510 | 0 | 592,985,141 | 100% | ||
helgapn | 0 | 2,814,181,161 | 100% | ||
krazypoet | 0 | 112,112,572 | 0.05% | ||
gabyen3d | 0 | 6,931,806,499 | 100% | ||
onethousandwords | 0 | 69,935,038 | 2.5% | ||
zcevallos | 0 | 1,186,702,481 | 100% | ||
rudnicki | 0 | 612,570,365 | 100% | ||
samiwhyte | 0 | 53,156,051 | 0.5% | ||
evernoticethat | 0 | 14,653,710,781 | 100% | ||
laurabanfield | 0 | 6,165,537,308 | 100% | ||
youngky | 0 | 1,944,745,072 | 100% | ||
fishyculture | 0 | 404,246,576 | 1% | ||
shawkr13 | 0 | 152,064,524 | 4% | ||
zanoni | 0 | 1,798,250,257 | 100% | ||
superdavey | 0 | 52,947,619 | 0.1% | ||
bxlphabet | 0 | 3,654,048,209 | 14% | ||
happydolphin | 0 | 8,290,284,098 | 56% | ||
qurator | 0 | 227,200,222,373 | 5% | ||
emdesan | 0 | 4,491,691,757 | 100% | ||
windforce | 0 | 15,360,757,929 | 100% | ||
zazelpop | 0 | 152,644,732 | 14% | ||
unlockyoursound | 0 | 237,639,295 | 100% | ||
postpromoter | 0 | 2,614,691,106,564 | 2.18% | ||
agungpriambodo | 0 | 673,214,190 | 26% | ||
prudent-rod1 | 0 | 51,148,452 | 2.5% | ||
craigahamilton | 0 | 1,722,453,677 | 100% | ||
sagarthukral | 0 | 10,938,984,053 | 20% | ||
smartsteem | 0 | 5,758,865,432,034 | 7.86% | ||
angiechin28 | 0 | 1,862,047,951 | 100% | ||
mdamanulla69 | 0 | 407,173,344 | 100% | ||
skycae | 0 | 140,722,250 | 0.15% | ||
rezoanulvibes | 0 | 1,702,999,801 | 100% | ||
vaderiffic | 0 | 1,016,809,158 | 100% | ||
williamgabriel | 0 | 568,396,630 | 100% | ||
uktr | 0 | 253,842,782 | 100% | ||
roundbeargames | 0 | 9,994,034,819 | 10% | ||
itsben | 0 | 57,399,376 | 2.5% | ||
devilonwheels | 0 | 99,727,593 | 0.05% | ||
kenechukwu2 | 0 | 353,013,922 | 100% | ||
wisewoof | 0 | 109,841,084 | 0.07% | ||
entrepreneur916 | 0 | 61,383,289 | 1.25% | ||
energyaddict22 | 0 | 333,728,214 | 1.75% | ||
lord-faustus | 0 | 50,539,646 | 2.5% | ||
pankaj724 | 0 | 420,932,500 | 100% | ||
nwjordan | 0 | 6,719,908,952 | 75% | ||
skeletone | 0 | 0 | 100% | ||
verhp11 | 0 | 4,874,065,182 | 100% | ||
tlsvchuoi | 0 | 385,880,693 | 100% | ||
imaginalex | 0 | 1,526,916,078 | 100% | ||
pundito | 0 | 81,330,694 | 2.5% | ||
jessicapixie | 0 | 43,394,479,216 | 100% | ||
conscious.earth | 0 | 200,341,872 | 100% | ||
csharma | 0 | 556,691,548 | 100% | ||
ahmadrabdi | 0 | 4,009,647,067 | 100% | ||
richatvns | 0 | 8,684,849,094 | 27% | ||
emmasumner | 0 | 432,493,481 | 100% | ||
reonlouw | 0 | 616,898,902 | 100% | ||
mwfiae | 0 | 93,620,396 | 0.5% | ||
dexify | 0 | 614,048,611 | 100% | ||
abrockman | 0 | 10,879,073,393 | 100% | ||
bdoelskie | 0 | 480,104,267 | 100% | ||
imran-aslam | 0 | 651,964,801 | 100% | ||
yateszey | 0 | 566,478,734 | 100% | ||
xinvista | 0 | 569,084,463 | 100% | ||
eldub | 0 | 547,341,911 | 100% | ||
cheekah | 0 | 600,737,805 | 100% | ||
bukkymaj | 0 | 579,306,010 | 100% | ||
marilin151 | 0 | 0 | 100% | ||
olivier10101 | 0 | -125,551,132 | 0% | ||
beaureveurbella | 0 | 578,741,312 | 100% | ||
ccsbot | 0 | 546,854,842 | 100% | ||
promobot | 0 | 606,397,562,921 | 3.21% | ||
negusnegaste | 0 | 605,462,919 | 100% | ||
thebot | 0 | 94,038,196,086 | 25.97% | ||
reigns | 0 | 496,514,587 | 100% | ||
juancar2000 | 0 | 205,318,663 | 100% | ||
caferakan | 0 | 401,852,166 | 100% | ||
lyinxis | 0 | 260,550,246 | 100% | ||
mak1jk | 0 | 526,613,752 | 100% | ||
miguelrp | 0 | 554,163,387 | 100% | ||
djd39448 | 0 | 572,991,173 | 100% | ||
fikarfitim99 | 0 | 325,186,739 | 100% | ||
esteemboard | 0 | 317,413,827 | 100% | ||
younus11 | 0 | 353,499,355 | 100% | ||
slokan18 | 0 | 578,848,755 | 100% | ||
omadnicki | 0 | 450,205,462 | 100% | ||
gungho | 0 | 612,518,115 | 100% | ||
cosmophobia | 0 | 379,757,561 | 100% | ||
freddmape | 0 | 315,442,154 | 100% | ||
edgy-ed-morrison | 0 | 596,158,852 | 100% | ||
promisearts | 0 | 385,867,003 | 100% | ||
bdsdeb | 0 | 612,481,114 | 100% | ||
ebenzy | 0 | 385,842,166 | 100% | ||
dzuel | 0 | 113,301,145 | 100% | ||
bolivarvicbang | 0 | 600,146,172 | 100% | ||
dennisguru | 0 | 511,349,035 | 100% | ||
alofe.oluwafemi | 0 | 142,641,908 | 100% | ||
steemitianin | 0 | 590,903,501 | 100% | ||
wandaa | 0 | 477,602,445 | 100% | ||
mohammadreza7hb | 0 | 0 | 100% | ||
travelfox | 0 | 0 | 100% | ||
lonik-olsawn | 0 | 0 | 50% | ||
triple-paradox | 0 | 0 | 100% |
You got a 18.73% upvote from @allaz courtesy of @gmichelbkk! Thanks for using Bid Voting Bot @allaz service and [Steem Upvote Bot Tracker](https://steembottracker.com/) I want to introduce you to my new friend @monsterbit in order to give additional thanks! Do you know who is @monsterbit is? My friend, you can miss a lot. I highly recommend checking him with [introduceyourself](https://steemit.com/introduceyourself/@monsterbit/hello-everyone-my-name-is-monsterbit-let-s-be-friends). He is going to hold interesting [contests with cash prizes](https://steemit.com/contest/@monsterbit/hello-dear-friends-monsterbit-is-in-touch-let-s-discuss-upcoming-contests) and promises to tell a lot of interesting stories!
author | allaz |
---|---|
permlink | re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180319t110756707z |
category | steemit |
json_metadata | {"app":"postpromoter/1.9.1"} |
created | 2018-03-19 11:07:54 |
last_update | 2018-03-19 11:07:54 |
depth | 1 |
children | 0 |
last_payout | 2018-03-26 11:07:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 714 |
author_reputation | 2,906,009,420,940 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,318,668 |
net_rshares | 0 |
Hi @gmichelbkk I'm having problems with Dtube. Some videos won't load and are always buffering. Any ideas?
author | antondee |
---|---|
permlink | re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180319t124321234z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["gmichelbkk"],"app":"steemit/0.1"} |
created | 2018-03-19 12:43:21 |
last_update | 2018-03-19 12:43:21 |
depth | 1 |
children | 2 |
last_payout | 2018-03-26 12:43:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 106 |
author_reputation | 1,477,343,357,602 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,333,572 |
net_rshares | 2,807,474,441 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gmichelbkk | 0 | 2,807,474,441 | 9% |
Not sure about that @antondee. You may want to try at another time, maybe the server is having issues.
author | gmichelbkk |
---|---|
permlink | re-antondee-re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180319t125707521z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["antondee"],"app":"steemit/0.1"} |
created | 2018-03-19 12:57:06 |
last_update | 2018-03-19 12:57:06 |
depth | 2 |
children | 1 |
last_payout | 2018-03-26 12:57:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 102 |
author_reputation | 39,321,958,154,729 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,336,034 |
net_rshares | 0 |
Thanks for getting back to me @gmichelbkk, it has been over a week and same videos do not load. Keep up the good work anyhow!
author | antondee |
---|---|
permlink | re-gmichelbkk-re-antondee-re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180319t160533522z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["gmichelbkk"],"app":"steemit/0.1"} |
created | 2018-03-19 16:05:33 |
last_update | 2018-03-19 16:05:33 |
depth | 3 |
children | 0 |
last_payout | 2018-03-26 16:05:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 125 |
author_reputation | 1,477,343,357,602 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,370,715 |
net_rshares | 4,679,124,069 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gmichelbkk | 0 | 4,679,124,069 | 15% |
Just what i have been looking for! But i have a question; do you know any plugin that allow one to post to steemit through wordpress?
author | autofreak |
---|---|
permlink | re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180319t212141478z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-03-19 21:21:57 |
last_update | 2018-03-19 21:21:57 |
depth | 1 |
children | 0 |
last_payout | 2018-03-26 21:21:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 134 |
author_reputation | 14,084,098,064,393 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,417,565 |
net_rshares | 2,495,532,836 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gmichelbkk | 0 | 2,495,532,836 | 8% |
Thanks for the kind information, this info does help me because i am a new member on steemit.basically, i come steemit use for share my some crypto related knowledge and get beter info. i wait for your next information. thanks @gmichelbkk
author | bdsdeb |
---|---|
permlink | re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180320t224258284z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["gmichelbkk"],"app":"steemit/0.1"} |
created | 2018-03-20 09:43:06 |
last_update | 2018-03-20 09:43:06 |
depth | 1 |
children | 1 |
last_payout | 2018-03-27 09:43:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 238 |
author_reputation | 300,591,313 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,512,791 |
net_rshares | 3,120,114,063 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gmichelbkk | 0 | 3,120,114,063 | 10% |
I am glad that you like the post @bdsdeb, thank you.
author | gmichelbkk |
---|---|
permlink | re-bdsdeb-re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180320t094638458z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["bdsdeb"],"app":"steemit/0.1"} |
created | 2018-03-20 09:46:42 |
last_update | 2018-03-20 09:46:42 |
depth | 2 |
children | 0 |
last_payout | 2018-03-27 09:46:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 52 |
author_reputation | 39,321,958,154,729 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,513,268 |
net_rshares | 0 |
Thank you Sir for this useful information. I will try it out.
author | bukkymaj |
---|---|
permlink | re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180319t095317190z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-03-19 09:53:24 |
last_update | 2018-03-19 09:53:24 |
depth | 1 |
children | 1 |
last_payout | 2018-03-26 09:53:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 61 |
author_reputation | 31,529,725,330 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,307,950 |
net_rshares | 2,794,770,055 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gmichelbkk | 0 | 2,794,770,055 | 9% |
I am glad that you like it, thank you for commenting @bukkymaj.
author | gmichelbkk |
---|---|
permlink | re-bukkymaj-re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180319t122309286z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["bukkymaj"],"app":"steemit/0.1"} |
created | 2018-03-19 12:23:09 |
last_update | 2018-03-19 12:23:09 |
depth | 2 |
children | 0 |
last_payout | 2018-03-26 12:23:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 63 |
author_reputation | 39,321,958,154,729 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,330,301 |
net_rshares | 0 |
Can we add that to a website based on blogspot like mine : [steemit.name](http://www.steemit.name/) ? If it yes, please tell me how to do it ?
author | clixmoney |
---|---|
permlink | re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180320t095340805z |
category | steemit |
json_metadata | {"tags":["steemit"],"links":["http://www.steemit.name/"],"app":"steemit/0.1"} |
created | 2018-03-20 09:53:45 |
last_update | 2018-03-20 09:53:45 |
depth | 1 |
children | 5 |
last_payout | 2018-03-27 09:53:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 142 |
author_reputation | 708,028,799,822,335 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,514,308 |
net_rshares | 4,649,484,954 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gmichelbkk | 0 | 4,649,484,954 | 20% |
I am not sure about these free blogs, but if you can add code to a page and the footer via a widget, then the process is the same as WordPress.
author | gmichelbkk |
---|---|
permlink | re-clixmoney-re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180321t001239588z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-03-21 00:12:48 |
last_update | 2018-03-21 00:12:48 |
depth | 2 |
children | 4 |
last_payout | 2018-03-28 00:12:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 143 |
author_reputation | 39,321,958,154,729 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,641,026 |
net_rshares | 0 |
I did it after learning a bit, you can take a look, and I removed the widget of google +, now I am completly advertizing steemit. ☺
author | clixmoney |
---|---|
permlink | re-gmichelbkk-re-clixmoney-re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180321t073759278z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-03-21 07:38:03 |
last_update | 2018-03-21 07:38:03 |
depth | 3 |
children | 3 |
last_payout | 2018-03-28 07:38:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 131 |
author_reputation | 708,028,799,822,335 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,696,500 |
net_rshares | 2,324,844,522 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gmichelbkk | 0 | 2,324,844,522 | 10% |
Incredibly helpful, I was looking for this kind of integration from the very beginning of my Steemit journey and its oh so rewarding. Great add to my professional website here, I'll continue to watch its development and tweak it as I go along. Again, this is one of the most beneficial advents of Steemit I've ever found, so definitely incorporating this link in my database. # Thank you for sharing @gmichelbkk!!
author | craigahamilton |
---|---|
permlink | re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180322t030741455z |
category | steemit |
json_metadata | {"tags":["steemit"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-03-22 03:07:42 |
last_update | 2018-03-22 03:07:42 |
depth | 1 |
children | 3 |
last_payout | 2018-03-29 03:07:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 414 |
author_reputation | 5,718,415,817,349 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,865,852 |
net_rshares | 3,626,512,589 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gmichelbkk | 0 | 3,626,512,589 | 16% |
Thank you very much @craigahamilton for your kind comment. I am glad it is useful for you. You may want to read my second post about this: https://steemit.com/steemit/@gmichelbkk/how-to-show-your-steemit-posts-on-your-website
author | gmichelbkk |
---|---|
permlink | re-craigahamilton-re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180322t031910399z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["craigahamilton"],"links":["https://steemit.com/steemit/@gmichelbkk/how-to-show-your-steemit-posts-on-your-website"],"app":"steemit/0.1"} |
created | 2018-03-22 03:19:12 |
last_update | 2018-03-22 03:19:12 |
depth | 2 |
children | 2 |
last_payout | 2018-03-29 03:19:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 225 |
author_reputation | 39,321,958,154,729 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,867,362 |
net_rshares | 814,924,320 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
craigahamilton | 0 | 814,924,320 | 50% |
Thank you so much for writing this up and sharing such valuable information. Consider yourself followed. I hope more experts of your caliber join Steemit and lend their wisdom to the growing user base. # Thank you for sharing this!
author | craigahamilton |
---|---|
permlink | re-gmichelbkk-re-craigahamilton-re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180322t033938985z |
category | steemit |
json_metadata | {"tags":["steemit"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-03-22 03:39:39 |
last_update | 2018-03-22 03:39:39 |
depth | 3 |
children | 1 |
last_payout | 2018-03-29 03:39:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.017 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 232 |
author_reputation | 5,718,415,817,349 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,870,217 |
net_rshares | 8,071,915,117 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gmichelbkk | 0 | 8,071,915,117 | 35% |
cool
author | cybercodetwins |
---|---|
permlink | re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180712t000031373z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-07-12 00:00:30 |
last_update | 2018-07-12 00:00:30 |
depth | 1 |
children | 0 |
last_payout | 2018-07-19 00:00:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 4 |
author_reputation | 2,098,733,764,293 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 64,344,964 |
net_rshares | 5,268,551,747 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gmichelbkk | 0 | 5,268,551,747 | 16% |
Good info brother me
author | fikarfitim99 |
---|---|
permlink | re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180319t211453638z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-03-19 21:15:06 |
last_update | 2018-03-19 21:15:06 |
depth | 1 |
children | 1 |
last_payout | 2018-03-26 21:15:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 20 |
author_reputation | -118,269,357 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,416,695 |
net_rshares | 2,495,532,836 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gmichelbkk | 0 | 2,495,532,836 | 8% |
Thank you @fikarfitim99.
author | gmichelbkk |
---|---|
permlink | re-fikarfitim99-re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180320t003405519z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["fikarfitim99"],"app":"steemit/0.1"} |
created | 2018-03-20 00:34:09 |
last_update | 2018-03-20 00:34:09 |
depth | 2 |
children | 0 |
last_payout | 2018-03-27 00:34:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 24 |
author_reputation | 39,321,958,154,729 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,441,420 |
net_rshares | 592,164,066 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fikarfitim99 | 0 | 592,164,066 | 100% |
Thank you so much for your valuable post man! very much appreciated :)
author | gomovies |
---|---|
permlink | re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180320t123944559z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-03-20 12:39:54 |
last_update | 2018-03-20 12:39:54 |
depth | 1 |
children | 1 |
last_payout | 2018-03-27 12:39:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.050 HBD |
curator_payout_value | 0.001 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 70 |
author_reputation | 260,958,136,057 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,537,973 |
net_rshares | 16,117,163,593 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gmichelbkk | 0 | 3,487,113,715 | 15% | ||
gomovies | 0 | 12,630,049,878 | 100% |
I am glad you like it @gomovies. Thank you for commenting.
author | gmichelbkk |
---|---|
permlink | re-gomovies-re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180321t000729120z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["gomovies"],"app":"steemit/0.1"} |
created | 2018-03-21 00:07:33 |
last_update | 2018-03-21 00:07:33 |
depth | 2 |
children | 0 |
last_payout | 2018-03-28 00:07:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 58 |
author_reputation | 39,321,958,154,729 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,640,373 |
net_rshares | 0 |
Thank you. This was very useful information. I will make sure to refer to this when I make my profile widget.
author | gungho |
---|---|
permlink | re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180324t073659218z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-03-24 07:37:00 |
last_update | 2018-03-24 07:37:18 |
depth | 1 |
children | 1 |
last_payout | 2018-03-31 07:37:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 109 |
author_reputation | 6,701,441,510,879 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,288,283 |
net_rshares | 3,557,384,450 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gmichelbkk | 0 | 3,557,384,450 | 15% |
Thank you for your kind feedback @gungho.
author | gmichelbkk |
---|---|
permlink | re-gungho-re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180324t075735789z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["gungho"],"app":"steemit/0.1"} |
created | 2018-03-24 07:57:39 |
last_update | 2018-03-24 07:57:39 |
depth | 2 |
children | 0 |
last_payout | 2018-03-31 07:57:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 41 |
author_reputation | 39,321,958,154,729 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,290,573 |
net_rshares | 0 |
nice post, thanks for useful information
author | imran-aslam |
---|---|
permlink | re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180319t103026603z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-03-19 10:30:21 |
last_update | 2018-03-19 10:30:21 |
depth | 1 |
children | 1 |
last_payout | 2018-03-26 10:30:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 41 |
author_reputation | 2,273,239,524,052 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,313,411 |
net_rshares | 4,727,611,806 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gmichelbkk | 0 | 2,794,770,055 | 9% | ||
imran-aslam | 0 | 707,686,356 | 100% | ||
allfriend | 0 | 612,646,359 | 100% | ||
stifen | 0 | 612,509,036 | 100% |
I am glad you like it, thank you @imran-aslam.
author | gmichelbkk |
---|---|
permlink | re-imran-aslam-re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180319t122447697z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["imran-aslam"],"app":"steemit/0.1"} |
created | 2018-03-19 12:24:45 |
last_update | 2018-03-19 12:24:45 |
depth | 2 |
children | 0 |
last_payout | 2018-03-26 12:24:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 46 |
author_reputation | 39,321,958,154,729 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,330,576 |
net_rshares | 0 |
Michel this is awesome and just what I needed! I will resteem today and see about getting this on https://jerrybanfield.com/.
author | jerrybanfield |
---|---|
permlink | re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180319t161901190z |
category | steemit |
json_metadata | {"tags":["steemit"],"links":["https://jerrybanfield.com/"],"app":"steemit/0.1"} |
created | 2018-03-19 16:19:00 |
last_update | 2018-03-19 16:19:00 |
depth | 1 |
children | 1 |
last_payout | 2018-03-26 16:19:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 126 |
author_reputation | 362,393,802,961,900 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,373,092 |
net_rshares | 4,679,124,069 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gmichelbkk | 0 | 4,679,124,069 | 15% |
I am glad @jerrybanfield that this is useful for you. Steemians need to know about this tool more. Thank you for the resteem.
author | gmichelbkk |
---|---|
permlink | re-jerrybanfield-re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180320t002953652z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["jerrybanfield"],"app":"steemit/0.1"} |
created | 2018-03-20 00:29:57 |
last_update | 2018-03-20 00:29:57 |
depth | 2 |
children | 0 |
last_payout | 2018-03-27 00:29:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 125 |
author_reputation | 39,321,958,154,729 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,440,884 |
net_rshares | 0 |
Oh this is very helpful since I am actually working on creating my Blog on Wordpress. I will definitely follow this guideline to install the widget. Thanks!
author | jessicapixie |
---|---|
permlink | re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180320t001732534z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-03-20 00:17:30 |
last_update | 2018-03-20 00:17:30 |
depth | 1 |
children | 1 |
last_payout | 2018-03-27 00:17:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 156 |
author_reputation | 1,126,541,781,761 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,439,233 |
net_rshares | 3,899,270,057 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gmichelbkk | 0 | 3,899,270,057 | 13% |
I am glad this is useful for you @jessicapixie. Thank you for commenting.
author | gmichelbkk |
---|---|
permlink | re-jessicapixie-re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180320t004728516z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["jessicapixie"],"app":"steemit/0.1"} |
created | 2018-03-20 00:47:33 |
last_update | 2018-03-20 00:47:33 |
depth | 2 |
children | 0 |
last_payout | 2018-03-27 00:47:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.114 HBD |
curator_payout_value | 0.036 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 73 |
author_reputation | 39,321,958,154,729 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,443,043 |
net_rshares | 46,417,412,311 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jessicapixie | 0 | 46,417,412,311 | 100% |
His would be that a computer made a plugin for Wordpress. So better for those who do not know code.
author | jose-poveda |
---|---|
permlink | re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180320t204115570z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-03-20 20:41:18 |
last_update | 2018-03-20 20:41:18 |
depth | 1 |
children | 1 |
last_payout | 2018-03-27 20:41:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 99 |
author_reputation | 3,998,582,858,716 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,615,955 |
net_rshares | 3,487,113,715 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gmichelbkk | 0 | 3,487,113,715 | 15% |
If you know how to install a plugin on WordPress, you can do this @jose-poveda. It's just a matter of copying and pasting some code you don't have to understand.
author | gmichelbkk |
---|---|
permlink | re-jose-poveda-re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180321t001016496z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["jose-poveda"],"app":"steemit/0.1"} |
created | 2018-03-21 00:10:21 |
last_update | 2018-03-21 00:10:45 |
depth | 2 |
children | 0 |
last_payout | 2018-03-28 00:10:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 161 |
author_reputation | 39,321,958,154,729 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,640,737 |
net_rshares | 0 |
This post will be very useful on my blog. Thank you very much for sharing such a useful information.
author | krisosa |
---|---|
permlink | re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180320t014449205z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-03-20 01:44:57 |
last_update | 2018-03-20 01:44:57 |
depth | 1 |
children | 1 |
last_payout | 2018-03-27 01:44:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 100 |
author_reputation | 307,627,616,537 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,450,380 |
net_rshares | 3,119,416,046 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gmichelbkk | 0 | 3,119,416,046 | 10% |
I am glad it is @krisosa. Thank you for commenting.
author | gmichelbkk |
---|---|
permlink | re-krisosa-re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180320t020951929z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["krisosa"],"app":"steemit/0.1"} |
created | 2018-03-20 02:09:51 |
last_update | 2018-03-20 02:09:51 |
depth | 2 |
children | 0 |
last_payout | 2018-03-27 02:09:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 51 |
author_reputation | 39,321,958,154,729 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,453,702 |
net_rshares | 0 |
Hey @gmichelbkk! Thank you! Seems I have to take my old widgets project a little bit more serious again. :D I didn't really plan to support it anymore but... well... maybe I'll reconsider. :D Oh btw... You just need to make sure you use a different id when adding multiple widgets.
author | mkt |
---|---|
permlink | re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180319t113026361z |
category | steemit |
json_metadata | {"tags":["steemit"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-03-19 11:30:27 |
last_update | 2018-03-19 14:28:54 |
depth | 1 |
children | 8 |
last_payout | 2018-03-26 11:30:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.079 HBD |
curator_payout_value | 0.023 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 282 |
author_reputation | 45,513,283,519,678 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,322,265 |
net_rshares | 31,063,663,712 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gmichelbkk | 0 | 30,897,735,617 | 100% | ||
penghuren | 0 | 113,862,981 | 0.85% | ||
mbot | 0 | 52,065,114 | 10% |
Hello, do you have to tool that allow users to post from wordpress and it will reflect on steemit?
author | autofreak |
---|---|
permlink | re-mkt-re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180319t212415396z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-03-19 21:24:24 |
last_update | 2018-03-19 21:24:24 |
depth | 2 |
children | 1 |
last_payout | 2018-03-26 21:24:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.046 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 98 |
author_reputation | 14,084,098,064,393 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,417,866 |
net_rshares | 18,335,641,889 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gmichelbkk | 0 | 4,679,124,069 | 15% | ||
autofreak | 0 | 13,656,517,820 | 100% |
Search for steempress
author | mkt |
---|---|
permlink | re-autofreak-re-mkt-re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180319t224855562z |
category | steemit |
json_metadata | {"tags":["steemit"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-03-19 22:48:57 |
last_update | 2018-03-19 22:48:57 |
depth | 3 |
children | 0 |
last_payout | 2018-03-26 22:48:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 21 |
author_reputation | 45,513,283,519,678 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,428,128 |
net_rshares | 0 |
Thank you for reading the post and commenting. Yes, please, continue this project because it is going to be useful for a lot of people. I think the widgets are awesome and what you need is more promotion so people are aware they exist. Thank you for the tip of using a different id, I will try that.
author | gmichelbkk |
---|---|
permlink | re-mkt-re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180319t122209746z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-03-19 12:22:09 |
last_update | 2018-03-19 12:22:09 |
depth | 2 |
children | 5 |
last_payout | 2018-03-26 12:22:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 299 |
author_reputation | 39,321,958,154,729 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,330,138 |
net_rshares | 0 |
I was thinking about implementing SteemConnect to enable commenting and voting. But therefore I would have to change the entire technical concept... :/ maybe I'll find a reasonable solution someday. :D
author | mkt |
---|---|
permlink | re-gmichelbkk-re-mkt-re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180319t132816136z |
category | steemit |
json_metadata | {"tags":["steemit"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-03-19 13:28:18 |
last_update | 2018-03-19 13:28:18 |
depth | 3 |
children | 4 |
last_payout | 2018-03-26 13:28:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.020 HBD |
curator_payout_value | 0.001 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 201 |
author_reputation | 45,513,283,519,678 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,341,973 |
net_rshares | 7,330,627,708 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gmichelbkk | 0 | 7,330,627,708 | 24% |
Thank you for sharing this! I like how customizable this widget is, it's exactly what I was looking for.
author | modev |
---|---|
permlink | re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180319t212413433z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-03-19 21:24:15 |
last_update | 2018-03-19 21:24:15 |
depth | 1 |
children | 1 |
last_payout | 2018-03-26 21:24:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 104 |
author_reputation | 35,379,534,428 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,417,845 |
net_rshares | 4,055,240,860 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gmichelbkk | 0 | 4,055,240,860 | 13% |
Thank you for your feedback @modev, I am glad you like this tool.
author | gmichelbkk |
---|---|
permlink | re-modev-re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180320t004359920z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["modev"],"app":"steemit/0.1"} |
created | 2018-03-20 00:44:06 |
last_update | 2018-03-20 00:44:06 |
depth | 2 |
children | 0 |
last_payout | 2018-03-27 00:44:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 65 |
author_reputation | 39,321,958,154,729 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,442,600 |
net_rshares | 0 |
Currently buikding my blog an is greatful for this...i want to learn about api an why its needed
author | naturalog |
---|---|
permlink | re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180319t231533341z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-03-19 23:15:36 |
last_update | 2018-03-19 23:15:36 |
depth | 1 |
children | 1 |
last_payout | 2018-03-26 23:15:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 96 |
author_reputation | 107,826,849,847 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,431,319 |
net_rshares | 3,899,270,057 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gmichelbkk | 0 | 3,899,270,057 | 13% |
Thank you for commenting, it's great this is useful for you @naturalog.
author | gmichelbkk |
---|---|
permlink | re-naturalog-re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180320t004537722z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["naturalog"],"app":"steemit/0.1"} |
created | 2018-03-20 00:45:39 |
last_update | 2018-03-20 00:45:39 |
depth | 2 |
children | 0 |
last_payout | 2018-03-27 00:45:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 71 |
author_reputation | 39,321,958,154,729 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,442,797 |
net_rshares | 0 |
You got a 2.18% upvote from @postpromoter courtesy of @gmichelbkk! Want to promote your posts too? Check out the [Steem Bot Tracker website](https://steembottracker.com) for more info. If you would like to support the development of @postpromoter and the bot tracker please [vote for @yabapmatt for witness!](https://v2.steemconnect.com/sign/account-witness-vote?witness=yabapmatt&approve=1)
author | postpromoter |
---|---|
permlink | re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180319t125421613z |
category | steemit |
json_metadata | {"app":"postpromoter/1.8.6"} |
created | 2018-03-19 12:54:21 |
last_update | 2018-03-19 12:54:21 |
depth | 1 |
children | 0 |
last_payout | 2018-03-26 12:54:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 393 |
author_reputation | 12,722,616,650,811 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,335,537 |
net_rshares | 0 |
very usefull post sir,,,thanks a lot for your kind informations
author | rahmanmdriad |
---|---|
permlink | re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180320t032140478z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-03-20 03:21:42 |
last_update | 2018-03-20 03:21:42 |
depth | 1 |
children | 1 |
last_payout | 2018-03-27 03:21:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 63 |
author_reputation | 848,023,231,290 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,463,152 |
net_rshares | 3,593,288,468 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gmichelbkk | 0 | 3,120,114,063 | 10% | ||
mdriadrahman26 | 0 | 473,174,405 | 100% |
I am glad you like it @rahmanmdriad.
author | gmichelbkk |
---|---|
permlink | re-rahmanmdriad-re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180320t034750201z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["rahmanmdriad"],"app":"steemit/0.1"} |
created | 2018-03-20 03:47:51 |
last_update | 2018-03-20 03:47:51 |
depth | 2 |
children | 0 |
last_payout | 2018-03-27 03:47:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 36 |
author_reputation | 39,321,958,154,729 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,466,636 |
net_rshares | 588,311,793 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mahir9686 | 0 | 588,311,793 | 100% |
Really useful piece of information. Thank you!
author | reigns |
---|---|
permlink | re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180319t210953368z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-03-19 21:07:42 |
last_update | 2018-03-19 21:07:42 |
depth | 1 |
children | 1 |
last_payout | 2018-03-26 21:07:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 46 |
author_reputation | 50,654,526,586 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,415,820 |
net_rshares | 4,055,240,860 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gmichelbkk | 0 | 4,055,240,860 | 13% |
Thank you @reigns, I am glad you like it.
author | gmichelbkk |
---|---|
permlink | re-reigns-re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180320t003214009z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["reigns"],"app":"steemit/0.1"} |
created | 2018-03-20 00:32:18 |
last_update | 2018-03-20 00:32:18 |
depth | 2 |
children | 0 |
last_payout | 2018-03-27 00:32:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 41 |
author_reputation | 39,321,958,154,729 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,441,191 |
net_rshares | 0 |
As always, you are helpful and very detailed. I enjoy what you do for Steemit. Thank you!
author | reonlouw |
---|---|
permlink | re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180321t195734978z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-03-21 19:57:39 |
last_update | 2018-03-21 19:57:39 |
depth | 1 |
children | 1 |
last_payout | 2018-03-28 19:57:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 89 |
author_reputation | 19,228,702,032,907 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,809,558 |
net_rshares | 3,041,267,528 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gmichelbkk | 0 | 3,041,267,528 | 13% |
Thank you for your kind feedback @reonlouw.
author | gmichelbkk |
---|---|
permlink | re-reonlouw-re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180322t001213058z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["reonlouw"],"app":"steemit/0.1"} |
created | 2018-03-22 00:12:12 |
last_update | 2018-03-22 00:12:12 |
depth | 2 |
children | 0 |
last_payout | 2018-03-29 00:12:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 43 |
author_reputation | 39,321,958,154,729 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,842,656 |
net_rshares | 0 |
Thank you so much @gmichelbkk for explaining step by step easily. Now anyone can add steemit profile wedget on their site. This is pretty cool!
author | rezoanulvibes |
---|---|
permlink | re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180319t181506692z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["gmichelbkk"],"app":"steemit/0.1"} |
created | 2018-03-19 18:15:21 |
last_update | 2018-03-19 18:15:21 |
depth | 1 |
children | 1 |
last_payout | 2018-03-26 18:15:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 143 |
author_reputation | 534,462,861,980,061 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,392,198 |
net_rshares | 4,679,124,069 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gmichelbkk | 0 | 4,679,124,069 | 15% |
I am glad you like it @rezoanulvibes, thank you for your comment.
author | gmichelbkk |
---|---|
permlink | re-rezoanulvibes-re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180320t003113887z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["rezoanulvibes"],"app":"steemit/0.1"} |
created | 2018-03-20 00:31:15 |
last_update | 2018-03-20 00:31:15 |
depth | 2 |
children | 0 |
last_payout | 2018-03-27 00:31:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 65 |
author_reputation | 39,321,958,154,729 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,441,062 |
net_rshares | 0 |
 Excellent info I am resteeming! 
author | richatvns |
---|---|
permlink | re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180322t183706574z |
category | steemit |
json_metadata | {"tags":["steemit"],"image":["https://steemitimages.com/DQmadQsoxRmjHJncaaoZprVuHDJmKYJXCuNp99qDRKXZT6N/thumbsupcolor.jpg","https://steemitimages.com/DQmauy7c3y92hPLPNFdkaBLpqpKtK1GCyxE1VKZStNJxqXb/followmesteampower.jpg"],"app":"steemit/0.1"} |
created | 2018-03-22 18:37:09 |
last_update | 2018-03-22 18:37:09 |
depth | 1 |
children | 3 |
last_payout | 2018-03-29 18:37:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.098 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 269 |
author_reputation | 243,323,637,506,719 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,001,923 |
net_rshares | 34,562,867,184 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gmichelbkk | 0 | 3,297,410,444 | 14% | ||
richatvns | 0 | 31,265,456,740 | 100% |
Awesome post for sure...
author | emmanuelzod |
---|---|
permlink | re-richatvns-re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180324t214616978z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-03-24 21:46:30 |
last_update | 2018-03-24 21:46:30 |
depth | 2 |
children | 1 |
last_payout | 2018-03-31 21:46:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.026 HBD |
curator_payout_value | 0.006 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 24 |
author_reputation | 3,581,786,386,266 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,398,938 |
net_rshares | 13,132,987,337 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
richatvns | 0 | 12,820,446,697 | 31% | ||
emmanuelzod | 0 | 312,540,640 | 100% |

author | richatvns |
---|---|
permlink | re-emmanuelzod-re-richatvns-re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180328t155258592z |
category | steemit |
json_metadata | {"tags":["steemit"],"image":["https://steemitimages.com/DQmQaimL4RuyhsuUfML2DPWFnC4d32XqyigzgEGBBEZv4Qz/emoticons16.jpg"],"app":"steemit/0.1"} |
created | 2018-03-28 15:53:00 |
last_update | 2018-03-28 15:53:00 |
depth | 3 |
children | 0 |
last_payout | 2018-04-04 15:53:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.031 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 109 |
author_reputation | 243,323,637,506,719 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 47,116,224 |
net_rshares | 12,820,446,697 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
richatvns | 0 | 12,820,446,697 | 31% |
Thank you for resteeming. This will help other people discover this tool.
author | gmichelbkk |
---|---|
permlink | re-richatvns-re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180323t003903561z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-03-23 00:39:06 |
last_update | 2018-03-23 00:39:06 |
depth | 2 |
children | 0 |
last_payout | 2018-03-30 00:39:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.027 HBD |
curator_payout_value | 0.008 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 73 |
author_reputation | 39,321,958,154,729 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,049,403 |
net_rshares | 12,820,446,697 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
richatvns | 0 | 12,820,446,697 | 31% |
Thank you for this post, I have bookmarked it as I am developing my website currently and this would be very useful for me in the future.
author | sagarthukral |
---|---|
permlink | re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180319t111102496z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-03-19 11:11:03 |
last_update | 2018-03-19 11:11:03 |
depth | 1 |
children | 1 |
last_payout | 2018-03-26 11:11:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.132 HBD |
curator_payout_value | 0.040 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 137 |
author_reputation | 16,338,302,464,818 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,319,142 |
net_rshares | 52,293,672,897 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gmichelbkk | 0 | 2,794,770,055 | 9% | ||
sagarthukral | 0 | 49,498,902,842 | 100% |
@sagarthukral, I am glad this is useful for you. Thank you for commenting.
author | gmichelbkk |
---|---|
permlink | re-sagarthukral-re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180319t122551777z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["sagarthukral"],"app":"steemit/0.1"} |
created | 2018-03-19 12:25:51 |
last_update | 2018-03-19 12:25:51 |
depth | 2 |
children | 0 |
last_payout | 2018-03-26 12:25:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 74 |
author_reputation | 39,321,958,154,729 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,330,743 |
net_rshares | 0 |
Today I started my journey on steemit , this post will help me alot , guys like me those are new to steemit will surely look into this , keep up the good work lad ✌
author | shravanthakur |
---|---|
permlink | re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180321t203240646z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-03-21 20:32:42 |
last_update | 2018-03-21 20:32:42 |
depth | 1 |
children | 1 |
last_payout | 2018-03-28 20:32:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 164 |
author_reputation | 355,401,410 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,814,516 |
net_rshares | 3,041,267,528 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gmichelbkk | 0 | 3,041,267,528 | 13% |
Thank you very much @shravanthakur. Congratulations on starting blogging on Steemit.
author | gmichelbkk |
---|---|
permlink | re-shravanthakur-re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180322t001139883z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["shravanthakur"],"app":"steemit/0.1"} |
created | 2018-03-22 00:11:39 |
last_update | 2018-03-22 00:11:39 |
depth | 2 |
children | 0 |
last_payout | 2018-03-29 00:11:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 84 |
author_reputation | 39,321,958,154,729 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,842,581 |
net_rshares | 0 |
Thanks for the information.
author | teejayomonla |
---|---|
permlink | re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180319t211217659z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-03-19 21:13:51 |
last_update | 2018-03-19 21:13:51 |
depth | 1 |
children | 2 |
last_payout | 2018-03-26 21:13:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 28 |
author_reputation | 19,130,738,242 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,416,538 |
net_rshares | 2,183,591,232 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gmichelbkk | 0 | 2,183,591,232 | 7% |
My pleasure @teejayomonla.
author | gmichelbkk |
---|---|
permlink | re-teejayomonla-re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180320t003309562z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["teejayomonla"],"app":"steemit/0.1"} |
created | 2018-03-20 00:33:12 |
last_update | 2018-03-20 00:33:12 |
depth | 2 |
children | 1 |
last_payout | 2018-03-27 00:33:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 26 |
author_reputation | 39,321,958,154,729 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,441,303 |
net_rshares | 0 |
U are welcome
author | teejayomonla |
---|---|
permlink | re-gmichelbkk-re-teejayomonla-re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180320t214236478z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-03-20 21:42:42 |
last_update | 2018-03-20 21:42:42 |
depth | 3 |
children | 0 |
last_payout | 2018-03-27 21:42:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 13 |
author_reputation | 19,130,738,242 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,623,835 |
net_rshares | 1,859,793,981 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gmichelbkk | 0 | 1,859,793,981 | 8% |
Thanks for the information.
author | teejayomonla |
---|---|
permlink | re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180319t211618184z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-03-19 21:16:30 |
last_update | 2018-03-19 21:16:30 |
depth | 1 |
children | 2 |
last_payout | 2018-03-26 21:16:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 28 |
author_reputation | 19,130,738,242 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,416,876 |
net_rshares | 2,495,532,836 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gmichelbkk | 0 | 2,495,532,836 | 8% |
Thank you.
author | gmichelbkk |
---|---|
permlink | re-teejayomonla-re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180320t005014262z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-03-20 00:50:21 |
last_update | 2018-03-20 00:50:21 |
depth | 2 |
children | 1 |
last_payout | 2018-03-27 00:50:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10 |
author_reputation | 39,321,958,154,729 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,443,413 |
net_rshares | 0 |
I will be expecting more sir. Thanks
author | teejayomonla |
---|---|
permlink | re-gmichelbkk-re-teejayomonla-re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180320t214146432z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-03-20 21:41:57 |
last_update | 2018-03-20 21:41:57 |
depth | 3 |
children | 0 |
last_payout | 2018-03-27 21:41:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 36 |
author_reputation | 19,130,738,242 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,623,752 |
net_rshares | 1,859,793,981 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gmichelbkk | 0 | 1,859,793,981 | 8% |
You got 25.97% upvote | Courtesy of @gmichelbkk! Delegate [us](https://steembottracker.com/delegation.html?delegatee=thebot) Steem Power & get **97%** daily rewards share! [20 SP](https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=thebot&vesting_shares=20%20SP), [50](https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=thebot&vesting_shares=50%20SP), [75](https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=thebot&vesting_shares=75%20SP), [100](https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=thebot&vesting_shares=100%20SP), [150](https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=thebot&vesting_shares=150%20SP), [200](https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=thebot&vesting_shares=200%20SP), [300](https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=thebot&vesting_shares=300%20SP), [500](https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=thebot&vesting_shares=500%20SP), [1000](https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=thebot&vesting_shares=1000%20SP) or [Fill in any amount of SP](https://steembottracker.com/delegation.html?delegatee=thebot). Click [For details](https://steemit.com/steemit/@thebot/the-simple-way-to-earn-with-us-be-part-of-us) | [Discord server](https://discord.gg/R2caaAD)
author | thebot |
---|---|
permlink | re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180319t142416401z |
category | steemit |
json_metadata | {"app":"postpromoter/1.9.0"} |
created | 2018-03-19 14:24:18 |
last_update | 2018-03-19 14:24:18 |
depth | 1 |
children | 0 |
last_payout | 2018-03-26 14:24:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,449 |
author_reputation | 1,438,251,448,554 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,352,300 |
net_rshares | 0 |
Thank you very much, this is a great way to expose our steemit accounts and platform on more other sites or platforms. I will try this and implement this at my other site. Thank's again, a nice feature..
author | verhp11 |
---|---|
permlink | re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180319t095956029z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-03-19 09:59:57 |
last_update | 2018-03-19 09:59:57 |
depth | 1 |
children | 1 |
last_payout | 2018-03-26 09:59:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 203 |
author_reputation | 101,983,719,324,115 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,308,912 |
net_rshares | 2,794,770,055 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gmichelbkk | 0 | 2,794,770,055 | 9% |
Thank you for commenting @verhp11, and I am glad the post is useful for you.
author | gmichelbkk |
---|---|
permlink | re-verhp11-re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180319t122406519z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["verhp11"],"app":"steemit/0.1"} |
created | 2018-03-19 12:24:06 |
last_update | 2018-03-19 12:24:06 |
depth | 2 |
children | 0 |
last_payout | 2018-03-26 12:24:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 76 |
author_reputation | 39,321,958,154,729 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,330,470 |
net_rshares | 0 |
Just thought about this yesterday and today there's a post about it. Thanks you very much!
author | xinvista |
---|---|
permlink | re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180319t140222878z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-03-19 14:02:24 |
last_update | 2018-03-19 14:02:24 |
depth | 1 |
children | 1 |
last_payout | 2018-03-26 14:02:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 90 |
author_reputation | 186,383,703,131 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,348,260 |
net_rshares | 4,367,182,464 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gmichelbkk | 0 | 4,367,182,464 | 14% |
I am glad @xinvista that you saw my post at the right time.
author | gmichelbkk |
---|---|
permlink | re-xinvista-re-gmichelbkk-how-to-add-a-steemit-profile-widget-on-your-website-20180320t003516294z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["xinvista"],"app":"steemit/0.1"} |
created | 2018-03-20 00:35:21 |
last_update | 2018-03-20 00:35:21 |
depth | 2 |
children | 0 |
last_payout | 2018-03-27 00:35:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 59 |
author_reputation | 39,321,958,154,729 |
root_title | "How to Add a Steemit Profile Widget on your Website?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,441,549 |
net_rshares | 550,627,670 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
xinvista | 0 | 550,627,670 | 100% |