BeeCee
Forum Replies Created
-
Forum: Plugins
In reply to: [Shariff Wrapper] Flipboardwürde mich auch interessieren, hast du schon selbst eine Lösung gebastelt? @hgassner
thanks for getting back to me, yes, would be great if you could consider this for future update, thank you!
Forum: Plugins
In reply to: [Code Snippets] Upate Crashed two sitesSolution:
create a blank file and call it
import-export.php
and put this via FTP in the sub-folder “php” of this plugin, and wait for the next update.Forum: Plugins
In reply to: [Code Snippets] My site crash after update!Solution:
create a blank file and call it
import-export.php
and put this via FTP in the sub-folder “php” of this plugin, and wait for the next update.Forum: Plugins
In reply to: [Code Snippets] Website DownSolution:
create a blank file and call it
import-export.php
and put this via FTP in the sub-folder “php” of this plugin, and wait for the next update.Forum: Plugins
In reply to: [Code Snippets] Crash after last updateSolution:
create a blank file and call it
import-export.php
and put this via FTP in the sub-folder “php” of this plugin, and wait for the next update.Forum: Plugins
In reply to: [Code Snippets] Version 2.10.1 crashes site’s backend!Solution:
create a blank file and call it
import-export.php
and put this via FTP in the sub-folder “php” of this plugin, and wait for the next update.Forum: Plugins
In reply to: [Code Snippets] Version 2.10.1 crashes site’s backend!Solution:
create a blank file and call it
import-export.php
and put this via FTP in the sub-folder “php” of this plugin, and wait for the next update.
Works fine at my sites.Forum: Plugins
In reply to: [The Events Calendar] Various PHP warnings and errors even in test modeI tried the solution of @reckif, but it does not solved the error:
Warning: sprintf(): Too few arguments in ...../wp-content/plugins/the-events-calendar/src/admin-views/tribe-options-display.php on line 53WP 4.9.4
German WordPress
Theme: ENFOLDSame error message here
WP 4.9.4 multisite
German WordPress
Theme: ENFOLDyes it is, as I said in the first post.
I have no problems with the plugin:
- PHP Version 7.0.25
- System: Linux dd41536 4.4.0-109-generic #132-Ubuntu SMP Tue Jan 9 19:52:39 UTC 2018 x86_64
- Server API: Apache 2.0 Handler
- WordPress: 4.9.2 Network Installation/Multisite with Domainmapping
Great, thanks a lot, that works with that very well!!!!
Hi,
thanks, but this has completely no effect:
https://www.dropbox.com/s/67nnck4u7au6hok/yikesneu.jpg?dl=0With Firefox developer tools I can see, that the width/height is changing, but it seems like if there is a standard “checkbox” on that place, maybe a WordPress standard checkbox, because it is not coming from my theme (ENFOLD)?
I’m using this CSS:
input[name="yikes_mailchimp_checkbox_comment_form"] { font-size:16px !important; border-width:2px !important; border-style:solid !important; padding:4px !important; border-color:#e5b8be !important; color:#de8595 !important; width:20px !important; height:20px !important; }By the way, if this might help:
the theme uses this function to add the post’s featured image to the RSS feed:function avf_featured_image_rss($content) { global $post; if ( has_post_thumbnail( $post->ID ) ){ $content = '<div>' . get_the_post_thumbnail( $post->ID, 'featured' ) . '</div>' . $content; } return $content; } add_filter('the_excerpt_rss', 'avf_featured_image_rss'); add_filter('the_content_feed', 'avf_featured_image_rss');