Sayan Datta
Forum Replies Created
-
What is your website?
Forum: Plugins
In reply to: [WP Last Modified Info] Hide Last Modified Info from ExcerptHi @kyle-tully
Sorry for my late response.
Last Modified Info is being pulled into excerpts
Sorry I could not understand what you want to say? Could you please explain it, please?
Thanks!
Forum: Plugins
In reply to: [WP Last Modified Info] Projecting Modified date into Custom FieldHi @xclnt
When you save a post, this plugin automatically saves the last modified time into the post custom field. You can get that field value to display on your frontend.
Thanks!
Hi @heena1
Ok fine. You do not need to provide me with the login details anymore as it is the problem with Facebook’s Account Kit Js – Email Login System. I am also facing this issue on my dev and production site. I will try to contact Facebook Support Team to investigate this issue. For now, Disable Email Login if it is not working on your website.
Thanks!
Hi @heena1
Have you properly configured plugin settings?
Forum: Plugins
In reply to: [WP Last Modified Info] Multi Langauge SetupHi @bhallottawa
This plugin already has multilanguage support. Please use Polylang or WPML to use the multilanguage option.
Thanks!
Hi @eugenevdm
Just update this plugin to v1.5.2 and add
wplmi_elementor_widget_query_filterin Query ID like this: http://prntscr.com/n4kheeIt will override Elementor’s orderby option on this particular widget. You can set ASC or DESC from Elementor option normally.
Thanks!
PS: Please open a new topic if you have some new question or need some help.
Forum: Plugins
In reply to: [WP Last Modified Info] How to change admin sort orderHi @eugenevdm
It is possible. Just add this snippet to the end of your functions.php file.
function orderby_modified_posts( $query ) { if( is_admin() ) { $query->set( 'orderby', 'modified' ); $query->set( 'order', 'desc' ); } } add_action( 'pre_get_posts', 'orderby_modified_posts' );Thanks!
Forum: Plugins
In reply to: [WP Last Modified Info] After today update JS backend errorHi @ligend
WordPress Indicates the update. http://prntscr.com/n359h4
Please wait some time if WordPress does not report any further updates to you.
Thanks!
Forum: Plugins
In reply to: [WP Last Modified Info] After today update JS backend errorHi @ligend
I have released an update. Hope it will fix those errors. Please update your plugin.
Thanks!
Forum: Plugins
In reply to: [WP Last Modified Info] Modified date not showing on postsHi @dmjhar
But in my case, it is working perfectly. http://prntscr.com/n34hw3
Please review your settings again!
Thanks!
Forum: Plugins
In reply to: [WP Last Modified Info] Modified date not showing on postsHi @dmjhar
Please change %%published_date%% to %published_date%.
Thanks!
- This reply was modified 7 years, 1 month ago by Sayan Datta.
Forum: Plugins
In reply to: [Simple Posts Ticker - Easy, Lightweight & Flexible] EventsHi @jward222002
Use this:
function spt_post_ticker_filter_todays_post( $args ) { $today = getdate(); $args['date_query'] = array( array( 'year' => $today['year'], 'month' => $today['mon'], 'day' => $today['mday'], ), ); return $args; } add_filter( 'spt_ticker_custom_query', 'spt_post_ticker_filter_todays_post', 10, 1 );Thanks!