In Typo3 version 9.5 the Functions tab seems to be removed. How do I add multiple pages at once without using this Functions tab?
This functionality has been merged into the backend extension with TYPO3v9.
Just left click on the icon left to your page title in the page tree and select
More options > Create multiple pages:
Related
In TYPO3 6.2 the Special Menu "Related pages (based on keywords)", shows a list of the selected page and all other pages, which have one or more keywords, entered in the page properties, in common.
The problem is that my site has lots of pages with the same keywords and hence in some pages the number of displayed links is excessive.
The question is how could I limit the number of displayed links?
As long as the menu is generated by typoscript, which is the case for TYPO3 6.2, you could configure the menu generation like any other typoscript menu object.
Any menu object has the property maxItems (see manual ). You need to look for the definition of the content elements which should be beneath tt_content:
tt_content.menu.20.6.maxItems = 10
For newer TYPO3 versions the place of TS-defined CEs has changed up to the realisation of CEs by fluid. But still the property maxItems is available.
Is it possible to add icons to the left or right side for Content Elements? I would like to move some of the functionality from the contextMenu to the icon bar, is that possible? Perhaps by TSConfig ? See attachment.
Several options exist for multiple TYPO3 versions and depending on where you would prefer to add the copy/cut icon, or indeed, any other icon you might wish:
Before 10.3 and without fluid-based page layout module:
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['GLOBAL']['recStatInfoHooks']
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['cms/layout/class.tx_cms_layout.php']['tt_content_drawFooter']
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['cms/layout/class.tx_cms_layout.php']['tt_content_drawItem'] through $outHeader variable.
After 10.3 with fluid-based page layout module:
All of the above, plus
Overlay of template EXT:backend/Resources/Private/Partials/PageLayout/Record/Header.html, or
Overlay of template EXT:backend/Resources/Private/Partials/PageLayout/Record/Footer.html, or
Overlay of template EXT:backend/Resources/Private/Partials/PageLayout/Record.html depending on where you want the icon to be placed
These should provide you with every conceivable option for adding the icon precisely where you wish it to be added. TYPO3 10.3 with fluid based page module enabled provides you with the createst flexibility. Earlier versions or with fluid based page module disabled should probably use $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['GLOBAL']['recStatInfoHooks'].
I personaly wouldn't add too many button visible by default on the top right of each content, because it will unnecessarily overloads the amount of information on the page module with action buttons that are not the most often used.
In particular, the "paste" button should only appears when there is something in the clipboard, and it now appears everywhere you can paste (you can see one above the content in your screenshot).
Cheers,
Rachel
For an project, I have extended the TYPO3 TCA with a extra extension, named "project_extends". Now, I have all new TCA Objects - sorted in tabs - on every Treepoint/Contentpage, to configurate some fluid templates or extensions.
For example: I have three tabs, named "Tab1","Tab2" and "Tab3".
Now I want to display Tab1 and Tab3 at the second tree-level of the contentpages, but not at level one.
I don't found a understandable solution via google & co and hope here of helpful solutions :)
That's simple, to hide whole tab you just need to disable ALL fields which are visible on it.
To do this open page properties, find Page TSconfig field and for each field you want to disable add something like this:
TCEFORM.tt_content.list_type.disabled = 1
in this sample tt_content is a required table and list_type is the field. Normally (without above config) it should be visible as only field on the Plugin tab when inserting TT content with type Insert Plugin , however while you disabled it will be hidden and also tab will disappear.
Tip: you can recognize these values using some browser inspection tool, i.e. FireBug of Firefox.
It is easy to define a sidebar on GitHub's wiki page by creating _Sidebar.md file in the root and the sidebar will be automatically appended to every page. But what if we would like to hide it on certain pages, is there any way to achieve this?
This feature seems to not be available for GitHub wikis.
I have also tried the empty _Sidebar.md file as suggested by lucifurious, but all it does is create an empty (blank) sidebar below the "Pages" one.
In TYPO3 6.x, I have a sysfolder where I would like to enable the "abstract" and "media" fields in the Backend page settings. How can this be done?
PS The reason for is that I need their contents cascading to subpages. But the sysfolder/page they're on can't be displayed in the FE, so I want to prevent editors from adding content.
The easiest workaround without manipulating the TypoScript (so it can be clicked-out in 5 seconds) is creating a Shortcut instead of SysFolder, it will behave similar, but you'll keep the page typical fields. Theoretically SysFolders shouldn't be used for storing subpages therefore Shortcuts are more appropriate
Create a Shortcut page type and set its mode to First subpage of selected/current page
Hide this page in menus
If using RealURL check the Exclude from speaking URL checkbox.
Create subpages of that.
That's all