sleeplessindc
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Aaron] webfont not foundI’ve been searching for the solution for this and finally found the font on GitHub. https://github.com/FortAwesome/Font-Awesome/blob/master/webfonts/fa-solid-900.ttf
I have not changed logo colors in the plugin or in my main theme. I double-checked the Theme Selection section and all the fields for the logo colors are already blank.
The only change I made was to add custom code in Miscellaneous section from the Customization Options to decrease the space between the buttons for the buttons I am using:
div.heateor_sss_horizontal_sharing li.heateor_sss_twitter_tweet {
width: 95px !important;
}
div.heateor_sss_horizontal_sharing li.heateor_sss_pinterest_plus_share {
width: 95px !important;
}
div.heateor_sss_horizontal_sharing li.heateor_sss_linkedin_share {
width: 95px !important;
}
div.heateor_sss_horizontal_sharing li.heateor_sss_facebook_share {
width: 145px !important;
}
div.heateor_sss_horizontal_sharing li.heateor_sss_instagram_recommend {
width: 95px !important;
}Does this get inserted into the plugin’s CSS or should it be inside style /style ?
- This reply was modified 6 years ago by sleeplessindc. Reason: Added bottom question
Update: Also get same message for the vertical css file
/wp-content/plugins/sassy-social-share//admin/css/sassy-social-share-default-svg-vertical.css): failed to open stream: HTTP request failed! HTTP/1.1 403 Forbidden in /wp-content/plugins/sassy-social-share/sassy-social-share.php on line 36
Forum: Themes and Templates
In reply to: [Aaron] PHP Fatal ErrorYes, thank you. I do have a plugin for 410 functionality. The error message mislead me.
So those CSS color codes will look like
` color: #00ce1b !important;
border-color: #00ce1b !important;`Replaced file works. thank you.
Forum: Plugins
In reply to: [Social Sharing Plugin - Sassy Social Share] PHP Notice — undefined indexReplaced file works. Thanks.
Ignore last two updates. The changed file works. I’m not getting those errors on five other sites where I replaced the file so it just seem to be something restriction on that one site.
Note the double slash in the plugin path between /sassy-social-share//admin/
Thank you. I replaced the file but now I am getting the following messages.
[23-Jan-2019 22:45:46 UTC] PHP Warning: file(https://dev.stcwdc.org/wp-content/plugins/sassy-social-share//admin/css/sassy-social-share-hover-svg-horizontal.css): failed to open stream: HTTP request failed! HTTP/1.1 403 Forbidden
in /wp-content/plugins/sassy-social-share/sassy-social-share.php on line 36[23-Jan-2019 22:45:46 UTC] PHP Warning: file(https://dev.stcwdc.org/wp-content/plugins/sassy-social-share//admin/css/sassy-social-share-default-svg-vertical.css): failed to open stream: HTTP request failed! HTTP/1.1 403 Forbidden
in /wp-content/plugins/sassy-social-share/sassy-social-share.php on line 36[23-Jan-2019 22:45:46 UTC] PHP Warning: file(https://dev.stcwdc.org/wp-content/plugins/sassy-social-share//admin/css/sassy-social-share-hover-svg-vertical.css): failed to open stream: HTTP request failed! HTTP/1.1 403 Forbidden
in /wp-content/plugins/sassy-social-share/sassy-social-share.php on line 36[23-Jan-2019 22:45:55 UTC] PHP Notice: Undefined index: vertical_re_providers in /wp-content/plugins/sassy-social-share/admin/partials/sassy-social-share-options-page.php on line 1135
[23-Jan-2019 22:45:55 UTC] PHP Warning: in_array() expects parameter 2 to be array, null given in /wp-content/plugins/sassy-social-share/admin/partials/sassy-social-share-options-page.php on line 1135
[23-Jan-2019 22:45:55 UTC] PHP Notice: Undefined index: vertical_re_providers in /wp-content/plugins/sassy-social-share/admin/partials/sassy-social-share-options-page.php on line 1155
[23-Jan-2019 22:45:55 UTC] PHP Warning: in_array() expects parameter 2 to be array, null given in /wp-content/plugins/sassy-social-share/admin/partials/sassy-social-share-options-page.php on line 1155
Forum: Themes and Templates
In reply to: [Aaron] Social Media icons now just empty blue boxesThank you. I installed 3.9 and after purging all cache, the icons now work again.
When you go through the steps to activate the Wordfence firewall, Wordfence creates a php.ini file (similar to user.ini but for Wordfence on your new host).
That file contains a path to the wordfence-waf.php file.
And your .htaccess file should have been updated with a line at the top that gives the path to the php.ini file.
For example:
.htaccess line added to top:
SetEnv PHPRC /home/username/public_html/php.ini
The php.ini files containsauto_prepend_file = '/home/username/public_html/wordfence-waf.php' zend_extension=/usr/local/php72/lib/php/extensions/ioncube.so zend_extension=/usr/local/php72/lib/php/extensions/ZendOptimizer.so
The wordfence-waf.php file contains
<?php if (file_exists('/home/username/public_html/wp-content/plugins/wordfence/waf/bootstrap.php')) { define("WFWAF_LOG_PATH", '/home/username/public_html/wp-content/wflogs/'); include_once '/home/username/public_html/wp-content/plugins/wordfence/waf/bootstrap.php'; } ?>
That fixed the problem. Thanks to your better eyesight.
Thanks Steven. I see the difference. I must have copied and pasted that from somewhere that had displayed them as right and left single quotes. Fortunately, the rest of my functions use the correct apostrophe.
Forum: Themes and Templates
In reply to: [Aaron] 3.3 updateThank you for the updates.