ra2or
Forum Replies Created
-
The problem is with the free version. But i have put in a ticket.
changed the checkout –> https://businessinmotion.net/checkout-5/?group=1
Hello dimplemodi,
From your own demo. This is after I press submit en click in the screen.
https://newdemo.armemberplugin.com/login-signup-forms-templates/
Image –> https://postimg.cc/ZBpFQJ0K
Hello Antonio,
Thanx for reaching out. I checked the shortcodes. But in a menu it is(to my knowledge) not possible to use a shortcodes. Is there another way to show to banner without changing consent through a menu item?
Forum: Plugins
In reply to: [Calculated Fields Form] Direct interaction HTML canvasHello CodePeople2,
I have contacted you directly.
Forum: Plugins
In reply to: [Calculated Fields Form] Direct interaction HTML canvasHello CodePeople2,
Thanx for the prompt reaction. I was able to place the html in the form but cannot interact with it. For example fieldname3 is the linewidth of the circle but it does not change when changing it in the form (advanced code is on). testcanvas – Business@Motion
<html>
<head>
<title>Circle Time</title>
<style>
canvas {
border: #333 1px solid;
}
body {
padding: 50px;
}
</style>
</head>
<body>
<canvas id="myCanvas" width="1000px" height="1000px"></canvas>
<script>
let canvas = document.querySelector("#myCanvas");
let context = canvas.getContext("2d");
let rect = canvas.getBoundingClientRect();
canvas.width = rect.width * devicePixelRatio;
canvas.height = rect.height * devicePixelRatio;
context.scale(devicePixelRatio,devicePixelRatio)
canvas.style.width = rect.width + "px";
canvas.style.height = rect.height + "px";
function draw() {
// draw the colored region
context.beginPath();
context.arc(200, 200, 93, 0, 2 * Math.PI, true);
context.fillStyle = "#E2FFC6";
context.fill();
// draw the stroke
context.lineWidth = fieldname3;
context.strokeStyle = "#66CC01";
context.stroke();
}
draw();
</script>
</body>
</html>- This reply was modified 12 months ago by ra2or.
Forum: Plugins
In reply to: [Calculated Fields Form] Check/uncheck radiobutton based on valueIt works! Thanx!
Hello Aert,
It works. Thank you!