iantresman
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Content Shortcode] Show category term if checkedGetting closer, but it shows all checked values. I want to show a specific term, only if it is checked.
[if each_value]would suggest that this is how to test if a specific term is checked, but I have no idea what “value” a checked term is set to.Forum: Plugins
In reply to: [Custom Content Shortcode] Show category term if checkedI tried that, and it displays the term “Book Review” regardless of whether it is checked or not.
Forum: Plugins
In reply to: [Custom Content Shortcode] Heads up – Incompability with “Post Types Order”I can confirm that this is resolved in the “Post Types Order” settings, by deselect the “Auto Sort” option.
Forum: Plugins
In reply to: [HTML Import 2] Fatal error [] operator not supported for strings [Solved]One more line needs editing:
Existing code
Line 1091: $this->table = '';Edited code
Line 1091: $this->table = [];Yes, localwp.com lets you create a local fresh WP installation. You could create a new install on Siteground, but I find a local site is quicker to setup, edit and delete. A fresh site just lets you test plugins without it endangering an existing site.
HTML Import 2 documentation seems to suggest that it can create a list of redirects, but for use in an htacess file; but starting with this list, you may be able to edit this list so you can import it into a plugin such as the Redirection Plugin.
A new WP install on localwp.com or Siteground will let you try this safely.
I would use a utility such as https://localwp.com/ to create a local new WP Website, and test the import plugin to see how it behaves.
Forum: Plugins
In reply to: [HTML Import 2] wordpress: 5.4.1 support?I’m running WordPress 5.4.2 and I was able to (a) install HTML Import 2.6 (shows in Plugins), and (b) activate it, after which my Settings menu there is an entry for Import HTML, and I can then select the settings and show (c) the HTML Import Settings pages.
If nothing happens for you, when you try and install, do you get (a) an error message? (b) A server log error or warning?
Forum: Plugins
In reply to: [Custom Post Type UI] New custom post type called “author”?I didn’t think of that. The plural will be OK.
Thanks!
Forum: Plugins
In reply to: [10Web Social Post Feed] Acquiring a Facebook app ID and secret>>you should be creator and admin of the Facebook page which you are trying to display
As a Web developer who works for others, this is rarely the case.
Forum: Plugins
In reply to: [10Web Social Post Feed] Acquiring a Facebook app ID and secretThanks for that. Now I’ve found the Facebook page on Permissions, which I think will help.
Forum: Plugins
In reply to: [Dynamic Visibility for Elementor] Dynamic Column VisibilityCould you do the following:
[Section] [Inner section] [Inner section] [Inner section] [End Section]Then use some CSS to display the [Inner section] as inline blocks, or flex elements. Then you can use “Visibility” on each [Inner section]
- This reply was modified 5 years, 11 months ago by iantresman.
Will using the
[raw]..[/raw]shortcodes around your code help?Forum: Plugins
In reply to: [Custom Content Shortcode] Greater than or equal to todayI used the following to display future events:
[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]eventis a custom post type, and would be replaced by “post” for regular posts.
wpcf-dateis a custom field holding the upcoming dates. For regular posts, I guess this is substututed with “date” which is the post’s date field.- This reply was modified 5 years, 11 months ago by iantresman.
- This reply was modified 5 years, 11 months ago by iantresman.
Forum: Plugins
In reply to: [Custom Content Shortcode] Fatal error using [repeater]In this case, I do have ACF enabled (the shortcode is ignore if it is not enabled). Other tags that cause fatal errors include:
[flex][acf_gallery]
So perhaps certain ACF modules need to be enabled for some shortcodes?
Forum: Plugins
In reply to: [Custom Content Shortcode] Accessing multiple value from a custom fieldThank you very much, appreciated.