Christoph Nagel
Forum Replies Created
-
Forum: Plugins
In reply to: [Floating Contact Button] cannot see the whole contact formHi Francois,
i have just released a new version of the plugin, which should hopefully solve some CSS issues.
Best regards,
ChrisForum: Plugins
In reply to: [Floating Contact Button] cannot see the whole contact formHi @clueless4ever ,
first of all, thank you very much.Since the request is marked as resolved, I hope you were able to solve the problem. However, if this is not the case, please send me the link to the website and I will be happy to take a look at the problem.
Best regards,
ChrisForum: Everything else WordPress
In reply to: I can’t update my wordpress.org profileThank you @macmanx
This does indeed seem to have been the problem. I have now changed the URL.
Thank you.
Forum: Plugins
In reply to: [Floating Contact Button] Title for floating buttonUnder .fcb-link-button::before you can add further CSS properties, i.e. background-color and possibly also some padding.
Forum: Plugins
In reply to: [Floating Contact Button] Title for floating buttonHow about this:
.fcb-link-button::before {
content: “Request a call back “;
color: #000;
font-size: 12px;
width: 65px;
position: fixed;
left: 14px !important;
bottom: 78px;
text-align: center;
line-height: 15px;
}Forum: Plugins
In reply to: [Floating Contact Button] Title for floating buttonHi @crusin316 ,
please let me know if the following code works better:.fcb-link-button:before {
content: “Place here your text”;
color: #000;
font-size: 12px;
width: 100px;
position: fixed;
right: 0px !important;
bottom: 115px;
}
Best regards, ChrisForum: Plugins
In reply to: [Floating Contact Button] Inline styling injected into the site?Hi @judge-mentals,
nice that this has been resolved.
Best regards,
ChrisForum: Plugins
In reply to: [Floating Contact Button] Frontend TitleHi @crusin316 ,
the easiest way would be to integrate a custom CSS code..fcb-link-button:before { content: "Place here your text"; color: #000; font-size: 12px; width: 100%; height: 100%; position: absolute; }Best regards,
ChrisForum: Plugins
In reply to: [Floating Contact Button] change window sizeHi @phdhont ,
please excuse my late feedback.The simplest solution is to make a few adjustments via Custom CSS, so that this is not overwritten again with an update, otherwise you can of course also adjust the changes directly in the plugin CSS file.
Below you can find the adjustments for the new dimensions. The values for height and width you can of course flexibly assign.
fcb-modal {
width: 300px !important;
}
.fcb-modal-content {
max-height: 900px !important;
}
fcb-modal:target {
left: calc(50% – 150px);
left: -moz-calc(50% – 150px);
left: -webkit-calc(50% – 150px);
}
Best regards,
ChrisForum: Plugins
In reply to: [Floating Contact Button] Pop up modal not oppeningHi @stormymondays,
in the new plugin version 2.7 you can find in the plugin settings the possibility to activate the jQuery mode. This should make the plugin work in other themes as well. Please let me know if you encounter a problem.
Best regards
ChrisForum: Plugins
In reply to: [Floating Contact Button] Pop up modal not oppeningHi @azimugv,
if I see it correctly, you are using the Astra theme. Here it seems to be used a script that overrides my plugin.
If you disable the function “Enable Smooth Scroll to ID” in the WordPress backend under Design -> Customizer -> Global -> Other, everything works as it should.
Please let me know if this works for you or if you absolutely need the function, so that another solution must be found.
Best regards,
ChrisForum: Plugins
In reply to: [Floating Contact Button] How to close when click outside the formHi @fabien79,
please excuse my late response.
It is possible to close the popup by clicking outside it. Unfortunately, this requires a small adjustment to the plugin file.
In the plugin folder you can find the corresponding file under /wp-content/plugins/floating-contact/floating-contact.phpIn line 175 change the code to
echo ' <a href="#" class="close-fcb-modal"><div class="overlay"></div></a>';
Best regards, ChrisForum: Plugins
In reply to: [Floating Contact Button] Pop up modal not oppeningHi @azimugv
The choice of the appropriate form should not be the reason. I will check the whole thing once and let you know then.
Best regards,
ChrisForum: Plugins
In reply to: [Floating Contact Button] Change button linkHi @kifli2 ,
many thanks and please excuse my late feedback.When you use Notepad++ change in the floating-contact.php in line 169:
echo ' <a href="#fcb-modal" class="fcb-link-button"><i class="fcb-icons"><span class="dashicons dashicons-format-chat"></span></i></a>'; echo ' <div id="fcb-modal">'; echo ' <div class="fcb-header"><a href="#" class="close-fcb-modal"><div class="fcb-header-close"><span class="fcb-close">X</span></div></a></div>'; echo ' <div class="fcb-modal-content"> '; echo ' <p>'.do_shortcode($fcb_shortcode).'</p>'; echo ' </div>'; echo ' <div class="overlay"></div>'; echo ' </div>';to
echo ' <a href="#terminal" class="fcb-link-button"><i class="fcb-icons"><span class="dashicons dashicons-format-chat"></span></i></a>'; echo ' <div id="terminal">'; echo ' <div class="fcb-header"><a href="#" class="close-terminal"><div class="fcb-header-close"><span class="fcb-close">X</span></div></a></div>'; echo ' <div class="terminal-content"> '; echo ' <p>'.do_shortcode($fcb_shortcode).'</p>'; echo ' </div>'; echo ' <div class="overlay"></div>'; echo ' </div>';After that the CSS files have to be adjusted. By default, the style.min.css is used. Open this file with Notepad++ and search for #fcb-modal and replace it with #terminal.
That should solve it.
Best regards,
ChrisForum: Plugins
In reply to: [Floating Contact Button] Kontakformular erscheint nichtHallo Günter,
das mit den Entscheidungen kenne ich gut. Die Frage ist immer wie viele Funktionen man einem Plugin noch mitgibt, was sich zwangsläufig ja auch immer auf der Performance auswirkt.
Wichtig ist das Du eine gute Lösung gefunden hast. Ich werde mal schauen was sich in Zukunft noch sinnvoll implementieren lässt.Liebe Grüße,
Chris