Re: [TYPO3-english] DIR include of TypoScript

2013-10-08 Thread Søren Malling
Hi Ralf, Interesting suggestion. I will much more hope that people can structure there files in to directories ex. Resources/Private/TypoScript/Frontend/[Content,Extensions,Page] Resources/Private/TypoScript/Backend/[Rte,Tables] Or something similar.. And have them included inside a organized

[TYPO3-english] Re: DirectMail, dynamic SQL query?

2013-10-08 Thread Salander
Hello, I tried to create an user_function recipient not too fancy. I wanted to get the list with the only member that this e-mail, mini-skate (at) laposte.net. I used user_testList class, which I only modified the upper part : class user_testList { /** * Returns a list of

Re: [TYPO3-english] DirectMail, dynamic SQL query?

2013-10-08 Thread Xavier Perseguers
Hello, function myRecipientList($params, $pObj) { $params['lists']['fe_users'][] = 3; $params['lists']['PLAINLIST'][] = array( 'email' = 'mini-skate (at) laposte.net' ); } I put 3 on $params['lists']['fe_users'][] = 3; because 3 is the pid of fe_users.

[TYPO3-english] Re: Re: DirectMail, dynamic SQL query?

2013-10-08 Thread Salander
Hi, Thanks for your answer. No, you have to provide UIDs, not PIDs, thus specifying each fe_user account you want to include. If you really want to include every fe_user account within a given pid, it's just a matter of fetching the corresponding uids with a custom SQL query. So If I

[TYPO3-english] html5 data- attributes in RTE links (rtehtmlarea)

2013-10-08 Thread Steffen Müller
Hi. When adding data- attributes to links in RTE, the links are not rendered anymore with realurl. The changelog of 4.7 [1] states that this is supported. I use a 6.1 installation. How I create link with data attibute: I add a link to an internal page with the modify link button. Then I switch

Re: [TYPO3-english] html5 data- attributes in RTE links (rtehtmlarea)

2013-10-08 Thread Peter Linzenkirchner
Hello Steffen, as far as i know all versions rte does have this problem. I struggle with it for about months. Until 4.7 there was no possibility to enter a data-attribute in the link widget. Only this possibility was added in 4.7 but the rendering engine and the depending typolink-functions

Re: [TYPO3-english] html5 data- attributes in RTE links (rtehtmlarea)

2013-10-08 Thread Steffen Müller
Hi Peter, thanks for your reply. On 08.10.2013 12:59 Peter Linzenkirchner wrote: Is this a bug? I dont know. I would say it is a missing feature, not only in rte but in typolink. Perhaps we should post it in the bug tracker. I had a quick look at the transformation handler in

Re: [TYPO3-english] DIR include of TypoScript

2013-10-08 Thread Nico Deblauwe
Hi Ralf, Soeren, * ... it could be very useful to standardize the file extensions that are normally to be used.* +1 for this idea. Actually anything that helps differentiating visually between the different kinds of TypoScript that are available, is welcome. E.g. something as simple as a

Re: [TYPO3-english] twitter bootstrap demo and css modifications

2013-10-08 Thread Kay Strobach
NEVER MODIFY an extension directly, if you are not the author. Configure the extension to use a different location for the resources! Otherwise any upgrade of speciality will break your Changes ... Regards Kay Am 07.10.13 11:19, schrieb Alessandro Tuveri: HI maybe I'm wrong but... for

Re: [TYPO3-english] DirectMail, dynamic SQL query?

2013-10-08 Thread Xavier Perseguers
Hi, No, you have to provide UIDs, not PIDs, thus specifying each fe_user account you want to include. If you really want to include every fe_user account within a given pid, it's just a matter of fetching the corresponding uids with a custom SQL query. So If I understand correctly, this is

[TYPO3-english] Localize images in a content element - in an automatic way?

2013-10-08 Thread Tobias Liegl
Hi in a TYPO3 4.x installation with more languages and a one-to-one translation I normally add this snippet: $GLOBALS['TCA']['tt_content']['columns']['image']['l10n_mode'] = 'mergeIfNotBlank'; So i only have to add images in the content element in the main language, and the translated

[TYPO3-english] Re: Extension to create/edit profile pages

2013-10-08 Thread Miguel
Sorry to bring an old topic to the top, but once it is related, i think there is no need to open a new one. I'm using datamints to deal with the register form and with the edit information form, but this extension does not allow me to create a profle page where it is possible to only see the

Re: [TYPO3-english] Extension to create/edit profile pages

2013-10-08 Thread Ralf-Rene Schröder
Am 08.10.2013 18:21, schrieb Miguel: (after login, i have a section in top right corner where the username and address is shown, that's why i need to have that static information). it is no problem to output userdata with pure typoscript ...see for example:

Re: [TYPO3-english] DIR include of TypoScript

2013-10-08 Thread Jigal van Hemert
Hi, On 8-10-2013 0:48, Ralf-Rene Schröder wrote: i think at this time it could be very usefull to standardize the fileextension that are normaly to be used... so everybody can realize for what target the TypoScript is... This adds more complexity for the average user :-( for every type of

[TYPO3-english] Re: Re: Extension to create/edit profile pages

2013-10-08 Thread Miguel
Thank you a lot Mr. Ralf-Rene, it made my life much easier !! It has only one problem, the information appears after all the content, even the footer, and i need to place it in the top right corner (i created a div there for this special purpose) so i can give the proper styles for this

Re: [TYPO3-english] Extension to create/edit profile pages

2013-10-08 Thread Ralf-Rene Schröder
Am 08.10.2013 21:37, schrieb Miguel: Can you just give one tiny hand in this subject? i did't know your configuration ??? how do you build your template ? Do you have a marker for this div in your Template ??? show us the typoscript of your template... -- image[FORMAT] - Ralf-René Schröder

Re: [TYPO3-english] DIR include of TypoScript

2013-10-08 Thread Ralf-Rene Schröder
Am 08.10.2013 20:55, schrieb Jigal van Hemert: On 8-10-2013 0:48, Ralf-Rene Schröder wrote: i think at this time it could be very usefull to standardize the fileextension that are normaly to be used... so everybody can realize for what target the TypoScript is... This adds more complexity