Shazzad Hossain Khan
Forum Replies Created
-
Forum: Plugins
In reply to: [W4 Post List] How to list posts after a specific date?Thanks Frank, i will include date format indication somewhere so user can understand the usage,
Forum: Plugins
In reply to: [W4 Post List] How to list posts after a specific date?You can use date query & use specific date with key –
after
.Forum: Reviews
In reply to: [W4 Post List] Great StuffThanks ??
Forum: Plugins
In reply to: [W4 Post List] Posts list not loading and W4 Post List tabs not workingAs per the ss, i can assume you are using jquery from a cdn service, not the one shipped with WordPress. jquery’s
live
is a depreciate function that is still kept in wordpress with jquery-migrate library. But the cdn service does not include that.Forum: Plugins
In reply to: [W4 Post List] Posts list not loading and W4 Post List tabs not workingHi,
Can you check if browser’s javascript console provides any error ?
I couldn’t reproduce the issue on a clean WordPress installation.
Forum: Plugins
In reply to: [W4 Post List] Custom Post Field with link to post pageYou could try this
<a href="[post_permalink">[post_meta key="custom"]</a>
Forum: Plugins
In reply to: [W4 Post List] Stop see [images]@karol-preiskorn I hope updating the plugin will solve this problem. If not, let me know.
Forum: Plugins
In reply to: [W4 Post List] Stop see [images]@santimb i have fixed [post_image] issue. Please update to latest release.
Forum: Plugins
In reply to: [W4 Post List] Exclude user own postsAuthor exclusion feature has been added. You 0 to indicate current author in “Exclude post author” field.
Forum: Plugins
In reply to: [W4 Post List] GREAT PLUGINThanks.
Forum: Plugins
In reply to: [W4 Post List] Compatibility WordPress 5.3.2Compatibility is checked, now you can upgrade.
Forum: Plugins
In reply to: [W4 Post List] Display Custom Post FieldTo display meta information, use
post_meta
tag –[post_meta key="position"]
[post_meta key="phone"]
Forum: Plugins
In reply to: [W4 Post List] Illegal string offset ‘id’Are you using this plugin version – 2.1.7 ?
What is your server’s PHP version ?I couldn’t reproduce the warning yet.
Tinymce has retired.
Forum: Plugins
In reply to: [W4 Post List] Illegal string offset ‘id’Please check if the shortcode have any html codes around the id. If using classic editor, use
Code Editor
mode (rather thanVisual Editor
) to check the shortcode you’ve placed.Besides, i can see the shortcode is working on your site. Only issue i see is that the tag
<article>
needs a closing</article>
.Forum: Plugins
In reply to: [W4 Post List] Featured Image onlyHi,
To display featured thumbnail, use
[post_thumbnail]
inside the loop. Like –[posts] [title] [post_thumbnail] [/posts]
To display only posts having featured image, go o list edit screen, click on “Posts: Meta Query”, click “+ Add”, enter “_thumbnail_id” in the key column, “=” for the compare column, and leave value empty.
Thanks.