ShareThis
Forum Replies Created
-
@harm10 Thanks for bringing this to our attention, and apologies for the delayed response. I’ve shared your report with our engineering team so they can review the textdomain load timing issue. We’ll update this thread as soon as we have more details.
ShareThis Support
- This reply was modified 8 months, 4 weeks ago by ShareThis.
Forum: Plugins
In reply to: [ShareThis Share Buttons] buttons don’t show on phone web versionHello @joukeschotanus.
Thank you for reaching out.
I checked on a phone and the share icons do appear. They’re coming from the Simple Share Buttons Adder plugin. I don’t see the ShareThis script loading on that page.
If you intended to use ShareThis Share Buttons, please email us at [email protected]—happy to help.
Best regards,
ShareThis Team
Forum: Plugins
In reply to: [ShareThis Share Buttons] Path to assets are wrongHi @maximeculea,
Thank you for flagging this! We’ve released a fix for this in our latest version (2.3.7). Could you please update to this version and let us know if it resolves the issue on your end?
Best,
ShareThis Support
Forum: Plugins
In reply to: [ShareThis Follow Buttons] Integrate StravaHi @thunder86, thanks for reaching out and sharing your suggestion!
We’ve passed your request to our product team to consider Strava integration in future updates. We appreciate your feedback—please let us know if you have any other ideas or questions!
Forum: Plugins
In reply to: [ShareThis Share Buttons] PHP 8.2 Fatal errorHi @mhgx, we’ve fixed this issue in our latest version of the plugin. Thanks for your support!
Forum: Plugins
In reply to: [ShareThis Share Buttons] PHP 8.2 Fatal errorHi @mhgx, thank you for bringing this to our attention. We’ve escalated this to our engineering team so we can further investigate and implement a fix in an upcoming release. Really appreciate you taking the time to highlight this—your input is appreciated!
Forum: Plugins
In reply to: [ShareThis Share Buttons] PHP WarningsHey @mhgx, thank you for flagging this and for taking the time to propose a fix! We really appreciate your contribution. I’m happy to confirm that this warning has been addressed in our latest release. Your input helps us keep improving—thanks again for your support!
Hey thanks for reaching out. We have attempted to address any sort of security issues in ver. 3.2.3, but Patchstack is not a very accurate source for CSRF vulnerabilities so not sure if/when they’re update their status.
That being said, WordPress had previously reached out and did an extensive dive into our code and noted things that we have addressed in 3.2.2 and were satisfied with our approach. The plugin is not at risk for any forgery requests at this point in time so feel free to continue using it as normal.
Remember to always keep an eye on your current user lists and do quarterly audits to remove any nefarious accounts. That will minimize your risk of users accessing your site’s DB altogether.
Let me know if you have any more questions. Thanks!
ShareThisForum: Plugins
In reply to: [ShareThis Share Buttons] No icon for Bluesky?Thank you for your patience, and apologies for the confusion earlier.
Bluesky is now officially supported as a ShareThis button. You can add it by editing your Share Button tool and selecting Bluesky from the available options.
We appreciate your understanding and your interest in emerging platforms!
ShareThis Team,- This reply was modified 1 year, 2 months ago by ShareThis.
Forum: Plugins
In reply to: [ShareThis Share Buttons] No icon for Bluesky?Hi MetricMedia,
Thank you for your message.
Bluesky is now supported as a ShareThis button. You can enable it by logging into your ShareThis account, editing your Share Button tool, and selecting Bluesky from the list of available networks.
ShareThis Team,- This reply was modified 1 year, 2 months ago by ShareThis.
Forum: Plugins
In reply to: [Simple Share Buttons Adder] Icon images not loadingHi lamochilaalhombro,
Thanks for the detailed info and links!
It looks like the issue is caused by leftover code in your theme (possibly from a previous plugin) that’s trying to load outdated or missing icon assets. Since you’re using Divi, this could be tied to built-in share features or custom code snippets.
Here’s what you can do:
- Clean Up Old Code: Check your theme files (especially header/footer or single post templates) for any old share button code and remove it.
- Use Only One Plugin: Stick with the latest ShareThis plugin — it’s working correctly. Avoid having multiple share tools active at once to prevent conflicts.
- Inspect with Dev Tools: Right-click on the broken icons → Inspect → check the “Console” and “Network” tabs for any 404 errors or blocked resources (often old image URLs).
- Divi Conflicts: If the broken icons are tied to Divi’s built-in options, check Divi > Theme Options > Integration or Divi Builder settings to disable any built-in share buttons.
If you’re unsure how to remove leftover code or inspect errors, we suggest reaching out to a web developer or Divi expert to help clean it up safely.
Let us know how it goes!
Best Regard
ShareThis Team.Hi @sipitai,
Thanks for the detailed context—very helpful!
Based on your description, it seems the issue likely stems from a settings mismatch caused during a plugin update. The
[ssba-buttons]shortcode you’re using renders the Standard Buttons, not the Plus Buttons. So when “Plus Share Buttons” is disabled, only the standard settings (ssba_selected_buttons,ssba_share_text) apply, which in your case appear to have reset to defaults (e.g., showing Facebook, Pinterest, Twitter, etc.).Here’s how to resolve this:
- Manually reconfigure the standard buttons via your WordPress admin panel:
- Go to the plugin settings.
- Ensure “Plus Share Buttons” is disabled.
- Then set your preferred networks (Email, LinkedIn, Facebook) under the standard button settings—not the “Plus” section.
- If the settings don’t save properly, this may be a plugin compatibility issue with newer WordPress versions or themes. Try:
- Saving settings twice after disabling “Plus Buttons”.
- Clearing site cache if any caching plugins are active.
- Testing in a default theme (like Twenty Twenty-One) to rule out theme interference.
If the issue persists, I recommend reaching out to a WordPress developer or your theme’s support to help adjust the shortcode rendering behavior or ensure settings persist after saving.
Let me know if you’d like more help
Best Regards
Sharethis TeamForum: Plugins
In reply to: [Simple Share Buttons Adder] Undefined array key “ssba_bar_buttons”Hi Khanhvo,
Thanks for reaching out, and I totally understand how frustrating constant error log entries can be.This warning is due to the Simple Share Buttons Adder plugin referencing an array key (
ssba_bar_buttons) that doesn’t exist when it’s expecting it to. This can happen with PHP 8.2+, which is stricter about undefined array keys. Here’s how to resolve it:You or your developer can modify the plugin code around line 602 to prevent the warning. Replace:
$network_color = 'Y' === $arr_settings['ssba_new_buttons'] || 'Y' === $arr_settings['ssba_bar_buttons'] ? self::get_button_color( $button_name ) : '';With:
$network_color = (isset($arr_settings['ssba_new_buttons']) && $arr_settings['ssba_new_buttons'] === 'Y') || (isset($arr_settings['ssba_bar_buttons']) && $arr_settings['ssba_bar_buttons'] === 'Y') ? self::get_button_color( $button_name ) : '';This will check if the keys are set before accessing them, which avoids the PHP warning.
If you’re not comfortable editing plugin files, I recommend contacting a WordPress developer or the plugin author directly for a more permanent fix.
Let me know if you’d more help.
ShareThis Team.Forum: Plugins
In reply to: [ShareThis Follow Buttons] Change of Button ColourHi thunder86,
yes you can definitely change the color of the ShareThis buttons using additional CSS!To make the buttons black and white, try adding the following CSS to your site:
.sharethis-inline-share-buttons .st-btn { background-color: black !important; filter: grayscale(100%) !important; }If you’re using a site builder (like Elementor, Wix, etc.), you might need to check how to inject custom CSS. If you’re unsure, a web developer or someone familiar with your builder can help apply it properly.
Let me know if you need help.
Best Regards,
ShareThis TeamForum: Plugins
In reply to: [Social Media Feather] Still support? Also have Deprecation noticesHi Harm10,
Thanks for checking in! Yes, the plugin is still supported. We’re currently working on a new release that will address the PHP 8.2 deprecation notices you’ve mentioned. While we don’t have an exact release date to share just yet, rest assured it’s on the roadmap.
In the meantime, if you’re experiencing any functional issues beyond the notices, let us know and we’ll do our best to help.
Appreciate your patience!
Best Regards
ShareThis Team