Sayan Datta
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Last Modified Info] Plugin breaks the post list table in admin areaHi,
You can use like this:
[ufc-fb-comments width="800px"]. List of Parameters: http://prntscr.com/pogrb6Thanks!
Forum: Plugins
In reply to: [WP Last Modified Info] Blog Post Menu SmushedForum: Plugins
In reply to: [WP Last Modified Info] Upgrading from Last Modified TimestampHi,
If you do not want to edit that 60+ pages you can use this snippet to hide the
[last-modified]shortcode output of the previous plugin by adding this to the end of your theme’s function.php file after disabling that plugin:add_shortcode( 'last-modified', function( $atts ) { return ''; });Now you can use auto insert method for posts or pages from plugin settings > Post Options or Page Options.
If you want to use only the shortcode
[last-modified]on all the posts and pages including those 60+ posts, use this snippet instead on the previous snippet:add_shortcode( 'last-modified', function( $atts ) { if( function_exists( 'get_the_last_modified_info' ) { return get_the_last_modified_info(); } return ''; });Now you can configure the settings from plugin settings > template Tags.
Thanks!
Forum: Plugins
In reply to: [WP Last Modified Info] Date does not display in postHi,
Your theme hide this output. To fix this followw this: http://prntscr.com/p0dmpg
.post-last-modified-td, .page-last-modified-td { display: inline-block !important; }Thanks!
Forum: Plugins
In reply to: [WP Last Modified Info] Simple QuestionsHi,
Your don’t need to modify any PHP files.
Just add it
<i class="fa fa-clock-o"></i>before it: http://prntscr.com/ozpgt5 and plugin will do the rest.And pls where i can find shortcode?
What is the shorcode for Php and editor?Shortcode is:
[lmt-post-modified-info]for posts and[lmt-page-modified-info]for pages. You can add it using PHP:<?php echo do_shortcode('[lmt-post-modified-info]'); ?>Thanks!
Forum: Plugins
In reply to: [WP Last Modified Info] How to NOT have update show on everypageHi,
Yes it is possible. Select Manual Mode form plugin settings and use the shortocodes to display last modified info on a particular post or page.
Thanks!
Forum: Plugins
In reply to: [WP Last Modified Info] Link to Author archiveHi,
Please update this plugin to v1.6.1 and enjoy this feature.
Thanks!
Hi,
Sorry log file is not available yet. But you can track user login or registration by using this plugin: https://wordpress.org/plugins/when-last-login/
Thanks!
Hi,
Sorry for the inconvenience you must have caused. Colud you please explain you problem in detail? It ill help me to sort out the actual issue.
Looking forward to helping you. Thanks!
Hi,
Ajax throws a 500 error (http://prntscr.com/oumi2d) from your site. Can you please check if there are any PHP errors in your web server’s error.log or wordpress logs? With HTTP status 500 there usually is some error in the logs.
Thanks!
Forum: Plugins
In reply to: [WP Last Modified Info] Link to Author archiveHi,
Sorry It is not possible right now. I will try to add an option to select new tab or same tab in the plugin settings in the next version of this plugin.
Thanks!
Forum: Plugins
In reply to: [WP Last Modified Info] Intrusive Donation ReminderHi,
Please click on the “I already donated” link in the admin notice. It will hide it permanently.
Thanks!
Hi,
Do you mean existing comments made by WordPress comment system?
Forum: Plugins
In reply to: [WP Last Modified Info] Don’t show Last Modified info in excerptsHi,
Go to posts option is plugin settings and set “show on archives” to no and save changes.
Hope it helps. Thanks!