Maybe, it's very easy, but i don't know how to change the title of front-page in Drupal 8. Could somebody help me?
To change title of the front page view, go to admin/structure/views/view/frontpage, find Global: Title override link.
Note: This will only change the title of the front page if you're using the default front-page /node/0 view.
Open it and it will allow to set custom front page title.
The accepted answer didn't work for me (Drupal 8.2.1) but I was able to change the title using the administrator interface by installing two plugins. Metatag, and Token which is required by metatag.
https://www.drupal.org/project/token
https://www.drupal.org/project/metatag
Related
The contact page of my site is https://example.com/contact_us . On google, it shows like
which is not very good.
It seems there is no way to edit from admin panel the meta title and meta description of this page. neither on theme panel.
So, how to edit this from core files?
catalog/view/theme/default/template/information/contact.tpl
seems not having any related, and don't see a way to edit loading header just for this one page
can you have any idea ?
I hope it's 100% working for you.
Find the controller Path of Page. you wish to edit and then do the below,
PATH : catalog\controller\information\contact.php
Find:
$this->document->setTitle($this->language->get('heading_title'));
Add After:
$this->document->setDescription('My description, this is where i type my text after i remove this text.');
$this->document->setKeywords('my, keyword, this, is, the place, holder, for, my, keywords');
this is my local site: drupaltest1/
When I/anyother developer inspect my site they can recognize which theme I am using. I want to hide the theme being displayed on inspect elements an display the site name in the path. I searched google, but no luck. Anyone please help in achieving this.
Thanks in advance
You could change the name of the theme to your sitename.
in sites/all/themes/ copy your theme folder and rename the folder
then replace the theme name in .info file and use find/replace in template.php and any other theme specific files as well. (notepad++ search in files works well)
upload and enable the new theme in Drupal
If you are not using a custom theme for your site, be sure to check the licensing/copyright to ensure renaming it isn't a violation - and updates may have issues so you could remove the project info and/or packing script info.
If you can create a sub-theme, then you would be able to hide those info(s) from being inspected your site pages.
Please reply if this helped you.
https://www.drupal.org/node/1010576
https://www.drupal.org/node/225125
I am using JSN ESCAPE PRO template (LINK HERE) . I installed sample data but for some reson when I create new article it is not showing on home page. Does someone knows where is the problem ?
When you're editing the article, is Featured set to yes?
If it is, is your default menu item set to the type Articles ยป Featured Articles
That's the easiest way to have articles show up on the homepage, if you need more than one there.
In Joomla 2.5 the sample data home page depends on which sample data you chose. It could be the Joomla category blog view, so in that case you will want to either add your new article in that category or you will want to change the home page to another category view or maybe to featured like #Doyle-Lewis said.
I am beginner to joomla, currently using version 2.5. I have came across a problem with pagination. In my site pagination on all the pages were working well, but suddenly, I don't see any pagination for any page. I don't realized, what setting from admin panel I have changed. I have checked the settings from the Article Manger->options->Shared Options, but all are ok.
Is there any other settings in admin panel to show pagination?
Any help appreciated.
Thanks.
You must seach this in Article Manger->options->"First Tab"
But it can be also placed in the main menu item: Menu->MainMenu->"First item" general settings...
I have realize the problem, when I put <jdoc:include type="module" name="cblogin" /> in my template file, then all the pagination links get disappeared. I have also checked with putting below code -
jimport('joomla.application.module.helper');
$mods = JModuleHelper::getModules('cblogin');
echo JModuleHelper::renderModule($mods[0]);
but, nothing has changed. Is there any other solution to load module into html code?
If you want to add modules to articles, one way is to add a custom position to the article then assign the module to that position. In the article editor add this code
[loadposition myNewPosition]
Then you can assign any module to myNewPosition on the position option. Make sure the module is assigned to all pages.
I need to change the title of my website, because now the title is "Home".I want to add a "like" button to the website and I want something different instead of "Home" for the title. I tried changing the meta tag for "title" but running the url through the facebookb debug tool it says:
Attempted Frozen Title Change It appears that you are trying to change
the property og:title from XX to XY. If so, you are not allowed to for
this object because too many actions have been published against it.
How can I change the title? Thank you!
Sorry if my english is full of mistakes.
There isn't any way to change it. Facebook is basically telling you too many users have the object with the original title connected on Facebook. Changing after too many actions can be seen as an attempt to be misleading.