Search Results for 'facebook share text'

    No search results were found in Documentation!

Results from the Forum
iarhip
tagDiv Member

в общем решил так с OK.ru
взял сеть behance и поменял к ней настройки
class td_social_icons {
static $td_social_icons_array = array(
‘behance’ => ‘ok’,
‘blogger’ => ‘Blogger’,
‘delicious’ => ‘Delicious’,
‘deviantart’ => ‘Deviantart’,
‘digg’ => ‘Digg’,
‘dribbble’ => ‘Dribbble’,
‘evernote’ => ‘Evernote’,
facebook’ => ‘Facebook’,
‘flickr’ => ‘Flickr’,
‘forrst’ => ‘Forrst’,
‘googleplus’ => ‘Google+’,
‘grooveshark’ => ‘Grooveshark’,
‘instagram’ => ‘Instagram’,
‘lastfm’ => ‘Lastfm’,
‘linkedin’ => ‘Linkedin’,
‘mail-1’ => ‘Mail’,
‘myspace’ => ‘Myspace’,
‘path’ => ‘Path’,
‘paypal’ => ‘Paypal’,
‘pinterest’ => ‘Pinterest’,
‘reddit’ => ‘Reddit’,
‘rss’ => ‘RSS’,
share’ => ‘Share’,
‘skype’ => ‘Skype’,
‘soundcloud’ => ‘Soundcloud’,
‘spotify’ => ‘Spotify’,
‘stackoverflow’ => ‘Stackoverflow’,
‘steam’ => ‘Steam’,
‘stumbleupon’ => ‘StumbleUpon’,
‘tumblr’ => ‘Tumblr’,
‘twitter’ => ‘Twitter’,
‘vimeo’ => ‘Vimeo’,
‘vk’ => ‘VKontakte’,
‘windows’ => ‘Windows’,
‘wordpress’ => ‘WordPress’,
‘yahoo’ => ‘Yahoo’,
‘youtube’ => ‘Youtube’
);

/* подставил как иконку для ОК.ру так как у шаблона нет ее */
.td-icon-behance:before {
content: ‘\OK’;
font-weight: bold;
color: #F58220;
font-weight: 900;
text-transform: uppercase;
font-family: ‘Open Sans’, arial, sans-serif;

}

majorfuss
Participant
#0

Hi,

On a post using Style 1, the social buttons under the headline, is it possible to delete the “Share on Facebook”, “Tweet on Twitter” text so just the icons only appear?

The social buttons at the bottom of the article, is it possible to delete the “Facebook” and “Twitter” text so just the icons only appear?

Is it also possible for the bottom share box to say “SHARE THIS STORY” instead of “SHARE”?

And can I change “LEAVE A REPLY” to “LEAVE A COMMENT” above the comment box?

Many thanks for your help.

biznizat
tagDiv Member

Hello

To every one searching for a way to add share buttons on pages here is how i did it with out plugin :
1 go to function.php in your theme root( better use child theme so you dont lose modifications when updating) :
2- add the following code :

/* ----------------------------------------------------------------------------*/
// Share buttons on pages' bottom
// PS: no-follow tag was added to external links

function tagdiv_social_buttons($content) {
global $post;
$permalink = get_permalink($post->ID);
$title = get_the_title();
//don't show buttons on frontpage and other pages id
if( !is_front_page() && !is_page(array( 1, 2,3,4,5,6 )) && $post->post_type=='page' ) {
$content = $content . '<div class="td-post-sharing td-post-sharing-top tagdiv-share">

<a class="td-social-sharing-buttons td-social-facebook" rel="nofollow"
href="https://www.facebook.com/sharer.php?u=' . urlencode( esc_url( get_permalink() ) ) . '"
onclick="window.open(this.href, \'mywin\',\'left=50,top=50,width=600,height=350,toolbar=0\'); return false;">
<i class="td-icon-facebook"></i><div class="td-social-but-text">share on facebook</div>

<a class="td-social-sharing-buttons td-social-twitter" rel="nofollow" href="http://twitter.com/share?text='.$title.'&url='.$permalink.'"
onclick="window.open(this.href, \'twitter-share\', \'width=550,height=235\');return false;">
<i class="td-icon-twitter"></i><div class="td-social-but-text">share on twitter</div>

<a class="td-social-sharing-buttons td-social-google tagdiv-google" rel="nofollow" href="https://plus.google.com/share?url=' . esc_url( get_permalink() ) . '"
onclick="window.open(this.href, \'mywin\',\'left=50,top=50,width=600,height=350,toolbar=0\'); return false;">
<i class="td-icon-googleplus"></i><div class="td-social-but-text tagdiv-google-border">share on google</div>

</div>';
}
return $content;

}
add_filter('the_content', 'tagdiv_social_buttons');
// use short code [tagdivsocial] to show buttons where ever you need
add_shortcode('tagdivsocial', 'tagdiv_social_buttons');
`

3 then add the following css to theme panel of your style.css file:

<code>
.tagdiv-share {
     margin: 21px auto;
    text-align: center;
        font-family: 'Droid Arabic Kufi', arial, sans-serif !important;
}
.tagdiv-google{
    
    width: 160px !important;
}
.tagdiv-google-border{
        border-right: 1px solid rgba(255, 255, 255, 0.2);
}
</code>

and every thing is working fine
hope this help any one looking.

  • This reply was modified 8 years by biznizat. Reason: FIXING
Luptern
Participant
#0

When I try to share a post any social media accounts by clicking on the social icon above my post the post, its sharing with default text in front of the text in the post.

“CategoriesNews test post March 16, 2017 O Share on Facebook Tweet on Twitter Want create site?

Disabling all plugins isn’t really an option here, anything else I can do?

ice
Participant
#0

I have turn on the POST SETTINGS>TOP ARTICLE SHARING and I’m seeing Asian characters in the Facebook and Twitter Share.

See http://www.usairnet.com/2017/07/25/zapata-flyboard/1004978/ (Look below the title and date)

My language is set to English-US. I have the latest version installed. I have checked the page from different browsers and different platforms.

The Asian characters unexpectedly showed up.

How do I get all English characters in my social feed share/like.

polys_a
Participant
#0

Hello

I just change socialista.com.cy template to Newspaper latest version.

The site is using Next Scripts: Social Networks Auto Poster to auto share to several facebook groups an twitter. This plugin was working on the old template but now with Newspaper I get an error on Images. It seems it uses a hotlink protection on images.

This is the additions to .htaccess file after enabling the Newspaper Template:

# BEGIN Expire headers
<ifModule mod_expires.c>
ExpiresActive On
ExpiresDefault "access plus 5 seconds"
ExpiresByType image/x-icon "access plus 604800 seconds"
ExpiresByType image/jpeg "access plus 604800 seconds"
ExpiresByType image/png "access plus 604800 seconds"
ExpiresByType image/gif "access plus 604800 seconds"
ExpiresByType application/x-shockwave-flash "access plus 604800 seconds"
ExpiresByType text/css "access plus 604800 seconds"
ExpiresByType text/javascript "access plus 604800 seconds"
ExpiresByType application/javascript "access plus 604800 seconds"
ExpiresByType application/x-javascript "access plus 604800 seconds"
ExpiresByType font/truetype "access plus 604800 seconds"
ExpiresByType font/opentype "access plus 604800 seconds"
ExpiresByType application/x-font-woff "access plus 604800 seconds"
ExpiresByType image/svg+xml "access plus 604800 seconds"
ExpiresByType application/vnd.ms-fontobject "access plus 604800 seconds"
ExpiresByType text/html "access plus 600 seconds"
ExpiresByType application/xhtml+xml "access plus 600 seconds"
</ifModule>
# END Expire headers

<IfModule mod_deflate.c>
<filesMatch "\.(js|css|woff|html|php)$">
SetOutputFilter DEFLATE
</filesMatch>
</IfModule>

Can someone help to solve this issue?

Thakksy
Participant
#0

Hi,

I’m trying to implement the following code into single_template_2 to replace the original Newspaper theme top share section. I know where to put the code but when I place it the right sidebar pushes down, unlike the original theme share buttons. Any help would be great.

<?php echo do_shortcode('[easy-social-share buttons="facebook,pinterest,twitter,reddit,more,google,linkedin,stumbleupon" morebutton="1" counters=1 counter_pos="insidename" total_counter_pos="hidden" style="button" twitter_user="cruisehive" twitter_hashtags="#Cruise #Travel" hide_mobile="yes" point_type="simple" facebook_text="SHARE" twitter_text="TWEET" google_text="-" pinterest_text="PIN" linkedin_text="-" stumbleupon_text="-" reddit_text="-"]'); ?>

You can see the difference in the images below:

Before using Newspaper share buttons, look at the sidebar as it’s in correct position – https://photos.app.goo.gl/Oh0RxIVL992Kt1ft2

After adding the Easy social share code, sidebar gets pushed down which I don’t want – https://photos.app.goo.gl/y8qI4Wmp7RN0zY7y1

juliew
Participant
#0

Hi, I’m having a problem sharing posts to Facebook.

Instead of just sharing the title, image and post content, it also shares the author info, date, and the text ‘share on Facebook tweet on Twitter’ is all being included in the shared post.

What can I do to fix this? Thanks

hanakousuke
tagDiv Member

Thank you for your reply.
I want to hide the SNS button displayed by <div class = “vc_toggle_content”>.
It is CSS below.

<div class=’wp_social_bookmarking_light’>
<div class=”wsbl_twitter”>Tweet</div>
<div class=”wsbl_facebook_like”>
<div id=”fb-root”></div>
<p><fb:like href=”http://www.fighters-spirits.com/magazine/archives/3051&#8243; layout=”button_count” action=”like” width=”100″ share=”false” show_faces=”false” ></fb:like></div>
<div class=”wsbl_facebook_share”>
<div id=”fb-root”></div>
<p><fb:share-button href=”http://www.fighters-spirits.com/magazine/archives/3051&#8243; type=”button_count” ></fb:share-button></div>
<div class=”wsbl_hatena_button”> このエントリーをはてなブックマークに追加<script type=”text/javascript” src=”//b.hatena.ne.jp/js/bookmark_button.js” charset=”utf-8″ async=”async”></script></div>
<div class=”wsbl_line”>LINEで送る</div>
<div class=”wsbl_google_plus_one”><g:plusone size=”medium” annotation=”none” href=”http://www.fighters-spirits.com/magazine/archives/3051&#8243; ></g:plusone></div>
<div class=”wsbl_pocket”>Pocket<script type=”text/javascript”>!function(d,i){if(!d.getElementById(i)){var j=d.createElement(“script”);j.id=i;j.src=”https://widgets.getpocket.com/v1/j/btn.js?v=1&#8243;;var w=d.getElementById(i);d.body.appendChild(j);}}(document,”pocket-btn-js”);</script></div>
</div>
<p><br class=’wp_social_bookmarking_light_clear’ /></p>
</div>

Thanks!

Sebastian Escobar
Participant
#0

Hello
I want the text that string along with the image when you share in Facebook does not include the name of the author, nor the date, nor the text of other social networks. I want only the title and a summary of the text to appear. It’s possible?
I have read that the file would be td_module_single.php, but I do not know what I can modify there.
Screenshot view sharing with facebook

bformhals
tagDiv Member

That is correct. These social sharing icons are from JetPack. Jetpack is used by many users. Here is how to make the JetPack sharing icons look nice and neat with this theme.You can add whatever buttons or social media sharing you use, change colors etc.

Instead of looking like above they will not look like this —

View post on imgur.com

Place Code in – Appearance/Edit CSS

/* JetPack Social Buttons */

div.sharedaddy div.sd-block {
border-top: 1px solid rgba(0,0,0,0.13);
border-top-width: 1px;
border-top-style: solid;
border-top-color: rgba(0,0,0,0.13);
padding: 0;
}

.single-format-quote div.sharedaddy div.sd-block {
display: none;
}

div.sharedaddy .sd-content {
float: left;
margin-top: 10px;
margin-top: 1rem;
margin-bottom: 10px;
}

div.sharedaddy a.sd-button {
border: none !important;
box-shadow: none;
}

.sd-social-icon-text a.sd-button > span, a.sd-button > span {
opacity: 1;
padding: 4px 10px;
padding: .4rem 1rem;
}

li.share-facebook a.sd-button > span,
li.share-google-plus-1 a.sd-button > span,
li.share-tumblr a.sd-button > span,
li.share-pinterest a.sd-button > span,
li.share-twitter a.sd-button > span,
li.share-pocket a.sd-button > span {
border: none;
color: #fff;
font-family: ‘verdana’, arial;
font-size: 6px;
font-size: .6rem;
font-weight: 300;
letter-spacing: 0;
text-transform: uppercase;
}

li.share-facebook a.sd-button > span {
background: #4965a0;
}

li.share-facebook a.sd-button:hover > span {
background: #1e73be;
}

li.share-twitter a.sd-button > span {
background: #55ACEE;
}

li.share-twitter a.sd-button:hover > span {
background: #1e73be;
}

li.share-google-plus-1 a.sd-button > span {
background: #dd4b39;
}

li.share-google-plus-1 a.sd-button:hover > span {
background: #1e73be;
}

li.share-tumblr a.sd-button > span {
background: #35465D;
}

li.share-tumblr a.sd-button:hover > span {
background: #1e73be;
}

li.share-pocket a.sd-button > span {
background: #F15367;
}

li.share-pocket a.sd-button:hover > span {
background: #1e73be
}

li.share-pinterest a.sd-button > span {
background: #D5222A;
}

li.share-pinterest a.sd-button:hover > span {
background: #1e73be;
}

.sd-content .sd-button span.share-count {
color: #fff !important;
font-size: 100% !important;
}

.sd-button span.share-count { /* Disable Counters */
display: none;
}

div.sharedaddy h3 {
font-size: 20px !important;
font-family: ‘Helvetica Neue’, Helvetica, Arial, sans-serif;
text-transform: none;
letter-spacing: 0;
line-height: 1;
font-weight: bold;
}

  • This reply was modified 9 years by bformhals.
nkodgh
Participant
#0

Hello,

Please how do I change the share buttons for Facebook and Twitter to read as “Share” and “Tweet” respectively instead of just displaying as “Facebook” and “Twitter”.

Thanks in advance.

MamasLT
Participant
#0

Hi there. I just tried to share my websites (home page) on FB and I noticed that it keeps adding this strange text (u8x7co8) on the post: http://i66.tinypic.com/123s4s9.jpg
Any ideas how to remove it?

smartphile
tagDiv Member

I also want to remove the google, twitter pinterest icons. I added the code you mentioned into the CSS through the theme panel, but it is still shown.

Also I want to remove the text from the facebook like and share tweet button and add a whatsapp and instagram button.

How to do this?

Post: https://snag.gy/xqAGLi.jpg
CSS:https://snag.gy/iKAr4v.jpg

Simion C.
tagDiv Staff

Hi,

I do not know where that text originates from, maybe a plugin could be causing this or you are using a different version of Visual composer then the one provided with the theme. The text seems to be inside your post content – https://www.screencast.com/t/Ot3SoleZLIq where also a link to a website is present, and it is present in all your posts. I suggest you try to disable all your plugins except Visual composer, clear any caching installed and check to see if the problem remains. Also please check this guide for more information about configuring Facebook sharehttps://forum.tagdiv.com/facebook-share/ using the Yoast Seo plugin – https://yoast.com/social-media-optimization-with-yoast-seo/

Thanks

Heather
Participant
#0

Hi there: When I try to share a post i’ve created to any social media accounts by clicking on the social icon above my post the post is sharing with default text in front of the text in the post.
For example, I created a test post in my News category that said ‘test post this is a test’ and here is what i see on FB when it is shared: “CategoriesNews test post March 16, 2017 O Share on Facebook Tweet on Twitter Want create site? Find Free WordPress Themes and plugins test post this is a test Did you find APK for Android? You can find new Free Android Games and apps. SHARE Facebook Twitter tweet Previous article”
I hired a guy to create my website and he can’t figure this out. Can anyone help please?

vortihk
tagDiv Member

Ok, got it.
But new problem detected.:)))
When i use awesome icons on site, they obtained very small size.
They have size of which is proportional to size of text in menu. (main menu of my website)
On awesome website i see instruction “how increase size of icons”, but when i add “fa-2x
” or another stuff to code – nothing change. But if i increase size of text on my website – icons get bigger.
How i can increase only size of icons, without increasing size of text?

And one more question.
How i can edit social share box? For example, i need only twitter, facebook and add some socials, like “vkontakte” or another. And i need same boxes on desktop and on mobile (now they different). Where (or how) i can set it?

Thanks for helping!!! Very much!
And sorry for my bad english.

vijay_pathania
tagDiv Member

I have use the debugger and get the result once. I need to use debugger again and again to scrape the information for new posts. This is very annoying task. I found that your code should pass the missing information so that Facebook scrape the information. Here is the text from the debugger window:

Warnings That Should Be Fixed

Inferred Property
The ‘og:url’ property should be explicitly provided, even if a value can be inferred from other tags.
Inferred Property
The ‘og:title’ property should be explicitly provided, even if a value can be inferred from other tags.
Inferred Property
The ‘og:image’ property should be explicitly provided, even if a value can be inferred from other tags.
Share App ID Missing
The ‘fb:app_id’ property should be explicitly provided, Specify the app ID so that stories shared to Facebook will be properly attributed to the app. Alternatively, app_id can be set in url when open the share dialog.
Inferred Property
The ‘og:image’ property should be explicitly provided, even if a value can be inferred from other tags.

Please help to resolve this issue. As your theme is creating meta tags for sharing content.

Thanks and Regards,
Sachin Guleria

NB221
Participant
#0

I have been banging my head against the wall trying to solve this issue, but can’t find a way so I am hoping that someone may be able to help.

There is a major problem with the way the theme displays in Facebook mobile browser, which effects any visitors from Facebook post/shares on a mobile device as they load in their own browser by default (and apparently you can’t do anything about that).

The logo, header and menu are not loading properly at all. e.g. if you have a white background header on desktop and your logo/text is black and you want to reverse this on mobile (black background and white logo/text) for some reason it picks up the logo (white) but then seems to load the background as if the browser was desktop (white) making it completely invisible. Plus it seems to be loading the responsive theme rather than the mobile theme (but even that theme doesn’t work right).

I figure it is something to do with the way the theme detects the browser so not a massive deal.

I know this has been bought up several times in the past (even months ago) on this forum and the response has always been that the theme hasn’t been tested with the Facebook mobile browser, but it seems illogical to me that, because of the way the web has moved so much towards mobile and the fact that a huge amount of traffic to most websites is from social sharing that this is not a massive priority.

I mean it should be a deal breaker for almost anyone considering installing this theme if they care at all about how their visitors view their site, so could hit the company’s bottom line in a big way if it isn’t addressed asap.

Does anyone know of a workaround?

RubenDelaCalle
Participant
#0

When I post a post and share it on Facebook, the whole text appears. I just want the title and link to be published.

Example of my page: https://m.facebook.com/story.php?story_fbid=1906152372950551&id=1898319363733852

Thanks

JANG JOO YOUNG
Participant
#0

Hello.I’m contacting you because I have an inquiry. When I share my writing on Facebook, I hope it will be a neat screen.

Well, if I share the text, the picture on the thumbnail comes out. but, meta tag is messy.

I want to correct the simple post(same like cnn news site) on the Facebook page, like the red squares shown in the ‘attached photo1’ https://goo.gl/13j2uh
Now, my screen is messy with Twitter, Facebook and other screen screens. like the red and green squares shown in the ‘attached photo2’ https://goo.gl/6Tkajb

Although you may be busy, you will be greatly helpful if you ask me. Thank you very much.

brandonparamo
Participant
#0

Hi, i need to hide the text next to Facebook and Twitter icons so i can have round buttons as i did with Pinterest and Google+. What’s the code/css i need to do this? I’ve been looking with inspector but i can’t seem to get it to hide permanently.

See screenshot: https://www.dropbox.com/s/ysu3qq15hqevfkz/Screenshot%202016-12-06%2010.56.50.png?dl=0

aro_007
Participant
#0

Hi,

When I go to share an article via the Facebook button, it’s not pulling in any of the info specific to that article. How do I fix this?

Amanda

Dan18392
Participant
#0

When I share a post on Facebook from my Magazine website, it automatically includes includes the name of the category, then the name of the article (for the SECOND time), and then the date every time I share on Facebook. Is there anyway to eliminate one or any of those things so it just shows the name of the article and the beginning of the text? Having all those other things looks very unprofessional.

Thanks,
Dan

elocuent
tagDiv Member

UPDATE: Followinf previous advice from developers in the site we deactivated Ypast FB admin, and still the problem persists (no share posible or only shares links as text without image or text).

When using the tester https://developers.facebook.com/tools/debug/og/object/

we get this error “Warnings That Should Be Fixed
Meta with name instead of property The meta tag on the page was specified with name ‘author’, which matches a configured property of this object type. It will be ignored unless specified with the meta property attribute instead of the meta name attribute.”

But is seems to scrape text and image all right. But still no way to share

Thanks

Viewing 25 results - 51 through 75 (of 138 total)