Perials
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Social Share] updated but no pinterestHi scotthendrix7755,
Thanks for providing the link.
We checked the website. The pinterest button is working fine. Please see the screenshot on below link.
http://perials.com/temp/sports-ad-visor-pinterest.jpgIn case the issue is something else please let us know.
Regards,
Perials Team.Forum: Plugins
In reply to: [Simple Social Share] updated but no pinterestHi scotthendrix7755,
Very thanks for using this plugin.
Please deactivate and then once again activate the plugin. You should see an option for Pinterest in Settings page of the plugin.
Let us know if this solves the issue.
Regards,
Perials Team.Forum: Plugins
In reply to: [Simple Social Share] Adding twitter handleDear sjebner,
Thanks for using our plugin.
For adding the twitter handle you will have to make some changes in the plugin’s PHP files. Please read on.
Open the file small-buttons.php (located in wp-content/plugins/simple-social-share/includes). Go to line number 8 which should look like below
<a href="https://twitter.com/share" class="twitter-share-button" data-count="none">Tweet</a>Suppose your twitter username is
xyzthen adddata-via="xyz"beforedata-count="none"in above line with space in between two. So after addition line number 8 should look like<a href="https://twitter.com/share" class="twitter-share-button" data-via="xyz" data-count="none">Tweet</a>Let us know if this works or not.
Thanks & Regards,
Perials Team.Forum: Plugins
In reply to: [Simple Social Share] Disable plug on a single pageDear mp2mp2,
Thanks for using our plugin.
Add the following code into the plugins style.css (located in wp-content/plugins/simple-social-share/css/style.css)
#s-share-buttons{ clear:both; }For creating three columns layout you have added a
float:leftCSS property which hasn’t been cleared (usually done by adding a div having CSS propertyclear:both). That is creating the issue.Hope this works.
Thanks & Regards,
Perials Team.Forum: Plugins
In reply to: [Simple Social Share] Code on my contact pageDear Cvdijk,
Thanks for using our plugin.
Looks like your theme or one of the plugin is adding html characters in the title of the page which is causing the issue.
Open the file ‘template-buttons-w-c.php’ (located in wp-content/plugins/simple-social-share/includes) and replace all instances of
get_the_title()
with
strip_tags(get_the_title())This should hopefully solve your problem.
Thanks & Regards,
Perials Team.Forum: Reviews
In reply to: [Simple Social Share] Mac OS browsing experienceDear voldby,
If you have selected any button style option apart from the first two in setting page, then ideally there shouldn’t be any page lag. Reason being the buttons are generated without using Javascript which we assumed was slowing your site. Further for three social networks the page loading time should be very less even for buttons with share count.
Anyways, we would surely request you to try our plugin once again in the future for any of your other sites. Please feel free to ask a question on the plugin’s support forum in case you have any issues.
Thanking you once again for giving our plugin a try and for replying back to us.
Perials Team.Forum: Reviews
In reply to: [Simple Social Share] Mac OS browsing experienceHi voldby,
Thanks for trying out our plugin.
Regarding the page loading issue, if you have selected the button style that shows share count, then page will surely take some time to load. For each social service that you have selected in the plugin’s settings page, the plugin will add corresponding javascript code that will increase page load time. If you select any other button style apart from the one that shows share count we are sure you won’t have any issues.
But since you have mentioned explicitly ‘Safari’ and ‘Firefox’, we would request you to provide your website url so that we can look into it. If the bug is from our end, we’ll surely get it corrected.
Thanks & Regards,
Perials Team.Forum: Plugins
In reply to: [Simple Social Share] Numbers filled in — even on new postsHi,
Thanks for sharing the url. You have a very nice colorful and informative website.
Now coming back to the issue, the share count for twitter(718) and Google plus(18) that you see on your home page is actually the share count for your home page(http://www.houstononthecheap.com/) and not the individual post. If you visit any of the individual posts you will find the share count different. Say for example if you visit the post ‘Free Houston zoo after 2 pm’ (http://www.houstononthecheap.com/free-houston-zoo-free-lego-build) you will find the share count is 27 and 3 for twitter and Google plus resp.
As for now now the plugin can’t show the share count for individual posts on listing page. By default it will show the share count for the url of the page being viewed.
We’ll surely try to fix this in forthcoming version of the plugin.
Thanks & Regards,
Perials Team.Forum: Plugins
In reply to: [Simple Social Share] Numbers filled in — even on new postsHi,
Thanks for using our plugin.
The share count for a new post should always be 0 unless and until the permalink(url) of the post has already been shared. Can you share the post url for which this issue is happening so that we can look into it.
Regards,
Perials Team.Forum: Plugins
In reply to: [Simple Social Share] Open in a WindeoDear Darick,
Thanks for using our plugin.
As of for now there is no setting in the plugin to open button links in a popup window instead of new tab. Still you can add the following code to the plugin to force the button links open in a new small window
add_action('wp_head','s3_open_in_new_window'); function s3_open_in_new_window() { ?> <script> jQuery(document).ready(function($){ $("#s-share-buttons>a").click(function(){ var myWindow = window.open($(this).attr('href'), "name", "width=450, height=400"); return false; }); }); </script> <?php }The above code will go into ‘simple-social-share.php’ right before the very last line of the code (i.e before ?> on line 188 and after ‘new simple_social_share;’ on line 187).
Let us know if this works.
Thanks & Regards,
Perials Team.Forum: Plugins
In reply to: [Simple Social Share] share buttons on home postsDear dumindu,
Thanks for using our plugin.
There is an option in the Settings Page(Dashboad->Settings->Simple Social Share) of the plugin for displaying share buttons on home page below each post.
In the plugins setting page, in ‘Show on’ section check the checkbox for ‘Home Page’. Also make sure that you have checked at least one option in ‘Select Position’ section.Let us know if this works for you.
Thanks & Regards,
Perials Team.Forum: Plugins
In reply to: [Simple Social Share] WarningsDear f.macdonald,
Kindly download the plugin once again and replace your old files with the new ones. This bug was there in the previous code of the plugin. Few days ago we have updated some of the plugin files. Since we are very close to releasing a modified version 2 of our plugin we didn’t update the version number.
If the problem persists even with the new files, then let us know.
Thanks & Regards,
Perials Team.Forum: Plugins
In reply to: [Simple Social Share] Tumblr ButtonDear Kevin,
The code that we posted is the most recent one. The code that you mentioned is also correct.
On the Tumblr button generator page (http://www.tumblr.com/buttons) click on the ‘advanced’ link just above Step 3. Then from the ‘Share as’ section select ‘Link’. The code that you will then get is the same that we posted.In the code you will see the name parameter in the share link as below
&name=<?php echo urlencode(INSERT_NAME_HERE) ?>
This is where you set your title.Forum: Plugins
In reply to: [Simple Social Share] Tumblr ButtonDear Kevin,
Thanks for using our plugin and for the suggestion.
You are very correct. By using just “https://www.tumblr.com/share” in the url works well allowing users to share not just title but also photos, videos and many more. We will definitely make this change in the upcoming version of our plugin.
But we would also like to add that the current url for Tumblr share button in the plugin is working fine. We have tested it on our development server.
Below is the PHP code for sharing link generated from the official button generator page of tumblr(http://www.tumblr.com/buttons)
<a href="http://www.tumblr.com/share/link?url=<?php echo urlencode(INSERT_URL_HERE) ?>&name=<?php echo urlencode(INSERT_NAME_HERE) ?>&description=<?php echo urlencode(INSERT_DESCRIPTION_HERE) ?>" title="Share on Tumblr" style="display:inline-block; text-indent:-9999px; overflow:hidden; width:81px; height:20px; background:url('http://platform.tumblr.com/v1/share_1.png') top left no-repeat transparent;">Share on Tumblr</a>If you remove the inline styling, description parameter and title attribute the above code simplifies as below
<a href="http://www.tumblr.com/share/link?url=<?php echo urlencode(INSERT_URL_HERE) ?>&name=<?php echo urlencode(INSERT_NAME_HERE) ?> >Share on Tumblr</a>This is how our plugin uses the share button link.
Thanking you once again for your suggestions,
Perials Team.Forum: Plugins
In reply to: [Simple Social Share] Warnings and ErrosDear pintillo86,
Ideally you should not get the above mentioned error irrespective of what options you select in the settings page.
For debugging further we need to recreate the issue on our development server. Request you to provide us following information:
1. Did you made any changes in the plugin’s code? If yes then kindly provide us the details.
2. Which version of WordPress you are using?
3. Provide us the settings you are using in the Plugin’s setting page.For now, if you know a little bit of PHP, try the following
Go to line no 34 of file admin-form.php in wp-content/plugins/simple-social-share/includes/admin-form.php and replace the below code
foreach ($s3_options['ss-available-services'] as $service) {
with
foreach ((array)$s3_options['ss-available-services'] as $service) {Awaiting your reply,
Perials Team.