Just a simple question: Does anyone know if direct_mail_subscription works with fe_users or just with tt_address records? I use both for my newsletter recipients but the unsubscribe link only works for tt_address users. Did I forget to configure something or will it just not work with fe_users?
1) The easiest way to create a new user with a subscription are Finisher in formhandler - here is ready for use EXT https://typo3.org/extensions/repository/view/formhandler_subscription or here is main settings https://github.com/astehlik/typo3-extension-formhandler_subscription/blob/master/Configuration/Settings/setup.txt
2) Create form by PowerMail and add Finisher to save fe_user and direct_mail settings here is manual https://docs.typo3.org/typo3cms/extensions/powermail/1.6.11/Powermail/Features/SavingDbValuesToAnyDbTable/Index.html#example-typoscript-setup-to-add-values-to-fe-users. You need just add direct_mail fields which you need for mailing
3) You can override regular EXT. I found best one https://typo3.org/extensions/repository/view/dmailsubscribe. But like every good EXT it work just with tt_addres. But if you know how - you can override Class instand adding tt_adreess add fe_user by FrontendUser\FrontendUserRepository
If this answer will get 5 likes - I will give example:)
Related
I create subscription form with "formhandler". Added authorization code by "authcode" and added direct_mail categories by DB finisher in "formhandler". Now my task to send users news from tt_news extension, filter by language and categories chosen in "formhandler" subscription form.
Somebody have ideas how add directly connect content from "tx_news" in direct_mail mailing. And filter them by language and categories. Of course it be nice to choose which news send and which not
I find some examples how to add content from tt_news in direct_mail https://docs.typo3.org/typo3cms/extensions/direct_mail/Configuration/ConfiguringPlainTextRenderingOfNewsRecords/Index.html. Maybe somebody now how to add from tx_news. Or maybe I need use a total different approach?
I have a question about the vbulletin 4 plugins .
I need to create a plugin that add a new custom field to the registration form .
I don’t want to modify the "register" template or to add this custom field from the admin panel.
sorry i'm new to vbulletin developing and i need your help , or some references on how to work with plugins and custom fields.
Many thanks
Go to ACP - User Profile Fields - Add New User Profile Field and add a new field here. You do not need to modify anything.:)
How can I create my own login form on frontend? I don’t just want to modify the template of the existing login form, but I would like to create my own.
I am using Magento Community 1.7.
Thank you for any guidance you could give me.
Create a new template and override the layout xml to insert your own block.
I'm looking to create a new contact form for enquiries on Magento. Creating a module from scratch for this seems like a bit of a waste of time. Does anyone know the most sensible and quickest way for this to happen?
Thanks!
In CMS>Manage Pages create and enable a new page (or you could use a static block) e.g. call the page My Contact Form with a url ID of my-contact-form and a layout that matches your theme. For the content of the new page add
{{block type='core/template' template='contacts/mycontactform.phtml'}}
Now in your template folder (app/design/frontend/default/default/template/contacts for default theme in Magento 1.3.x) copy the existing form.phtml file, rename it to mycontactform.phtml and copy it back to the contacts folder. Edit the new mycontactform.phtml code and html as you wish to create your new contact form.
Load the new form by going to http://www.example.com/my-contact-form
Hope that helps...
In adendum to paj answer: You also have to edit the email template to include whatever new fields you just added.
Keep in mind that both your new contact form and Magento original contact form (an whatever future contact forms you may add in the future with in this way) will all use the same email template.
So in order to have meaningful emails sent, you need to "program" the template using the {{depend}} directive
I need to add some extra field to Joomla registration form without using any extension. Please does anyone know how I can go about. I have created the extra fields in the db and added the html for the textfields but I don't know what to do next.
Some articles here that describe how to add extra fields:
http://joomla-and-more.com/2010/02/05/how-to-velden-toevoegen-bij-de-joomla-registration-form/
http://blog.manchumahara.com/2010/03/18/how-to-add-extra-fields-in-joomla-registration/
http://www.youtube.com/watch?v=dk_86nHu3AM