mrdude23
Forum Replies Created
-
I have another website where I added a html widget with “[gallery gt3_gallery="yes" ids="1291,1273,1246,1227,1070,1068,1063,1069"]” and it works. But that doesn’t seem to work anymore on my new site.
But why is there a gallery option in my widgets?
I use the new Gutenberg Editor, but the problem starts in the widget area. I add a Gallery-Widget to my Website, set “Link Image To” Default and when I hit save and re-enter the Gallery it is set to Attachment Page. Happens every time.
I use Lite.
Thanks a lot! Whom it might concern: I changed the handle of my slider with this:
#fbuilder .slider .ui-slider-handle { background: #1f9634; cursor: pointer; }
Thanks a lot! It worked very well. After that I tried changing the slider with the same attributes, but nothing works there. I named it’s class “slider” and put .slider input {} into my css, nothing changed. I put it into the custom css of the Calculated fields, but nothing changed there either.
Forum: Themes and Templates
In reply to: [Shapely] Button changes size while mouseoverFound my solution a few minutes later, but I cant delete the Topic now. Don’t know where. I added a border to the buttons and now the size doesn’t change when I hover over it. Not ideal, but it’s the only thing that worked. There seems to be a css-command to add a border when you hover over it, but I wasn’t able to find it.
Now we have a stupid topic with myself talking to myself.Forum: Plugins
In reply to: [Calculated Fields Form] Set Slider Values to different value than displayedThanks a bunch! It actually didn’t quite work for me, but I found my way. Your equation added another 20% to the basic result. I wanted to add 20% to the end result. I fixed it by adding
g = 1;
(…)
if(fieldname7 == 1) g = 1.2;
return result*n*g;Now it adds another 20% to the final result.
Thank you very much for your help!
- This reply was modified 5 years, 6 months ago by mrdude23.
Forum: Plugins
In reply to: [Calculated Fields Form] Set Slider Values to different value than displayedHello! I ran into another problem ??
I’m trying to put another Checkbox option into the equation from above. Basicly: If checked the result should ad another 20%, if not, nothing happens. The easiest way would be to multiply by fieldname8, but if not checked fieldname8 is 0. I tried putting another if into the equation, but nothing changes.(function(){
var result = fieldname3+fieldname8,
duration = fieldname4;
percent = fieldname7;if(duration == 30) return result;
if(duration == 60) return result*1.5;
if(duration == 90) return result*1.9;
(…)
if(percent == 0) return result;
if(percent == 1.2) return result*1.2;
})()I’m quite shure I’m not that far off. But where? ??
Forum: Plugins
In reply to: [Calculated Fields Form] Set Slider Values to different value than displayedWow, that was fast. It works perfectly. Thank you so much!