RonaldS
Forum Replies Created
-
Forum: Plugins
In reply to: [Polylang] How to change the default flag icon into biggerHi, 2 weeks ago I posted my question. Still not get an answer. Bit strange.
Forum: Fixing WordPress
In reply to: How to get toolbar in textareaIt doesn’t work. See code below. The code shows the field via a modal popup. Maybe there is something wrong. Modal works great. Var $result->company_profile is correct shown in wp-editor. But I don’t get the toolbar.
See: https://prntscr.com/gectcy!it does work outside the modal!
$content = $result->company_profile; $editor_id = 'mycustomeditor'; $args = array( 'tinymce' => array( 'toolbar1' => 'bold,italic,underline,separator,alignleft,aligncenter,alignright,separator,link,unlink,undo,redo', 'toolbar2' => '', 'toolbar3' => '', ), ); wp_editor( $content, $editor_id, $args );
- This reply was modified 7 years, 7 months ago by RonaldS.
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 does not translate textI write a form from scratch what results in a good working contact form.
Forum: Plugins
In reply to: [WP Fastest Cache] 218 characters of unexpected outputAfter updating all works fine. Thanks for the super fast service!
Forum: Plugins
In reply to: [WP Fastest Cache] 218 characters of unexpected outputMeans the update cant be installed.
Forum: Plugins
In reply to: [WP Fastest Cache] 218 characters of unexpected outputEasy to write. But plugin cant be deleted !
Forum: Plugins
In reply to: [WP Fastest Cache] 218 characters of unexpected outputDeleting old version result in this error:
Deletion failed: Deprecated: Non-static method WpFastestCache::uninstall() should not be called statically in /home/deb96951n3/domains/website.com/public_html/wp-includes/class-wp-hook.php on line 298 {“success”:true,”data”:{“delete”:”plugin”,”slug”:”wp-fastest-cache”,”plugin”:”wp-fastest-cache\/wpFastestCache.php”,”pluginName”:”WP Fastest Cache”}}Forum: Plugins
In reply to: [Newsletter - Send awesome emails from WordPress] Header text not in WhiteYes I want 2 rows of text and not wrapped by something but by myself.
I prefer also that you edit this to see it live.
please prefend me your emailaddress to get credientials.Forum: Plugins
In reply to: [Newsletter - Send awesome emails from WordPress] Header text not in Whitein composer of newsletter. See example: https://prntscr.com/fkm8pq
The Domain name text is not getting White.Forum: Plugins
In reply to: [Newsletter - Send awesome emails from WordPress] Header text not in WhiteNice support! 8 days ago posted and still no reply at all.
Forum: Plugins
In reply to: [PW WooCommerce Bulk Edit] test site and live siteOk. That is not suitable for me and too complex. I always test and then do it live. So that doesnt work for me.
Forum: Fixing WordPress
In reply to: Media doesnt upload images anymoreIf you read my thread it show: 755 and 777 are tryed without any result.
The file size I try to upload is 75kb. Max is 32Mb by default.
With other words: not solution till now.Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 does not translate textI have uninstalled the crazy plugin. They are already years active and still do not have translations?! I have wrote my own contact form. That was done in 1 hour and… multi-language.
let it be. i already coded it by myself. thanks for your quick reply.
I try but that destroyed my design. I have modal popup function created that popups the login screen. When starting the a modal popup appears. Login function well. Only get the modal again with the logout in it. All modals works fine too.
function login_function() { $content = ''; $content .= '<a class="fusion-button button-large button-login" target="_blank" href="#" data-toggle="modal" data-target=".agent-login"><span class="fusion-button-text-login">Login</span></a>'; $content .= do_shortcode( '[fusion_modal name="agent-login" title="'. __('login me', 'agent-plugin').'" size="large" background="" border_color="" show_footer="no" class="" id=""][login-with-ajax registration="1"][/fusion_modal]' ); return $content; } add_shortcode('login', 'login_function');