iantresman
Forum Replies Created
-
If anyone wants to continue to use the Toolset Types plugin Version 2.3.4, a workaround is to:
- Download and activate the Classic Editor plugin, or,
- Download and activate the Gutenberg plugin
Forum: Fixing WordPress
In reply to: WP 5.0 Edit/New post/page shows blank white screen [solved]Happy to have this thread resolved. Thank you for your comments.
Anyone wishing to follow the Toolset Types plugin issue should click the link.
Forum: Everything else WordPress
In reply to: Link to “Welcome to WordPress 5.0” about page?This post can’t be empty, and must contain text in order to mark this topic as resolved.
- This reply was modified 7 years, 6 months ago by iantresman.
Forum: Everything else WordPress
In reply to: Link to “Welcome to WordPress 5.0” about page?Found it. In the top-left corner of the admin bar, click the WordPress logo (W), and from the drop-down menu, select About WordPress.
Forum: Plugins
In reply to: [Custom Content Shortcode] Loop passing the year…but out of interest, is there a way to get the current year into a pass/loop?
Forum: Plugins
In reply to: [Custom Content Shortcode] Loop passing the yearThat’s what I like, a different approach. Thank you!
Forum: Plugins
In reply to: [Custom Content Shortcode] Loop passing the yearThis gets me the year, but I don’t know how to use it in a loop. Here is what I tried:
[set year][today format=Y][/set] The current year is: [get year] List of years: [pass item=2016-{year}] <li>{item}</li> [/pass]and this:
[set year][today format=Y][/set] The current year is: [get year] List of years: [pass now=date format=Y}] [-pass year=2016~{now}] <li>{year}</li> [/-pass] [/pass]I’m hoping to see:
The current year is: 2018- 2016
- 2017
- 2018
- This reply was modified 7 years, 7 months ago by iantresman.
- This reply was modified 7 years, 7 months ago by iantresman.
Forum: Plugins
In reply to: [Custom Content Shortcode] Just add imageThis is what I used on the home page, in the section “Upcoming Concerts”, which includes a featured image, at https://www.sandbach-concert-series.co.uk
[raw]<div class="eventscoming"> [loop type=event count=12 field=wpcf-date value=future-time in=timestamp order=asc orderby=field_num offset=1] <div class="eventbox"> <h3>[field title-link]</h3> <date>[field wpcf-date in=timestamp date_format="D j M Y @ g:ia"]</date> <div class="eventimage">[field image-link size=medium]</div> [link url]More...[/link] </div> [/loop] </div>[/raw]Forum: Plugins
In reply to: [Custom Content Shortcode] [field excerpt] not removing HTML?Sorry, false report. When I use any of the following:
[field excerpt]
[field excerpt html=true]
[field excerpt html=false]
[field excerpt format=false]I always see as output: <p></p><p>Some text</p>
I can’t get the HTML tags to be stripped out.
Forum: Plugins
In reply to: [Custom Content Shortcode] [field excerpt] not removing HTML?Adding html=true, stripped the html tags.
Forum: Plugins
In reply to: [Custom Content Shortcode] Feature request: Formatting of field text valuesJust found the escape/unescape formatting option in the Content tab.
Forum: Plugins
In reply to: [Custom Content Shortcode] [field excerpt] not removing HTML?I want to remove HTML, ie html=false, but my HTML is not being removed by default.
Forum: Plugins
In reply to: [Custom Content Shortcode] How to group results?That’s what I thought.
I would like to suggest that [for each] is enhanced to work with custom fields too!
Forum: Plugins
In reply to: [Custom Content Shortcode] Comparing custom datetime fieldI think I’ve solved the problem, which I had over complicated. The solution is to remove the [pass] field:
[if field=wpcf-date value=past-time in=timestamp]
CONCERT ENDED
[else]
Coming soon.
[/if]Forum: Plugins
In reply to: [Custom Content Shortcode] Custom date field sorting bug?Genius, thank you!