Hi guys just to let you know I use mysqli so I get a Fatal error: Uncaught Error: Call to undefined function mysql_real_escape_string() and a 500 error when trying to update a post
I had to make a change in the sharebar.php file on line 82 to mysqli_real_escape_string() can you update plugin to work with either mysql and mysqli otherwise I will have to make this change on every update
Many thanks
]]>Hi,
wechat is also a very popular app, would you consider adding wechat in sharebar?
Thanks,
]]>when you click the link from a mobile device does it open the associated app or does it open a new web browser and require login?
Will this work with wp v4.3.1?
]]>I can hide the bar in the footer of my site?
(“This Website is using Mobile ShareBar to display the WhatsApp Share Button on mobile devices.”)
It does it′s job, but breaks image caorusel and image view.
I am using AccessPress Magazine Theme.
Works fine with PHP 5.4, but not in CGI Mode.
If you run PHP 5.5 or higher then read this post to fix error messages.
https://www.ads-software.com/support/topic/warning-mysql_real_escape_string-access-denied-for-user-localhost?replies=9
Wirks fine
]]>you might want to blur your bit.ly account username and API key in your first screenshot.
]]>Hey together,
I tried to integrate the plugin “Mobile ShareBar” on my website. When I’m on a mobile phone the share buttons are placed on the left side though (like a sidebar). I want the share buttons to be on the bottom instead. How can I solve this problem? There’s no option choosing the left side on the screen so I’m wondering why it even shows up there.
Greetings
]]>Hi,
When I shared it on twitter or facebook. the program doesn’t show the Turkish characters “? ? ü ?” it’s showing unknown icons
how can i fix it?
]]>Tx for this great plugin!
There is any way to show the buttons (the sticky bar, without whatsapp) for users that are not in mobile, it its great to have that sticky bar in our site for desktop users when they scroll through our site!
we have tested several plugins, and the one that gives us so much shares is a plugin(im not going to paste the name so dont get conflict of interest with this plugin) that put the sticky for destktop users too!
pls if its not possible, think about considering this option, maybe a checkbox to use it across all devices, mobile and desktops too!
tx again, bruno.
]]>When Mobile Sharebar is activated, The Flexslider on our Front Page doesn’t work anymore – there is a jquery conflict:
https://www.evernote.com/l/AFbyaF8wJTdMKaseNxSnf0yLP88FhbUqgHQB/image.png
Can we solve this together?
Best regards,
Albert
]]>When Mobile Sharebar ist activated and an author tries to save or publish a post, this error message stops him from it:
Warning: mysql_real_escape_string(): Access denied for user ”@’localhost’ (using password: NO) in /wp-content/plugins/mobile-sharebar/sharebar.php on line 82
We have this plugin installed on 12 Website, all on different servers – problem occurs on at least 5 of them.
Could it be a problem with PHP 5.5?
]]>Thanks for this perfekt plugin. This is what i′m looking for.
But – if i enable the plugin, the automatic detection of the mobile theme is disabled. Visitors have to switch manually to wp touch – and the button is under the sharebar button. What can i do?
Thanks in advance, Carsten.
Auf deutsch:
wenn ich den Whatsapp button installiere, wird das mobile Theme abgeschaltet. Der Besucher muss erst extra wieder umschalten, kommt aber nicht an die Schaltfl?che, da der Whattsapp button darüber liegt. (Android)
Gibt es einen Weg, die automatische Weiterleitung zum mobilen Theme aktiviert zu lassen, trotz Button? Grü?e und Danke im voraus, Carsten
]]>Hi, I would like to know how many versions of android are supported by this plugin, please list it out. Awaiting your reply at the earliest.
]]>May I know how can I link the share button to the native apps?
I only see that the Whatsapp is link to native app but not the Facebook, Twitter, and Google+
Can you please guide?
Thanks!
]]>Hi great developers,
First i want to say thanks for the great plugin.
Im wondering if its possible to put my mobile sharebar in my responsive menu bar.
I have tried a lot of things. But I cant figure out how to do it.
Really hope you guys can help me, because the mbl-sharebar is overlapping my footer menu when the page is all scrolled down.
Thanks!
]]>Hi guys,
I have installed the plugin mobile sharebar on my site(www.fittestbody.nl). It works great, but i want to add something.
The bar is hidden when you are on top of the page and if you scroll down the bar is shown. Now I want to do exactly the same but than for the bottom, with the function bottomScroll.
I have changed something in the jquery as the documentation of jquery says, but it doesnt work. Can someone help me please? Below is the jqeury file.I have added the codes:
jQuery(‘body’).prepend(‘<div id=”mbl-sharebar” class=”sharebar-‘+_args[‘position’]+’ mbl-‘+buttonCount+’-buttons’+additionalClass+'”>’+button_fb+button_twitter+button_wa+button_google+'</div>’);
checkFontSize();
checkOrientation();
if( ((navigator.userAgent.match(/(Android)/g) || navigator.userAgent.match(/(webOS)/g) || navigator.userAgent.match(/(iPad)/g) || navigator.userAgent.match(/(iPod)/g) || navigator.userAgent.match(/(BlackBerry)/g) || navigator.userAgent.match(/(Windows Phone)/g)) && _args[‘everywhere’] == true && buttonCount > 1) || (navigator.userAgent.match(/(iPhone)/g) || navigator.userAgent.match(/(Android)/g))){
jQuery(window).bind(“scroll”, function() {
checkFontSize();
checkOrientation();
if(jQuery(‘#mbl-sharebar’).is(‘:visible’) && jQuery(window).scrollBottom() > 150){
jQuery(‘#mbl-sharebar’).show();
}else if(jQuery(window).scrollBottom() <= 150){
jQuery(‘#mbl-sharebar’).hide();
}
});
And i have defined the var bottomScroll like this:
var scrollBottom = $(document).height() – $(window).height() – $(window).scrollTop();
Am i missing something?
var shareBar = shareBar || (function(){
var _args = {};
return {
init : function(Args) {
_args = Args;
},
show : function(){
var _buttonWidth = [];
var _buttonWidthSmall = [];
var additionalClass = '';
if(_args['rtl'] == true){
additionalClass = additionalClass+' sharebar-rtl';
}
var buttonCount = 0;
var scrollBottom = $(document).height() - $(window).height() - $(window).scrollTop();
var whatsappText = _args['text'].replace(/%25URL%25/,_args['url']).replace(/(%25NL%25)/g,'%0A');
var twitterText = _args['text'].replace(/%25URL%25/,'').replace(/%25NL%25/g,' ');
var button_fb = '';
var button_twitter = '';
var button_wa = '';
var button_google = '';
if(_args['whatsapp'] == true){
if((navigator.userAgent.match(/(iPhone)/g) || navigator.userAgent.match(/(Android)/g))){
button_wa = '<a href="WhatsApp://send?text='+whatsappText+'" class="sharebar-button sharebar-whatsapp"><div>'+_args['share_wa']+'</div></a>';
buttonCount = buttonCount+1;
}
}
if(_args['google'] == true){
button_google = '<a href="https://www.linkedin.com/shareArticle?mini=true&url='+_args['url']+'" target="_blank" class="sharebar-button sharebar-google"><div>'+_args['share_g']+'</div></a>';
buttonCount = buttonCount+1;
}
if(_args['facebook'] == true){
button_fb = '<a href="https://www.facebook.com/sharer/sharer.php?u='+_args['url']+'" target="_blank" class="sharebar-button sharebar-facebook"><div>'+_args['share_fb']+'</div></a>';
buttonCount = buttonCount+1;
}
if(_args['twitter'] == true){
button_twitter = '<a href="https://twitter.com/intent/tweet?url='+_args['url']+'&text='+twitterText+'" target="_blank" class="sharebar-button sharebar-twitter"><div>'+_args['share_tw']+'</div></a>';
buttonCount = buttonCount+1;
}
if(_args['position'] != 'top' && _args['position'] != 'bottom'){_args['position'] = 'top';}
jQuery('body').prepend('<div id="mbl-sharebar" class="sharebar-'+_args['position']+' mbl-'+buttonCount+'-buttons'+additionalClass+'">'+button_fb+button_twitter+button_wa+button_google+'</div>');
checkFontSize();
checkOrientation();
if( ((navigator.userAgent.match(/(Android)/g) || navigator.userAgent.match(/(webOS)/g) || navigator.userAgent.match(/(iPad)/g) || navigator.userAgent.match(/(iPod)/g) || navigator.userAgent.match(/(BlackBerry)/g) || navigator.userAgent.match(/(Windows Phone)/g)) && _args['everywhere'] == true && buttonCount > 1) || (navigator.userAgent.match(/(iPhone)/g) || navigator.userAgent.match(/(Android)/g))){
jQuery(window).bind("scroll", function() {
checkFontSize();
checkOrientation();
if(jQuery('#mbl-sharebar').is(':hidden') && jQuery(window).scrollTop() > 150){
jQuery('#mbl-sharebar').show();
}else if(jQuery(window).scrollTop() <= 150){
jQuery('#mbl-sharebar').hide();
}
});
if(_args['position'] != 'top' && _args['position'] != 'bottom'){_args['position'] = 'top';}
jQuery('body').prepend('<div id="mbl-sharebar" class="sharebar-'+_args['position']+' mbl-'+buttonCount+'-buttons'+additionalClass+'">'+button_fb+button_twitter+button_wa+button_google+'</div>');
checkFontSize();
checkOrientation();
if( ((navigator.userAgent.match(/(Android)/g) || navigator.userAgent.match(/(webOS)/g) || navigator.userAgent.match(/(iPad)/g) || navigator.userAgent.match(/(iPod)/g) || navigator.userAgent.match(/(BlackBerry)/g) || navigator.userAgent.match(/(Windows Phone)/g)) && _args['everywhere'] == true && buttonCount > 1) || (navigator.userAgent.match(/(iPhone)/g) || navigator.userAgent.match(/(Android)/g))){
jQuery(window).bind("scroll", function() {
checkFontSize();
checkOrientation();
if(jQuery('#mbl-sharebar').is(':visible') && jQuery(window).scrollBottom() > 150){
jQuery('#mbl-sharebar').show();
}else if(jQuery(window).scrollBottom() <= 150){
jQuery('#mbl-sharebar').hide();
}
});
jQuery(window).bind("resize", function(){
checkFontSize();
checkOrientation();
});
jQuery(window).bind('orientationchange', function() {
checkFontSize();
checkOrientation();
});
jQuery('#mbl-sharebar .sharebar-button').each(function(index){
});
}
function checkFontSize(){
var fontSize = (Math.floor(jQuery(window).width()/2*700/10000));
if(fontSize > 25){
fontSize = 25;
}
jQuery('#mbl-sharebar .sharebar-button').css({'font-size':fontSize+'px'});
}
function checkOrientation(){
jQuery('#mbl-sharebar').hide().removeClass('sharebar-landscape');
jQuery('#mbl-sharebar').css({'margin-top':'0px','margin-bottom':'0px'});
jQuery('#mbl-sharebar.sharebar-top').css({'top':'0px'});
jQuery('#mbl-sharebar.sharebar-bottom').css({'bottom':'0px'});
if(window.orientation != 0){
jQuery('#mbl-sharebar').addClass('sharebar-landscape');
jQuery('#mbl-sharebar.sharebar-top').css({'margin-top':(jQuery('#mbl-sharebar.sharebar-top').height()/-2)+'px'});
jQuery('#mbl-sharebar.sharebar-bottom').css({'margin-bottom':(jQuery('#mbl-sharebar.sharebar-bottom').height()/-2)+'px'});
}
if(jQuery('#mbl-sharebar').is(':hidden') && jQuery(window).scrollTop() > 150){
if( ((navigator.userAgent.match(/(Android)/g) || navigator.userAgent.match(/(webOS)/g) || navigator.userAgent.match(/(iPad)/g) || navigator.userAgent.match(/(iPod)/g) || navigator.userAgent.match(/(BlackBerry)/g) || navigator.userAgent.match(/(Windows Phone)/g)) && _args['everywhere'] == true && buttonCount > 1) || (navigator.userAgent.match(/(iPhone)/g) || navigator.userAgent.match(/(Android)/g))){
jQuery('#mbl-sharebar').show();
}
}
}
}
};
}());
]]>
Hi,
Mobile Sharebar causes an java script error with the Aesop Story Engine plugin. The guys cant resolve it. Please have a look at the discussion here, maybe you can help: https://www.ads-software.com/support/topic/ase-conflict-with-plugin-mobile-sharebar?replies=5
Best
Markus
Great plugin, however… it doesn’t show up at all…
I read all the previous post and most likely that there is a caching / plugin issue …
However, this similar plugin does show up with the same configuration.
https://www.ads-software.com/plugins/kn-mobile-sharebar/
I prefer to use yours, what is the difference?
Thanks!
Margje
]]>Please rename your functions to more Unique Names. When Using Woo Themes, activating your Plugin creates an fatal error:
Fatal error: Cannot redeclare make_bitly_url() (previously declared in /themes/canvas/functions/admin-functions.php:1387) in /wp-content/plugins/mobile-sharebar/sharebar.php on line 133
]]>By Default this is display none then how to show share options
]]>Hi, Is it possible to change “timing” for show up buttons? I want to show share buttons just after little scroll..
Sorry for my english
]]>Hi,
I am using the old share bar design and my footer links for Privacy Policy and Terms of Service are hidden by the share bar.
How can I fix this?
]]>Hi,
The PHP log of my server is filled with the following error:
[20-Jan-2015 11:02:14 UTC] PHP Warning: mysql_real_escape_string(): A link to the server Could not be established in / … /wp-content/plugins/mobile-sharebar/sharebar.php online 82
How can it be solved?
Thank You.
]]>Hello,
Is it possible to turn off social buttons for tablets like iPad?
Thanks,
Denis.
I have a template that has infinite scrolling, which is being interfered with this plugin.
]]>Hi,
I came across a bug where newline %NL% appears as %0A in WhatsApp on chrome mobile browser version 39. There is no problem with WhatsApp.
I have tested this in android chrome beta v40 and this problem does not exist on it.
Upon some searching in the chromium issues I found this issue which was already reported.
https://code.google.com/p/chromium/issues/detail?id=424889
From there it seems that it was working in v37.
Here is the link to the patch which replaces %NL% with %20% (space) instead of %0A (newline) only for chrome version 38 and 39 in sharebar.js
https://gist.github.com/pratham2003/d79f1cb53e23d4aba0af/revisions
I have only tested this on WhatsApp.
]]>Hello,
After I activated the plugin and cleaned the cache the plugin didn’t work. Here are screenshots:
https://gyazo.com/2c71f03b94dabbd3e96ec2b15a2268c0
https://gyazo.com/860fa6d1cf0ba4378b06eaaaa439f0c2
The web site is freesmi.by
Can you please let me know what should I do to make the plugin work?
Thanks,
Denis.
Wow, this seems to be a great plugin.
I have one question though: could I load the .js file in the footer? That’s where my jquery gets called.
Thanks in advance!
]]>I saw on some sites there is an option to share via email. If you have Gmail installed like I do it takes you straight to the app, the title of the post that was shared is in the subject and the link is in the content. I think it will make a great addition to the mobile sharebar.
When I click on the email button it brings up 2 options, send mail directly from the phone or Gmail. If you have other mails I am assuming it will bring them up to.
]]>