Sayan Datta
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Last Modified Info] SERP not displaying last modified dateHi,
Please update this plugin to the latest version and follow this screenshot http://prntscr.com/nyx0yh and save plugin settings. Then just allow 3-7 days to Google to recrawl it.
Thanks!
- This reply was modified 6 years, 11 months ago by Sayan Datta.
Forum: Plugins
In reply to: [WP Last Modified Info] Last Update date not showing after theme update :'(Hi, please see the screenshots and apply the changes carefully.
Post Date Fix: http://prntscr.com/nyp34p
Schema Fix: http://prntscr.com/nyp3tz
CSS Fix: http://prntscr.com/nyp525Css Code:
.post-last-modified { margin-left: 4px; color: #444; float: left; display: inline-block; position: relative; top: 2px; }And remove the all previous changes made by you after updating the theme to v9.7.3.
Hope it works. Thank You!
Forum: Plugins
In reply to: [Passwordless Login with OTP / SMS & Email - Account Kit] Facebook LoginHi,
This plugin is not for Social Plugin. Please read the description carefully.
Thanks!
Forum: Plugins
In reply to: [WP Last Modified Info] Display on pageHi,
Have issues to display last modified on pages. Automatically works on posts and CPT but not for pages. Even tried the shortcode without success.
Please enable for Pages from Page Options Tab and save changes and it will definitely work.
And how come you add CreativeWork? and that we can not adjust it. And why do author execute with name and url even if settings are set to not display?
CreativeWork is the simplest schema to show last modified info on SERPs. Json-ld schema markup not depends on plugin settings. However, you can customize the schema output like this:
add_filter( 'wplmi_edit_schema_item', 'lmt_filter_schema_output' ); function lmt_filter_schema_output( $json ) { // unset author output unset( $json['author'] ); // return json return $json; }However I have a plan to add custom schema markup type like Article, Webpage etc support in the future release of this plugin, but I can’t say the actual date for it. Thanks!
Forum: Plugins
In reply to: [WP Last Modified Info] Last Update date not showing after theme update :'(Hi,
Please Go to the loop-single.php file and edit that file like this and save changes: http://prntscr.com/nyiigq
And to remove schema markup from Newspaper theme, please go to http://prntscr.com/nyikoj
and http://prntscr.com/nyikxn. Then make the following changes as shown in the screenshots. Hope this works!Thanks!
Forum: Plugins
In reply to: [WP Last Modified Info] Last Modified Date Display IssuesHi,
Pleae go to Templates Tags Tab and write “Modified on” on the ‘Text before Last Modified Info’ field and write “date” in ‘Custom CSS Class’ field in Templates Tags Tab and save changes.
Hope, it will work.
Thanks!
Hi,
Use this way:
[ufc-fb-comments url="http://www.archetypalimages.com/2016/11/04/water-oil-blood-and-prophecy-the-fight-against-the-dakota-access-pipeline-explodes/"]Thanks!
Forum: Plugins
In reply to: [WP Last Modified Info] Last Update date not showing after theme update :'(Hi,
But this works perfectly fine for me.
Code: http://prntscr.com/nx28og
Output: http://prntscr.com/nx29lwThanks!
Hi
Got it. Please go to the plugin settings > Settings Tab and set color scheme to Dark and save changes.
Screenshot: http://prntscr.com/nw7rje
Result: http://prntscr.com/nw7s9z
Thanks!
Hi,
Sorry, I can’t understand what you want to say. Could you please clearly explain what you want to actually archive using this plugin?
Looking forward to helping you. Thanks!
Forum: Plugins
In reply to: [WP Last Modified Info] Last Modified Date Display IssuesHi,
Go to Template Tags tab and add this line
<span class="date">%published_date%</span>to the “Enter text or HTML to Replace:” field and save changes.Screenshot: http://prntscr.com/nvpoul
Thaanks!
Forum: Plugins
In reply to: [Simple Posts Ticker - Easy, Lightweight & Flexible] Remove LinksIf you want to show all items you can use this way:
[spt-posts-ticker num_posts="-1"]Thanks!
Forum: Plugins
In reply to: [Simple Posts Ticker - Easy, Lightweight & Flexible] Remove LinksHi,
Use shortcode this way:
[spt-posts-ticker num_posts="55"]Thanks!
Forum: Plugins
In reply to: [Simple Posts Ticker - Easy, Lightweight & Flexible] Remove LinksHi,
You can use CSS:
.spt-link { pointer-events: none; text-decoration: none; }Screenshot: http://prntscr.com/nvhuqq
Thanks!
Forum: Plugins
In reply to: [Simple Posts Ticker - Easy, Lightweight & Flexible] Remove LinksHi,
Add the following code to the end of your theme’s functions.php file:
add_filter( 'spt_post_custom_redir_link', function() { return ''; });Hope it works. Thanks!