agsansbach
Forum Replies Created
-
Forum: Plugins
In reply to: [WP IE Buster] On Button/Link-click open in MS EdgeWorks, awesome!
Thanks alot for the great support!Forum: Plugins
In reply to: [WP IE Buster] On Button/Link-click open in MS EdgeI just found something out:
If I placed a normal link inside your URL field, everythings working like it should.
The anchor tag is getting a href=”https://yourdomain.tdl” with the set url in it.However, if I was placing this: microsoft-edge:https://yourdomain.tdl in the URL field, it apears like nothing was written in it.
-> The anchor element is getting a empty href=”” with no URL at all.Is that just a bug or fixable?
Cause when I’m putting it manually inside the href (like Open MS Edge) with the IE development tools and clicking on the button, opens up the Edge – like I want it to do.
I am running in circles and would be glad to hear from you!
Thanks alotOk, the slider form is working (I need to scroll down to the bottom of the page to see the prev/next buttons).
So the plugin is working fine!
If the first slide has more content then the other slides, it seems like the other slides are set to the hight of the first slide.
Right now I have a big white space between the navarrows and the rest of the form (on mobile).
Is it possible that the navarrow are fixed to the last formelement?
(the height of the slide is related to the content in that specific slide, not fixed to the first?https://www.autoglas-spezialist-ansbach.de/termin-buchen/
Thank you for your help!
- This reply was modified 5 years, 3 months ago by agsansbach. Reason: added link to page
- This reply was modified 5 years, 3 months ago by agsansbach.
- This reply was modified 5 years, 3 months ago by agsansbach.
Thanks, that helped alot!
don’t create input fields within the HTML, use the CF7 field tags instead, else the CF7 plugin will not be able to validate/process/add to notification mails your submitted values. This is not the recommended way, you really need to understand what you are doing to design forms like this.
The onclick attribute is not allowed by the WordPress wp_kses_allowed_html post content sanitizer function by default. Again, you should be using JavaScript/JQuery to bind events on your fields rather than inserting oncliick attributes.
Got it thanks.
But why can’t I just set a class for the Div
.nichtanzeigen { display: none; }<div class="cf7sg-collapsible-title"><span class="cf7sg-title">1. Glasschaden angeben</span></div>like
<div class="cf7sg-collapsible-title nichtsichtbar"><span class="cf7sg-title">1. Glasschaden angeben</span></div>It seems like it doesn’t save.
Thank you for your quick resonse. The links should be visable now.
The Slider is actually working, yes. Just some attributes keep getting overritten.For example:
I was trying to hide the Section title with a class
.nichtanzeigen {
display: none;
}
The class inside the <span class=”cf7sg-title nichtanzeigen”>1. Section title</span> gets deleted after reloading/saving.After reloading it looks again like this:
<span class=”cf7sg-title”>1. Section title</span>Same problem with the input type checkboxes.
- This reply was modified 5 years, 3 months ago by agsansbach.