Liferay 7 , Abstract and tags of web content are not added as meta description and keywords - seo

In liferay 6.2 when I create web content or blog , I add Abstract and tag for categorization .
In asset publisher when I click on view more for full content then in page this abstract is added as meta description and tag is added as meta keywords .
But in liferay 7 this is not happening . I am not able to find that whether this feature has been removed in liferay 7 or am I missing something ?

I'm afraid that we don't have that feature on Liferay 7. I wrote several comments on their issues forum but it hasn't been fixed or changed.
I will release a blog post about it this week and I hope they will take care about it in future releases.
Regards

Related

Adding manual schema (rich snippet) code to wordpress website( template) without yoast

we are working on SEO for one of the content related (article, videos) website and using wordpress template to build the website. Now if I use yoast generated schema the standard webpage schema is being used to all the pages which I really don't want and won’t be useful. I need to insert the schema according to the page category that can be manually coded (json-ld) or using any plugin that supports category wise schema uploading.
Please help me how to add schema code manually to wordpress website each page or any plugin that will help me to do the same.
you can use to Custom Fields.
you need add your schema code to article and Video Custom field and choose that on every post.

Expression Engine to Craft CMS

Hello I've recently migrated a website from EE to Craft using this guide :
https://docs.craftcms.com/feed-me/v4/guides/migrating-from-expressionengine.html
However the migration did not cover blog posts comments, and the client wants the comments for each post migrated as well, could you please advise me how to do that ?
Here is the information from the JSON file (I replaced the text to protect my client privacy )
https://codebeautify.org/jsonviewer/y22cc64b3
As seen in the json there is no comments saved anywhere.
And here is the code from the guide that I used
https://gist.github.com/engram-design/5fbe54ef0abb15e3ff6f667291098464
Please let me know if there is any other way of doing that.

XWIKI Tags integration

we are using our own application for tags management. We would like to integrate it with XWIKI Tag application so it would show our tags.
Is it possible to change a source of tags? To use REST endpoint, our DB, etc.
I checked XWIKI REST API, but it allows page tagging only, there is no way to create a tag (without tagging a page). Our use case is:
1. users create tags in our application
2. user opens XWIKI
3. our tags should be available in auto suggestion when tagging a page.
Any ideas?
Thank You
I have not found a way to do this via existing plugin/extension.
As all requests to our app. go via proxy, I routed all requests that XWIKI uses to load tags
/xwiki/bin/view/Main/?xpage=suggest&classname=XWiki.TagClass&fieldname=tags&input=tag-name
to our endpoint and it works.

SEO problems in the liferay blogs managing

On my web site, google webmaster tools tells me that I have duplicate tags meta (<meta description>) in the blogs articles. This tag is linked to the field subscription in liferay administration and corresponds to the table layout in the database.
I would like to know if there is a simple solution to add a specific meta tag for each article.
Be sure that you are filling up Abstract field and tags for blog entries.
By default:
Adding an abstract: The content will be ADDED (not overwritten) to meta description
Adding tags: The tags will be ADDED (not overwritten) to meta keywords.
Blog URLs will have a little difference in those meta-tags between Pages and Blog entries.
Regards!

Dynamic blocks in django templates

It is a question about django that has found absolutely no answer for me.
Let's suppose I have a site where I display two blocks in the sidebar :
A list of the last users who've logged in
A list of the last published blog articles
Let's say that these blocks are to be displayed on 80% of the website urls and presented using template files.
The data for these blocks is generated by code (obviously), bt not by url views.
Well, how to do such a thing ?
You might want to take a look at custom template tags.
Edit: more specifically, look at inclusion template tags.