irocwebs
Forum Replies Created
-
Forum: Plugins
In reply to: [Disable Gutenberg] Problem with latest updateWhy wouldn’t this be the default settings? Most of us are probably installing this plugin to Disable Gutenberg completely. Just my 2 cents.
Forum: Plugins
In reply to: [Disable Gutenberg] Problem with latest updateIf you install the Classic Editor (https://www.ads-software.com/plugins/classic-editor/) in conjunction with Disable Gutenberg, it at least gets rid of the Block Editor link.
Forum: Plugins
In reply to: [Arrow Custom Feed for Twitter] Getting HTTPS twitter imagesIt works for us. There may be a better way to do it, but like I said it’s the “quick & dirty way.” ??
Forum: Plugins
In reply to: [Disable Gutenberg] Problem with latest updateSame here… 100+ sites. If you click the title it uses the classic editor but if you hover over it, the menu is Block Editor.
Forum: Plugins
In reply to: [Arrow Custom Feed for Twitter] Getting HTTPS twitter imagesNot sure anyone is paying attention but here is what we have been doing to make this plugin SSL friendly… the quick and dirty way. The issue is that you have to update this file every time you update the plugin.
In the file: /wp-content/plugins/arrow-twitter-feed/js/jquery.socialfeed.js
At or around line 271 & 272, replace:
post.author_link = 'https://twitter.com/' + element.user.screen_name; post.author_picture = element.user.profile_image_url;
with:
post.author_link = 'https://twitter.com/' + element.user.screen_name; post.author_picture_http = element.user.profile_image_url; post.author_picture = post.author_picture_http.replace('https://', 'https://');
At line 277, replace:
post.link = 'https://twitter.com/' + element.user.screen_name + '/status/' + element.id_str;
with:
post.link = 'https://twitter.com/' + element.user.screen_name + '/status/' + element.id_str;'
At line 281, replace:
var image_url = element.entities.media[0].media_url;
with:var image_url_http = element.entities.media[0].media_url; var image_url = image_url_http.replace('https://', 'https://');
You can download older versions here: https://www.ads-software.com/plugins/woocommerce-services/advanced/
Scroll to the bottom.
- This reply was modified 6 years, 8 months ago by irocwebs.
Yes, thank you for your assistance.
Same issue as reported here: https://www.ads-software.com/support/topic/fatal-error-cant-use-function-return-value-in-write-context-10/
@mattbroadway – if you do not have access to this you may need to contact your hosting company or web designer.
If you are using cPanel, you will need to use the file manager to go to the folder and delete it. Depending on your set up it might be public_html/wp-content/plugins/email-subscribers. You will need to navigate to the plugins folder of you wordpress installation and delete the email-subscribers folder. Once you’ve done this, you will be able to access the wordpress admin and reinstall the plugin. You should not lose any settings or subscribers doing this.
You will need ftp or cpanel access to delete the folder email-subscribers in the plugins folder. Folder location is typically wp-content/plugins/email-subscribers. Once deleted you will be able to access the wordpress admin and reinstall the plugin.
Not sure if this is the fix or not but might be better to use WordPress function has_post_thumbnail() instead?
This is line 1241 in /wp-content/plugins/email-subscribers/classes/es-register.php
$es_templ_thumbnail = (!empty(get_the_post_thumbnail( $post->ID ) ) ) ? get_the_post_thumbnail($post->ID, array('200','200') ) : '<img src="'.ES_URL.'images/es-custom-template.png" />';
- This reply was modified 7 years, 1 month ago by irocwebs.
Same error described here: https://www.ads-software.com/support/topic/fatal-error-cant-use-function-return-value-in-write-context-10/
Forum: Plugins
In reply to: [Coming Soon Viral Page by Growtheme] Missing FilesNow might be a good time to think about having older versions of the plugin available so that if there are issues with the new version/update, people can quickly roll back. Going to the developers tab was my first instinct. ?? Thanks for the fix and great plugin!