mpdeegan
Forum Replies Created
-
Forum: Plugins
In reply to: [White Label CMS] Possible MAJOR Issue: Version 2.0.1 Broke ALL UpdatesThanks Preston. I had the same issue as you.
I had no idea why some of my +60 WordPress installs would no longer recognise plugin updates. I was trying everything to FORCE updates to be recoginised… lots of wasted hours. Just like you, when I deactivated Version 2.0.1 of White Label CMS all plugin updates started to show up again.
I’m just worried for all the people out there that continue to have no idea about this “FIX”… especially with WordPress 5.0 coming out and the massive Gutenberg editor impact.
Rant over… I’m just glad I found this support post.
Now back to updating plugins.Forum: Plugins
In reply to: [WP Fastest Cache] Wordfence Report 11:29 May 24, 2016I’m asking the same question… where is this latest update?
If you look at the www.ads-software.com Plugin Page or the
Plugin HomepageIt shows details:
Version: 0.8.5.7
Last Updated: 11 hours agoBut I updated to version 0.8.5.7 of “WP Fastest Cache” 21 days ago…
So yeah, I’m asking the same question… where is this latest update?Forum: Plugins
In reply to: [WP Fastest Cache] 2 plugin vulnerabilitiesI’m asking the same question… where is this latest update?
If you look at the www.ads-software.com Plugin Page or the
Plugin HomepageIt shows details:
Version: 0.8.5.7
Last Updated: 11 hours agoBut I updated to version 0.8.5.7 of “WP Fastest Cache” 21 days ago…
So yeah, I’m asking the same question… where is this latest update?Forum: Plugins
In reply to: [Simple Share Buttons Adder] Custom Buttons Not AppearingThanks, glad I could help.
Now… how do we request a change to the code?
I was going to setup a pull request on GitHub
https://github.com/davidsneal/simplesharebuttonsbut GitHub hasn’t been updated since v4.5 on 26 Jun 2014 and the plugin is now at v6.1.0
Can anyone point me to the process of requesting a code change?
Regards,
mpdeeganForum: Plugins
In reply to: [Simple Share Buttons Adder] Custom Buttons Not AppearingI’m experiencing the same issue…
I went looking in the plugin’s code.
In simple-share-buttons-adder\inc\ssba_admin_bits.php
Where the code is ‘preparing’ the array that gets saved back to the database for SSBA’s options/settings:
function ssba_settings() { ... // prepare array $arrOptions = array( 'ssba_image_set' => $ssbaPost['ssba_image_set'], ...
The current code is not ‘preparing’ the array for all of the custom image URLs…
Something similar to the following code needs to be added that will take the data in the post object for each of the custom images and also add them to the $arrOptions array.
It is this $arrOptions array that eventually gets saved back into the database…'ssba_custom_email' => $ssbaPost['ssba_custom_email'], 'ssba_custom_google' => $ssbaPost['ssba_custom_google'], 'ssba_custom_facebook' => $ssbaPost['ssba_custom_facebook'], 'ssba_custom_twitter' => $ssbaPost['ssba_custom_twitter'], 'ssba_custom_diggit' => $ssbaPost['ssba_custom_diggit'], 'ssba_custom_linkedin' => $ssbaPost['ssba_custom_linkedin'], 'ssba_custom_reddit' => $ssbaPost['ssba_custom_reddit'], 'ssba_custom_stumbleupon' => $ssbaPost['ssba_custom_stumbleupon'], 'ssba_custom_pinterest' => $ssbaPost['ssba_custom_pinterest'], 'ssba_custom_buffer' => $ssbaPost['ssba_custom_buffer'], 'ssba_custom_flattr' => $ssbaPost['ssba_custom_flattr'], 'ssba_custom_tumblr' => $ssbaPost['ssba_custom_tumblr'], 'ssba_custom_print' => $ssbaPost['ssba_custom_print'], 'ssba_custom_vk' => $ssbaPost['ssba_custom_vk'], 'ssba_custom_yummly' => $ssbaPost['ssba_custom_yummly'],
Regards
mpdeeganOops, my bad! Spent too much time before posting…
thanks for the update cageehvUnfortunately, I’m getting same error…
“You do not have sufficient permissions to access this page.” when trying to access the plugin’s settings, despite being logged into my site with Administrator permissions.I tested on another dev site where, before updating the plugin, I was successfully able to update settings, but after updating to the latest version of the plugin I can no longer reach the settings page.
So this is a recently introduced issue.
Nice plugin by the way!
Two ways to go:
—————————————
OPTION 1) uncheck one of the checkboxes*** THIS IS THE SIMPLEST THING TO DO FOR NOW, UNTIL THE PLUGIN IS UPDATED WITH A FIX ***
After logging into the Admin area for your WordPress site, you can update the SSBA settings via Settings -> Share Buttons -> Advanced Settings
Under ‘General’ ‘Links:’ there are 2 checkboxes
1) Open links in a new window
2) Add rel=”nofollow” to linksIf both of these checkboxes are ‘selected’ you will get the HTML validation error described above.
—————————————
OPTION 2) update your local version of the plugin code*** NOTE THIS WILL BE WIPED IF THE PLUGIN IS UPDATED ***
Update everywhere in your local version of the plugin’s code that outputs the ‘target’ and ‘rel’ attributes and make sure there is a leading space before any ‘target’ and ‘rel’ attributes
Open ‘simple-share-buttons-adder.php’, search the code and add a leading space:
' target="_blank"' ' rel="nofollow"'
Hope that helps.
yeah @john-michael its fixed and working for me
thanks to @takayuki MiyoshiHey Jacob,
By default the plugin loads the necessary JavaScript and CSS stylesheet on ALL pages and this work around was to change that default behaviour to just load the files on pages which contain contact forms. It’s a performance tweak.
The plugin author outlined the work around here https://contactform7.com/loading-javascript-and-stylesheet-only-when-it-is-necessary/
After updating to the latest release, the work around no longer works, but a fix is coming.
Hope that helps.
Hey no problem, thanks for the quick response. I just wasn’t sure if you were aware of the issue. Great plugin BTW.