Sayan Datta
Forum Replies Created
-
Hi @robbie13
that we have an option under settings to put the “last update” right after the publish date
This is impossible as there are many themes available for WordPress. You need to manually edit your theme files.
that we have an option under settings to hide “last update date” if the date is the same as publishing date (otherwise it shows twice the same date)
I may consider it in the upcoming version of this plugin. But when I have not decided right now.
Thanks!
- This reply was modified 7 years, 3 months ago by Sayan Datta.
Forum: Plugins
In reply to: [WP Last Modified Info] Filter to override Publish date not workingTry to use this way:
if ( function_exists( 'get_the_last_modified_info' ) ) { $original_time = get_the_time('U'); $modified_time = get_the_modified_time('U'); if ( $modified_time > $original_time + 86400 ) { // 86400 seconds i.e. 24 hours, set it according to your need echo 'UPDATED: '. get_the_last_modified_info() .' / '; } } echo 'PUBLISHED: '. get_the_date();This below snippet is actually not for template tag. It is for the auto inserted last modified date using
the_content()filter.function override_time_diff() { return '86400'; // 86400 seconds i.e. 24 hours, set it according to your need } add_filter( 'wplmi_date_time_diff_post', 'override_time_diff' ); add_filter( 'wplmi_date_time_diff_page', 'override_time_diff' );Thanks!
Forum: Plugins
In reply to: [RevivePress – Keep your Old Content Evergreen] Change Post Eligibility TimeHi @oct4v3
Go to
wp-content\plugins\wp-auto-republish\admin\settings-fields.phpon line 99 and add this line$items = apply_filters( 'wpar_republish_eligibility_age', $items );.Before: http://prntscr.com/mfrge4
After: http://prntscr.com/mfrgzcAnd then add this snippets to the end of your active theme’s functions.php file:
add_filter( 'wpar_republish_eligibility_age', 'wpar_add_custom_age' ); function wpar_add_custom_age( $items ) { $item = array( '1' => __( '1 Day', 'wp-auto-republish' ), '2' => __( '2 Days', 'wp-auto-republish' ), '3' => __( '3 Days', 'wp-auto-republish' ) ); return array_unique( array_merge( $item, $items ) ); }This will add options like this: http://prntscr.com/mfrfby. Then select resave changes.
Thanks!
- This reply was modified 7 years, 3 months ago by Sayan Datta.
Forum: Plugins
In reply to: [WP Last Modified Info] Last updated is not showing on search engineHi, first of all, if you are using the latest version this of this plugin you do not need to add any code to the end of your functions.php file anymore. So you can delete those code from functions.php file as I have already added this codes from plugin v1.4.6.
Now you can do one thing, please update it to the latest version ( as I have added some fix to GeneratePress Users some times ago, if you have already updated the plugin to latest version, then please delete this plugin and reinstall it from WordPress.org repo and just activate and configure it) and please wait for at least 4-5 days. Google will recognize the dateModified markup and definitely shows the last modified info to the SERPs.
PS: I can’t see that this plugin is in use here (https://www.cyclinghacks.com/stages-power-meter-review/). If you want to keep showing last modified info to SERPs, you need to keep activate this plugin.
Thanks!
Forum: Reviews
In reply to: [WP Last Modified Info] Great, but…Hi, it is the problem of wordpress not of this plugin. Please read this post: https://www.engagewp.com/insert-shortcodes-text-widgets-excerpts/ – how to use shortcodes in excerpt.
Thanks!
I will try to add this in the next release. Thanks!
Forum: Plugins
In reply to: [WP Last Modified Info] Extra Date ShowingHi, I think you have rolled back to v 1.4.5 and currently v1.4.5 is in use. GeneratePress Theme has some inbuilt schema markup feature like this: http://prntscr.com/metgiz. If you want to show the last modified date to SERPs, then you need to remove datePublished Schema from your website.
Read this: https://wordpress.org/support/topic/jason-ld-vs-inline-micro-data/
From v1.4.6 of this plugin, if GeneratePress theme is active, this plugin will remove datePublished schema markup automatically (see this: http://prntscr.com/metngg). It is on my test site).
But currently, your website has this schema markup (http://prntscr.com/metljf). If it presents on your website, Google or other search engines do not show the last modified date in SERPs (http://prntscr.com/metmbc).
When the page is fully loaded scroll up and in the top right corner, above the logo, you’ll see “January 30th, 2019”. How do I prevent that from happening?
This problem is not happening on my site using plugin v1.4.7, GeneratePress and with or without GP Premium Plugin.
another issue I noticed was that it changed all the original dates to the last updated date and bing.com was showing three dates in the page’s description (all the same date; just listed three times).
I think you mean it: http://prntscr.com/metpzl. It is a temporary issue. Bing will revisit to your site and it will be fixed soon.
Thanks!
Forum: Plugins
In reply to: [WP Last Modified Info] Extra Date ShowingHi, could you please provide me login details to login to your site to investigate this as I could not identify this issue on my end?.
Forum: Plugins
In reply to: [WP Last Modified Info] Extra Date ShowingWhich version is causing problem to your website?
- This reply was modified 7 years, 3 months ago by Sayan Datta.
You can do it via some custom coding:
function wpar_add_custom_redirect_after_login() { return 'https://custom url'; } add_filter( 'fbak/account_kit_sms_login_success_url', 'wpar_add_custom_redirect_after_login' ); add_filter( 'fbak/account_kit_email_login_success_url', 'wpar_add_custom_redirect_after_login' );Add this codes to the end of your currently active theme’s functions.php file and specify the custom url where you want to redirect after a successful login.
Thanks!
- This reply was modified 7 years, 3 months ago by Sayan Datta.
Sorry I can’t understand what you want to say.
Forum: Plugins
In reply to: [WP Last Modified Info] GeneratePress problemHi @marius84
I could not reproduce this issue on my end. However, I have released a fix. It may fix this issue. Please Deactivate and Delete plugin from your WordPress site and reinstall from WordPress.org repo and activate this plugin again. And check it.
Thanks!
Forum: Plugins
In reply to: [WP Last Modified Info] Notice: Trying to get property of non-objectThanks for your confirmation. I will update the plugin very soon.
Thanks
SayanIf you have not enabled the email login option from here http://prntscr.com/me5g5h, then only this error can happen. Otherwise, this error cannot be happened. Please check this
Thanks!
I have tried several times in my websites and test sites with vi_VN. There are no such error with vi_VN. I think you have not properly configured your Facebook app settings.
View Screenshot: http://prntscr.com/me5g5h
- This reply was modified 7 years, 3 months ago by Sayan Datta.