![]() |
Форум больше не используется. Присоединяйтесь к каналу #community-ru в Slack for TYPO3 community |
|
|
#1 |
|
Senior Member
Регистрация: 15.02.2006
Адрес: Петербург
Сообщений: 462
|
Как можно сделать ссылку на элемент контента, а не на целую страницу?
Пробую взять пример из экста rgmoodalbox здесь в примере все работает нормально: пример да и без лайтбокса тоже вот Код:
Get a single content element
To get a single content element inside a lightbox you just need a bit of TS Code. Create somewhere a page and add this TS
# TS CODE
# get tt_content elements
temp.record = COA
temp.record {
10 = RECORDS
10 {
tables = tt_content
source.data = GPvar:ce
if.isTrue.data = GPvar:ce
dontCheckPid = 1
}
}
# get news reocrds
temp.record2 = COA
temp.record2 {
10 = RECORDS
10 {
tables = tt_news
source.data = GPvar:news
if.isTrue.data = GPvar:news
dontCheckPid = 1
}
}
# load it into the page-Object
page.10 >
page.10 < temp.record
page.20 < temp.record2
All what you now have to do is call a url like this for content elements:
index.php?id=174&ce=55&no_cache=1
and this url for tt_news records:
index.php?id=174&news=25&no_cache=1
174 is the ID of the page where you saved the TS Code.
Modify links on the fly
Убрал в коде новости получил: Код:
# TS CODE
# get tt_content elements
temp.record = COA
temp.record {
10 = RECORDS
10 {
tables = tt_content
source.data = GPvar:ce
if.isTrue.data = GPvar:ce
dontCheckPid = 1
}
}
page.10 >
page.10 < temp.record
|
|
|
|
|
|
Похожие темы
|
||||
| Тема | Автор | Раздел | Ответов | Последнее сообщение |
| Один элемент контента для нескольких страниц | MVH | Общие вопросы | 3 | 16.02.2010 17:56 |
| Как сделать чтобы элемент контента не отображался для группы пользователей? | Olga25 | Общие вопросы | 5 | 19.06.2009 10:23 |
| Элемент контента Table с ссылками. | razawa | Общие вопросы | 15 | 26.03.2009 15:12 |
| Как сделать ссылку на несколько страниц назад? | Илья | Общие вопросы | 0 | 24.09.2007 17:58 |
| ПРОБЛЕМА! Создаю таблицу, как элемент контента. | thebat | Общие вопросы | 4 | 09.03.2007 13:58 |