- Posts: 3
- Thank you received: 0
Adding Author Names to Campaigns
18 May 2011 20:41 #1184
by IDHLA
Adding Author Names to Campaigns was created by IDHLA
joomlamailer version:1.7
Joomla! version:1.52
PHP version:5.2
MySQL version:5
Is it at all possible to add the author names into the campaigns? my client's site is basically an online newpaper and the writers seem to be quite touchy about their names being included in the newsletter alongside their stories. Is this possible? Also, is it possible to format the photos, such as resizing them or adjusting their position?
Joomla! version:1.52
PHP version:5.2
MySQL version:5
Is it at all possible to add the author names into the campaigns? my client's site is basically an online newpaper and the writers seem to be quite touchy about their names being included in the newsletter alongside their stories. Is this possible? Also, is it possible to format the photos, such as resizing them or adjusting their position?
Please Log in or Create an account to join the conversation.
19 May 2011 14:32 #1195
by pete
Replied by pete on topic Adding Author Names to Campaigns
Hello IDHLA,
Resizing images is currently not supported. We have plans to implement such a feature but it's still a bit down the road.
Displaying the author names is not possible at the moment.
If you're familiar with PHP code and want to show the author name on every article you can edit the file: /administrator/components/com_joomailermailchimpintegration/controllers/create.php
Add the author's name before the article content:
At line 1305 you'll find: $html_content = $art->introtext;
Replace that with:
Add the name after the article content:
Add this code at line 1313:
This is for the preview part. For the actual campaign creation scroll up to line 270
Add the author's name before the article content:
At line 270 you'll find: $html_content = $art->introtext;
Replace that with:
Add the name after the article content:
Add this code at line 278:
This refers to Joomla core articles only! Line numbers as of version 1.7
Kind regards,
Pete
Resizing images is currently not supported. We have plans to implement such a feature but it's still a bit down the road.
Displaying the author names is not possible at the moment.
If you're familiar with PHP code and want to show the author name on every article you can edit the file: /administrator/components/com_joomailermailchimpintegration/controllers/create.php
Add the author's name before the article content:
At line 1305 you'll find: $html_content = $art->introtext;
Replace that with:
Code:
$html_content = '<p>Author: '.JFactory::getUser( $art->created_by )->name.'</p>';
$html_content .= $art->introtext;
Add the name after the article content:
Add this code at line 1313:
Code:
$html_content .= '<p>Author: '.JFactory::getUser( $art->created_by )->name.'</p>';
This is for the preview part. For the actual campaign creation scroll up to line 270
Add the author's name before the article content:
At line 270 you'll find: $html_content = $art->introtext;
Replace that with:
Code:
$html_content = '<p>Author: '.JFactory::getUser( $art->created_by )->name.'</p>';
$html_content .= $art->introtext;
Add the name after the article content:
Add this code at line 278:
Code:
$html_content .= '<p>Author: '.JFactory::getUser( $art->created_by )->name.'</p>';
This refers to Joomla core articles only! Line numbers as of version 1.7
Kind regards,
Pete
Please Log in or Create an account to join the conversation.
joomlamailer uses cookies!
This website uses cookies to provide user authentication and improve your user experience. Please indicate whether you consent to our site placing these cookies on your device. We are not using cookies for marketing purposes. For more information visit our privacy policy
I agree
Copyright 2010 freakedout.de - All Rights Reserved
Joomlamailer.com is not affiliated with or endorsed by The Joomla! Project™, Open Source Matters, Inc. or Intuit Mailchimp.
Any products and services provided through this site are not supported or warrantied by The Joomla! Project, Open Source Matters, Inc. or Intuit Mailchimp.
Use of the Joomla!® name, symbol, logo and related trademarks is permitted under a limited license granted by Open Source Matters, Inc.
Mailchimp® is a registered trademark of The Rocket Science Group.
Joomlamailer.com is not affiliated with or endorsed by The Joomla! Project™, Open Source Matters, Inc. or Intuit Mailchimp.
Any products and services provided through this site are not supported or warrantied by The Joomla! Project, Open Source Matters, Inc. or Intuit Mailchimp.
Use of the Joomla!® name, symbol, logo and related trademarks is permitted under a limited license granted by Open Source Matters, Inc.
Mailchimp® is a registered trademark of The Rocket Science Group.