vivanco
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: images in the media library are not showingI am having this issue!
Forum: Plugins
In reply to: [WP Show Posts] Do not display ellipsisThanks! Seems to work well. ??
Forum: Plugins
In reply to: [WP Show Posts] Do not display ellipsisHi
I am late to this as well, but back onto the site I am developing… I went into the plugin php and got rid of the ellipsis there. Not the best practice, I know, but it worked for now.
Best,
I agree. This is awful – I’m on the hunt for a new slider!
Forum: Plugins
In reply to: [WP Show Posts] Ordering posts in a predetermined way1.9 million others have heard of it, but I flail in the dark!! My googling skills are dropping…
Thanks so much, this seems to have done the trick.
Forum: Plugins
In reply to: [WP Show Posts] Ordering posts in a predetermined wayAS a follow up, I see I can change the published date and time, so I can see I can use this to manipulate orders, albeit it could be a messy way of doing it if re-edits etc are required. Still, a solution.
Best,Forum: Plugins
In reply to: [WP Show Posts] Title and excerpt alignmentThanks, no problems. Will use my editing talents to try for titles of two lines (I do see that the flow is of course different on iPad size, so I may be on a goosechase).
Yep, I agree, looks fantastic. Have been looking for this for a while!
Keep up the great work.
Forum: Plugins
In reply to: [Calculated Fields Form] Function IF > do not work perfectly ?Try ==. ie two equals signs…
Forum: Plugins
In reply to: [Calculated Fields Form] publishing of form, predefined, submit, resultsThe submit functionality is only available in the paid version:
“Features in Premium version
.
.
.
Submits the form data, and stores the data on database, for future revisions”My advice would be to carefully read the various instructions around the place as the answers to your questions are there:
https://www.ads-software.com/plugins/calculated-fields-form/
https://wordpress.dwbooster.com/forms/calculated-fields-form#demo
>> tabs
Description & Features
Installation & Use
FAQ
Settings & Add-OnsGood luck!
One thing is that you have misspelt “return” as “reutrn”.
Forum: Plugins
In reply to: [Calculated Fields Form] Increase number of rows in calculated fieldah – the output I get is actually
<a href="https://www.w3schools.com">Free Web Building Tutorials!</a>
in the sheet.How to hyperlink in the form is a separate question (any ideas?)
Forum: Plugins
In reply to: [Calculated Fields Form] Increase number of rows in calculated fieldThanks. I can’t seem to get that to work; if I replace the “var result;” line with eg the below, with all the rest being the same:
var str = "Free Web Building Tutorials!"; var result = str.link("https://www.w3schools.com");
I get the relevant output (ie “Free Web Building Tutorials!“) in the new textarea field.
So I played with “str” code for a while, but couldn’t get the calculation to work. Note I have tested the calculation in an independent field at the same time and it works.
I am a newbie at javascript and the W3 pages aren’t helping on this…
Best,
Forum: Plugins
In reply to: [Calculated Fields Form] code to a text value based on a numberThis should help you – it is from this page: https://www.ads-software.com/support/topic/change-date-format-16?replies=13
“…Now, you should open the “module_public.js” file, located in “/wp-content/plugins/calculated-fields-form/js/modules/01_mathematical_logical/public/module_public.js”, in the text editor your choice, and modify the snippet of code:
‘validator’ : function( v )
{
return isFinite( v ) || /\d{2}[\/\-\.]\d{2}[\/\-\.]\d{4}/.test( v );
}like follow:
‘validator’ : function( v )
{
return typeof v != ‘undefined’;
}…”