supersvetodiod
Forum Replies Created
-
Forum: Plugins
In reply to: [Featured Image from URL (FIFU)] Disssappearing imagesI never use new versions until they are rolled out. After that, I just put new ones on. We can’t do the old ones properly, but there may be even more problems in the new ones. Therefore, I will wait for feedback on new versions and then install it. We do not install broken versions, because the lost work on the site does not cost $ 29 for your plugin. we will write on the website in support
Forum: Reviews
In reply to: [Featured Image from URL (FIFU)] the bad plugin looks like thisHello! The plugin is good. But there are problems. The site is a regular news site. The content is uploaded via WP All Import. Text and images are being uploaded. Images are taken from third-party sites as a “recording image”. There are no other images in the text. But after a while, all the images from the site disappear. Tell me, who knows what it is and how to deal with it?
Forum: Plugins
In reply to: [Calculated Fields Form] more than the minimumthis does not apply to computing at all.
There are fields in the calculator settings themselves that allow you to enter values so that the user does not enter values less than zero or less than zero. if he enters incorrect values, the preset standard settings tell him that he needs to enter either more or less than zero.
We always set that the user can only enter numbers greater than zero. But then he can enter zero. And I would like to be able to specify in the settings that only positive values can be entered. If he enters non-positive values, then this is signaled to him.
Forum: Plugins
In reply to: [Calculated Fields Form] data output in text formatThank you very much. I did this before contacting you, calculations disappear. I’ll be watching… maybe I made a mistake in parentheses
Forum: Plugins
In reply to: [Calculated Fields Form] Symbol to display at beginning of calculated fieldI’m sorry, but I didn’t understand. could you show me a specific example
Forum: Plugins
In reply to: [Calculated Fields Form] rounding in Field Type: HTML contentYes, it works, but I can’t figure out how to format the text in the form:
Yes, it works, but I can’t figure out how to format the text in the form:
html=”Power consumption of your circuit – <strong><font color=\”#3cce88\”>’+result+’ mW</font></strong>’/;
I like it it is necessary for a unified website design
Forum: Plugins
In reply to: [Calculated Fields Form] dropdownI have set this up, but it is when the calculation takes place, in the calculation header itself, that I need a caption to be displayed, depending on the calculation, that we calculated “Current strength, or “Resistance”. So far, I have only achieved the ability to display this in text mode. But it is precisely above the “results” field that there is a heading. It is static.
(function(){
var result = ”;
if( AND(fieldname2, fieldname40) ){
result = fieldname2/fieldname40;
jQuery(‘.text-here1’).html(‘Voltage drop on all LEDs – ‘+result+’ V‘);} else if( AND(fieldname2, fieldname3) ) { result =fieldname2/fieldname3;
jQuery(‘.text-here2’).html(‘Voltage drop on all LEDs – ‘+result+’ Ohms‘);
}
else if( AND(fieldname40, fieldname3) ) {
result =fieldname40*fieldname3;jQuery(‘.text-here3’).html(‘Voltage drop on all LEDs – ‘+result+’ A‘);
}return result;
})()
Forum: Plugins
In reply to: [Calculated Fields Form] dropdownI need to calculate three values.
Depending on what we select in the drop-down list. So there is a choice in the drop-down list: “Amperage”, “Voltage” and “Resistance”.
In order to calculate “Amperage” I have to enter data in fields 2 and 3.
In order to calculate “Voltage” I have to enter data in fields 2 and 40.
In order to calculate the “Resistance” I have to enter the data in fields 2 and 3.
The functions solve these problems.
But in the “Results” field, you can somehow implement it so that, depending on what value I calculate, information appears in the field header that I have now calculated “Current strength” or “Voltage” or “Resistance”.
Forum: Plugins
In reply to: [Calculated Fields Form] The drop-down listYes. it work
(function(){
var result = ”;
if( AND(fieldname2, fieldname40) ){
result = fieldname2/fieldname40;} else if( AND(fieldname2, fieldname3) ) { result =fieldname2/fieldname3; }
else if( AND(fieldname40, fieldname3) ) {
result =fieldname40*fieldname3;
}return result;
})()
These formulas calculate data in a specific field. But how do I make sure that each formula highlights only its specific name when calculating. For example, if the previous formula is calculating, then it is necessary to issue “example 1”, if the second formula, then “Example 2”, if the third, then “Example 3”.
Forum: Plugins
In reply to: [Calculated Fields Form] how to hide a field if the calculation is zeroif(result) SHOWFIELD(fieldname123|n); else HIDEFIELD(fieldname123|n); return result; })()
Hmmm… does not work… there is a field 3 that should be displayed or not displayed. I correct field 123 to field 3. And field 3 becomes inactive in no imaginary is not displayed at all under any parameters.
(function(){ var result = fieldname1+fieldname2; return IF(result, result, ''); })()
However, this one works
Forum: Plugins
In reply to: [Calculated Fields Form] how to hide a field if the calculation is zeroWith this code, no value is output. But the field itself remains. It is possible to implement somehow so that the field is not shown in the results of calculations
The image blurs to the entire area of the screen. What CSS is needed? to put an image in size 150important!
#fbuilder .image-container img{max-width:10px !important; opacity:1 !important;} – is no work
Forum: Plugins
In reply to: [Calculated Fields Form] Images are not displayedWorks. I didn’t regret a minute that I switched to your plugin. You are geniuses
Forum: Plugins
In reply to: [Calculated Fields Form] Images are not displayedThanks. It’s decided. Maybe it will help someone. If you have a “NewsPaper” theme, you may have such a problem. It is necessary to insert the following code into the CSS of your theme:
body.td-animation-stack-type0 .td-animation-stack .entry-thumb, body.td-animation-stack-type0 .post img:not(.woocommerce-product-gallery img):not(.rs-pzimg), body.td-animation-stack-type0 .td-animation-stack .td-lazy-img { opacity: 100; }
The whole problem was opacity. Remove the “0”. And everything works. The plugin is the most powerful!
Forum: Plugins
In reply to: [Calculated Fields Form] Images are not displayed