can i add backend_user image to tx_news? - typo3

I'm using tx_news extension 6.3 and Typo3 7.6.
I read in documentation this :
Author name & email
By using the following code in the PageTsConig, the fields Author and Author Email are prefilled with the name and email address of the current backend user
tx_news.predefine.author = 1
My question is : I like to add the backend_user profile image to every news article that he make, mean not only his name and his email. is that possible ?
Thank you in advance.

You can take use this extension TYPO3 CMS Extension news_feuser

Related

Typo3 8.7: set/modify delete link in powermail (7.1.0)

I'm using the powermail 7.1.0 extension for Typo3. When a customer now sends a powermail form, I send him an Email back with a specific response. At the end of my answer email appears a link and a text, which says
"Was this email a mistake and you want to delete your request?
Delete all email data."
and a Link to delete all the email data.
Now I can't remember setting this text nor the link and I'm having trouble finding the place where I can modify the text. I checked the Mail to User Section in the Plugin Options but the text is not there.
My goal is to change the text to german.
Is this auto-generated by powermail?
Thanks in advance.
This is a new feature with powermail >= 7.0.0. You can deactivate it with plugin.tx_powermail.settings.setup.sender.addDisclaimerLink = 0. To change the text you could do it for example in this partial /Resources/Private/Partials/Mail/DisclaimerLink.html or in your own language-file.

Typo3 tx_news: How to show only category of user config in backend module

I have tx_news system with many categories and every backend user should have control for only one category. In the user settings I can set his category...
But in the backend module the user still sees all categories!
Is it possible to show a user only news of "his" category?
My System:
Typo3: 7.6.12,
tx_news: 5.2.0
Thanks in advance
Check out the latest version, IMO I fixed that!

What Typo3 newsletter extension can automatically fetch web content changes

The Typo3 extension tt_news enables for example all created news by this extension to be shown in the newsletter but not content from a "not news" page of the website.
We are looking for a plugin which automatically finds new content on the website and let us create a newsletter from it.
What extension could be used here? Might direct mail be able to do so?
Taken from the Direct Mail manual: "Newsletter pages are just normal pages. Their rendering is configured by the TS template."
A very simple solution for what you want to do would be to write a simple extension where you get the newest content elements and output them. Direct Mail itself will not do that for you, but it will send out any content that you provide on the "Newsletter page".

Friendly url creation FLUID

I'm developping a TYPO3 extension (TYPO3 6.2) and I'm trying to create a link with parameters.
My working link is like this:
........./?param1=val1&param2=val2
Now I'm trying to make this url more friendly and want to show it as:
........./val1/val2
but when I access this url, I have a TYPO3 error saying:
Reason: Segment "val1" was not a keyword for a postVarSet as expected on page with id=MYID.
The url is created with FLUID:
<f:link.page pageUid="MYID" additionalParams="{tagid: '{var.id}'}">More</f:link.page>
Thanks for your help!
It's not about Fluid, but missing RealURL config, there are two good articles written by Dmitry Dulepov - RealURL author:
http://www.dmitry-dulepov.com/2008/05/realurl-made-easy-part-1.html
http://www.dmitry-dulepov.com/2008/06/realurl-made-easy-part-2.html

Magento site - Embed an email contact form which allows user to send a file attachment

I'm trying to add a page to my Magento site which contains an enquiry form. User would fill out name, email, tel no and add a file attachment. The store owner would then get the email with the uploaded file as an attachment.
I'm a Magento newbie and the client I'm doing this for is reluctant to pay for an extension.
My understanding so far is that I cant just use a standard php email script as I will have permissions issues regarding the file upload. I've been working on the idea of using the /media/ folder to upload the file.
Any help would be greatly appreciated.
Thanks, Steve
Create a new CMS page and paste in the following code:
{{block type="core/template" template="contacts/form.phtml"}}
<script type="text/javascript">
elem = $("contactForm");
elem.writeAttribute('action', '/contacts/index/post');
</script>
The javascript is required to make sure that the form posts to the correct location now that you have it in a CMS context.
Cheers,
JD