Gabpay

Gab is becoming an influential  social media and alternative PayPal payment processor. Software is complete and functional they are just waiting for the legal process to put it on line.

I hope UNA takes a look at adding them as a payment processor. There are conservative sites and social media companies that are constantly being banded from using Paypal, Visa, MC, Stripe etc.. When we reach a effective outreach we will become another one. I have read several references from UNA's staff that indicates they strive to be independent of large corporations  who wish to shut down free speech by canceling site hosting to monetizing. 

I requested maybe 4 months ago to add sharing to gab platform and even-though they included a way to create (VS 12.1.0) sharing) using other platforms sharing URL, Gab does not have one. Instead they have a script that adds a sharing button on the site, but not sure if it can be integrated to show up on every type of post.

If any one knows how to use the script below please let me know.

HTML/CSS code to provide a link to Gab from your web site:

<html>
<head>
<title>Share Button Testing Page</title>
<meta name="description" content="The Gab Social share button demo and testing page.">
</head>
<body>
<style type="text/css">
a.gab-share-btn {
display: inline-block;
padding: 8px 12px;
background: #00d178;
color: ;
border: solid 1px transparent;
border-radius: 8px;
font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
text-decoration: none;
font-weight: bold;
font-size: inherit;
cursor: pointer;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
a.gab-share-btn:hover {
border-color: black;
}
a.gab-share-btn:active {
border-color: ;
background: #01854b;
box-shadow: 0 0 4px rgba(0,0,0,0.2) inset;
}
</style>
<a
id="gab-share-btn"
class="gab-share-btn"
title="Share to Gab"
target="_blank"
>Share to Gab</a>
<script>
(async function ( ) {
const button = document.getElementById('gab-share-btn');
const title = document.querySelector('head title');
if (!title) { button.setAttribute('hidden', true); }
let description = document.querySelector('head meta[name="description"]');
let text = title.textContent + '\n';
if (description) { text += description.getAttribute('content') + '\n\n'; }
button.setAttribute('href', `https://gab.com/compose?url=${encodeURIComponent(window.location.href)}&text=${encodeURIComponent(text)}`);
})();
</script>
</body>
</html>

  • 2107
  • More
Replies (1)
    Login or Join to comment.