Allow the `custom_field_compare` to accept a value of `exists` or `not_exists`
Currently, the custom_field_compare query parameter only accepts the following values: “equal” (default), “not”, “before”, “before_inclusive”, “after”, “after_inclusive”. If it’s possible to test for an empty string, we should expand this to allow a value of “exists” or “not_exists” to easily filter out posts where the meta is empty instead of needing to write custom_field_compare=”not” custom_field_value=””
Calendar loop: add ability to generate a calendar loop in descending order
As noted by @Birkeholm on the forum: discourse.tangible.one/t/sorting-ordering-months-in-a-calendar-loop/999 In the current version of the plugin, the calendar loop generates years/months/days chronologically (lowest/oldest date to highest/latest date). It’s possible to use the sort_field and sort_order attributes to sort the items in the loop after it’s been generated, but this doesn’t sort the fields within the loop, so…
In the "all templates" menu, remember the order in which template posts are sorted
As requested by @Rips on the forum: discourse.tangible.one/t/code-editor-improvements/907
Add location option to allow rendering an L&L layout before the closing `head` or `body` tags
Requested by Ben in an internal discussion. L&L layouts could theoretically be used as a replacement for those single-purpose plugins that insert headers and footers. To do this, there would need to be an option in the “location” menu of an L&L layout that would allow selecting whether the template should be loaded before the…
Allow the Format tag to trim characters from the beginning and end of a string
original thread on the forum:discourse.tangible.one/t/removing-the-https-from-a-url-field/955 Description:“In php (ACF) I do this: $website = get_field(‘website’);$website_nice = parse_url( $website, PHP_URL_HOST ); Wondering if there’s something that will do the same thing in L&L? I have tried the Format tag which works great but it still retains the trailing / which the php code removes.“ This could be…
Add ‘Move to trash’ option under bulk actions
As requested by @Rips on the forum: discourse.tangible.one/t/code-editor-improvements/907
Detect lower case dynamic tags (e.g. shortcode instead of Shortcode)
As requested by @Rips on the forum: discourse.tangible.one/t/code-editor-improvements/907
Styles - Don’t return errors for declarations with 4 space indents
As requested by @Rips on the forum: discourse.tangible.one/t/code-editor-improvements/907
Language condition for tag, e.g.
For multilingual websites, it would be extremely helpful to be able to use an tag to output different content depending on the language of the current page. I think something similar to the following examples might work well: <If lang=”en”><h1>Hello</h1></If> <If lang=”fr”><h1>Bonjour</h1></If> <If lang=”de”><h1>Hallo</h1></If>
Please allow use of dynamic tags in Style tab
Please allow use of dynamic tags in style tab. Or with Style field.I want to fetch custom css styles for each page.