Project

General

Profile

Actions

Feature #17406

open

Page type Shortcut with anchor points

Added by Florian almost 17 years ago. Updated about 1 year ago.

Status:
Under Review
Priority:
Should have
Assignee:
-
Category:
Link Handling, Site Handling & Routing
Target version:
-
Start date:
2007-06-21
Due date:
% Done:

0%

Estimated time:
PHP Version:
Tags:
Complexity:
Sprint Focus:

Description

Initial situation:
I have a menu point in first level. Lets call it "menu card". At my startpage I
have a CE at the bottom with the menu cards. As there is a lot of other content,
visitors have to scroll down to get there. Therefore I created this extra link to get
sure that they will find it.
Now if I select the page type Shortcut in the BE I only can select another page but no content element in a page like I can do with RTE. Here I just click on the little
red/white arrow to get the selection of all CEs. When I choose one, the user will be directed to this paragraph at once. That's very convenient.

Maybe this feature can be added in a later release?! Thanks

(issue imported from #M5832)


Related issues 4 (2 open2 closed)

Related to TYPO3 Core - Feature #38185: when creating a link to a page, allow to select an intra-page target with the GUIRejected2012-06-20

Actions
Related to TYPO3 Core - Feature #46138: Allow for shortcuts to files (and content-elements?)New2013-03-08

Actions
Related to TYPO3 Core - Feature #66218: Linkhandler for ShortcutNew2015-04-01

Actions
Related to TYPO3 Core - Feature #81379: For a page_type "Shortcut" make it possible to link to specific content Closed2017-05-30

Actions
Actions #1

Updated by Thorsten Kahler almost 17 years ago

Hi Florian,

did you try it with page type "external url"? This might be a short-term solution for you.

Actions #2

Updated by Florian almost 17 years ago

Thanks, I tried this. It's working so far :)

Actions #3

Updated by Alexander Opitz almost 11 years ago

  • Status changed from New to Needs Feedback
  • Target version deleted (0)

As this report is very old, is the handling in newer TYPO3 CMS Versions (like 6.0/6.1) more like you expect it?

Actions #4

Updated by Alexander Opitz over 10 years ago

  • Status changed from Needs Feedback to Closed

No feedback for over 90 days.

Actions #5

Updated by Tao Nguyen almost 9 years ago

Hiho,

there is still no option (Typo3 6.2) to use an anchor while using "Shortcut". Using "Link to external URL" is not a real solution, since it is not dynamic.

Just adding a small field next to "Shortcut Target" where the user can add #anchor or something like that would be enough.

Actions #6

Updated by Sebastian Michaelsen about 8 years ago

  • Status changed from Closed to New
  • PHP Version deleted (4.3)

This feature is still missing in TYPO3 8 and would definitely be helpful.

Actions #7

Updated by Sebastian Michaelsen almost 8 years ago

I've created a little extension to cure my own itch: https://github.com/smichaelsen/typo3-shortcut-params

Maybe that can help others with the same demand or can be the starting point to build it into the core.

Actions #8

Updated by taywa gmbh over 7 years ago

+1

Workaround with external url is possible, but then no menu with active state can be renderd. please consider this to implement. maybe use code from https://github.com/smichaelsen/typo3-shortcut-params for it.

I just tried this ext and its working well. thanks!

Actions #9

Updated by Denis Mir over 7 years ago

Would be a nice addition.

Actions #10

Updated by Riccardo De Contardi almost 7 years ago

  • Related to Feature #81379: For a page_type "Shortcut" make it possible to link to specific content added
Actions #11

Updated by Susanne Moog over 6 years ago

  • Category set to Link Handling, Site Handling & Routing
Actions #12

Updated by Christian Fries over 5 years ago

Would definitely be a nice addition.

Actions #13

Updated by Peter Linzenkirchner over 4 years ago

I agree: would be useful.

Actions #14

Updated by taywa gmbh about 4 years ago

"Will meet again", did a search on google, and ups, I did need this 3 years ago and again now. Sadly still not implemented yet. And https://github.com/smichaelsen/typo3-shortcut-params is not working with TYPO3 9! So still +1

Actions #15

Updated by Markus Zipfel almost 4 years ago

I was trying to create a shortcut to a content element and thought it might be sufficient to override the TCA of pages and update the database column pages.shortcut to VARCHAR(255):

my_extension/Configuration/TCA/Overrides/pages.php

<?php
defined('TYPO3_MODE') or die();

(function () {
    $GLOBALS['TCA']['pages']['columns']['shortcut']['config']['allowed'] = 'pages,tt_content';
})();

my_extension/ext_tables.sql

#
# Table structure for table 'pages'
#
CREATE TABLE `pages` (
    `shortcut` varchar(255) NOT NULL DEFAULT '',
);

The result is a value like tt_content_1234 in the shortcut column.

I know: It's not a valid typolink parameter. But it's possible to use e.g. a ViewHelper that processes this value and replaces "tt_content_" with the PID of the content element followed by "#" (so that we get 12#1234 - means content element 1234 on page 12) which would be a valid typolink parameter.

Maybe that's helpful for someone out there...

Actions #16

Updated by Tim Lochmüller over 3 years ago

Based on Markus comment, I kicckstart this extension: https://github.com/lochmueller/custom_shortcut
This allow pages (incl. migration wizard), tt_content and option for more thrid party records.

Regards,
Tim

Actions #17

Updated by Gerrit Code Review about 1 year ago

  • Status changed from New to Under Review

Patch set 1 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/77700

Actions #18

Updated by Gerrit Code Review about 1 year ago

Patch set 2 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/77700

Actions #19

Updated by Gerrit Code Review about 1 year ago

Patch set 3 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/77700

Actions #20

Updated by Gerrit Code Review about 1 year ago

Patch set 4 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/77700

Actions #21

Updated by Gerrit Code Review about 1 year ago

Patch set 5 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/77700

Actions #22

Updated by Gerrit Code Review about 1 year ago

Patch set 6 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/77700

Actions #23

Updated by Gerrit Code Review about 1 year ago

Patch set 7 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/77700

Actions #24

Updated by Gerrit Code Review about 1 year ago

Patch set 8 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/77700

Actions #25

Updated by Gerrit Code Review about 1 year ago

Patch set 9 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/77700

Actions #26

Updated by Gerrit Code Review about 1 year ago

Patch set 10 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/77700

Actions #27

Updated by Gerrit Code Review about 1 year ago

Patch set 11 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/77700

Actions #28

Updated by Gerrit Code Review about 1 year ago

Patch set 12 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/77700

Actions #29

Updated by Gerrit Code Review about 1 year ago

Patch set 13 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/77700

Actions #30

Updated by Gerrit Code Review about 1 year ago

Patch set 14 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/77700

Actions #31

Updated by Gerrit Code Review about 1 year ago

Patch set 15 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/77700

Actions #32

Updated by Gerrit Code Review about 1 year ago

Patch set 16 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/77700

Actions

Also available in: Atom PDF