BeeCee
Forum Replies Created
-
Thanks a lot, now I understand …
I created now at my FTP manually a folder “bst” at wp-content and change there this folder to “PHP-user” (chown); now it works perfectly, thanks.
Forum: Plugins
In reply to: [Easy Forms for Mailchimp] GDPR: how to make the plugin really GDPR safe?Hi,
thanks, I will need to dive deeper in it …ReCaptcha is not enabeld at my end.
My statement concerning the GDPR (in Germany DSGVO) is right – in Germany. Here it is not allowed to have connections to Google or Facebook. It may be that other countries do not handle this so strictly.
Forum: Plugins
In reply to: [Code Snippets] Showing and saving ID of snippets not possibleJust would like to let you know, that with the newest plugin update all is working fine concerning the ID column, thanks a lot!
Forum: Plugins
In reply to: [Code Snippets] Showing and saving ID of snippets not possiblegreat, thank you very much!
ah okay, I understand, thanks.
I am using the theme ENFOLD and it uses within its “Advanced Layout Builder” the normal TinyMCE, but there I do not see your button. I only see it in a blank page where no layout builder is used.
Note: I do not use Gutenberg.I got it, in the sidebar when you create a new snippet are the shortcodes listed:
http://imgbox.com/4oWN66XbBut it would be great, to have a button within the Visual editor of posts or pages to add a content block shortcode, instead of grabbing the right shortcode from going back to the list of my created shortcodes.
Forum: Plugins
In reply to: [Simple Author Box] Error: A non-numeric value encountered…yes, that is the only line on top of my WP backend.
WP 4.9.6
PHP 7.1.11Forum: Plugins
In reply to: [Nice Likes] GDPR: does the plugin store IP – can it be used without?what do you mean with
Alternatively, it can use a hash function before storing the value.
What do I need to add where?
Forum: Plugins
In reply to: [Simple Author Box] Shortcode or template tag for single.php?yes, but I guess I cannot put this “as is” in the single.php, right?
Sorry, but I am not a coder …thank you for getting back to me … okay, I understand … I will try to contact her, thank you.
how can I have the “via” and the twitter username as set in the plugin’s settings in the tweet box:
like here:
https://www.marieforleo.com/2016/03/time-management/Shortcode:
[bctt tweet="Test for better-click-to-tweet plugin blablablba" username="mytwitterusername" prompt="Tweet this"]Forum: Plugins
In reply to: [Nice Likes] GDPR: does the plugin store IP – can it be used without?…and how to do this please? I am not a coder …
Forum: Plugins
In reply to: [Easy Forms for Mailchimp] GDPR Fieldsokay, thank you, very sad, that this will not work on the part of MC.
Forum: Plugins
In reply to: [Shariff Wrapper] FLIPBOARD Sharing?funktioniert perfekt mit dem Update, vielen Dank fürs Einpflegen!
Forum: Plugins
In reply to: [MultilingualPress] Template code snippet for “Quicklinks”?meanwhile I have found in another forum a better and shorter way:
function mlp_show_linked_elements_mod() { if( function_exists( 'mlp_show_linked_elements' ) ) { return mlp_show_linked_elements( array( 'link_text' => 'flag', // oder 'text' oder 'text_flag' 'show_current_blog' => TRUE // TRUE - display the current language, FALSE - hide the current language (default) ) ); } } add_shortcode( 'mlp_show', 'mlp_show_linked_elements_mod' );and then use the shortcode
[mlp_show]or alternatively for the theme’s function.php:
add_action( 'avia_meta_header', 'avia_mlp_language_switch', 10); function avia_mlp_language_switch() { if(function_exists( 'mlp_show_linked_elements' )) mlp_show_linked_elements( array( 'link_text' => 'flag', 'show_current_blog' => FALSE ) ); }