Magento 1 Product Tag Pages and Meta Data - tags

At Magento 1.9, I noticed that the meta description tag of the Product Tag pages is actually the text configured at field System > Configuration > GENERAL > Design > HTML Head > Default Description. Similarly, the meta keywords tag of the Product Tag pages is actually the text configured at field System > Configuration > GENERAL > Design > HTML Head > Default Keywords. For example, the following Product Tag page:
https://www.dlastore.com/e_store/tag/product/list/tagId/22938/
This results to having a large number of pages with the same content for meta description and keywords tags, something that search engines don't generally like. Is there any way to change that programmatically and use the text appearing at the title of the Product Tag pages for the meta description and keywords?
The text appearing at the title of the Product Tag pages is unique per page, so a solution like this would be fine.

Related

Blog-like single element pages with TYPO3 / TemplaVoila

I have a blog-like part of an page using TYPO3 / TemplaVoila. There are articles that should show up summarized on a single page, but have their own pages / URLs each one too.
However, having the editors add a page AND a flexible content element for each entry is complicated.
So is it possible by some typoscript to have a page, showing a single content element from some other page, sporting a proper URL without having to setup an extra page for each element?
What you want is doable without TV and with other records than tt_content.
e.g.: ext:news does it: the content are news records, which are shown with plugins in list- and detail-mode.
Of course you can reinvent the complete logic of such an extension so you can do it with tt_content records, which could be stored in the usual way scattered on multiple pages.
But the logic is clearer if there only is one page (or very few pages which represent some categorization) where special records are stored.
Plugins would be configured to show only selected records (from one category, which are marked top, which are current, ...) and you have one page (one for all and not for each news one) where the records are shown in detail.
Also each has it's own URL, either with URL-parameter (by default) or you configure realurl (or similar) to build a "real url" from news title (and uid).

How to add meta keywords in news item with contao

I am extending news module. I have to show meta keywords in news reader module. I have a keyword field in my decay. I have to set the keyword from dca to meta tag. I tried this using
$GLOBALS['TL_KEYWORDS'] .= 'keyword1,keyword2';
Its working fine. But I need to fetch the value from the record. How can the value can fetch from newslistmodule extended of my extension?

One index page with <div> tags to separate page

One index page with tags to separate pages.
One long HTML5 index page is used as the template, with different sets of tags to separate header and footer bars on each page, using a clear file structure with all external files and links.
I know a jQuery can do that for you with index page, with different sets of tags to separate each pages. But I'm stuck there with jQuery with a limited CSS3 styling freedom.
I'm using mostly CSS3 to style the page and JQuery for features and functionality instead.
I find jQuery approach of tags are limited and I'm stuck with it.
Is there template examples or code available similiar to jQuery with header and footer and tags for individual pages on a same index.html, not as anchor tags within a page?
multipage layout?
http://jquerymobile.com/demos/1.2.0/docs/pages/multipage-template.html
http://jquerymobile.com/demos/1.2.0/docs/pages/page-anatomy.html
Theme Roller:
http://jquerymobile.com/themeroller/index.php

Actions showing up with doubled titles

We are having events show up with their titles duplicated twice. Ideally, we would like the site name to show up on the second line. We have a title, site_name, and description in our og: metadata.
Is there a way to configure these events to display these fields correctly?
We found the configuration section in the facebook developer interface to change this. It's under Apps > Edit Open Graph > Aggregations > (event type name), and then you can change the caption lines.

TYPO3 tt_news : No code given

I just inherited this TYPO3 project and have a bunch of tasks to perform with it (adding this here, and that there, etc.) and I'm at the task "Add news to the front page" and "Add a RSS feed to the site"
Well, the tt_news extension is installed and I have created 1 test news. Now I added a page content plugin of type "News" and configured it from the best of my knowledge, following the outdated manual provided with the extension, saved the page, cleared the cache and refreshed the frontend page to see this :
...What does it mean and how do I make the extension work?
Edit the content element containing tt_news extension and at the Plugin tab in select field What to display choose default view ie: Standard list view (LIST)
Also:
make sure that in Content Element's settings you choose correct
folder with tt_news records in field Other settings > Page(s)
with tt_news records
tt_news records are created by default with Hidden flag set to true, make sure that the checkbox is unchecked. (BTW this behaviour can be changed with TCAdefaults.tt_news.hidden=0 in PageTS or UserTS)