We deal first with the subscription sign-up acknowledgement which is handled by the ccNewsletter Module.
First browse to a page that has the module layout that you want and note the Itemid either form the url "&Itemid=107" or from the backend Menu Manager. Open in a text editor the file modules/mod_ccnewsletter/tmpl/default.php. There are 3 lines to change, one for each case, Mootools, HiSlide or normal. The line numbers are 123, 210 and 276, they are all form --> action parameters Change line 123 as below, adding the &Itemid=107: <form action="<?php echo JURI::root();?>index.php?option=com_ccnewsletter&view=ccnewsletter" method="post" name="subscribeFormModule" id="subscribeFormModule">to <form action="<?php echo JURI::root();?>index.php?option=com_ccnewsletter&view=ccnewsletter&Itemid=107" method="post" name="subscribeFormModule" id="subscribeFormModule"> And the same for the other 2 lines Then for the subscription confirm and un-subscribe acknowledgement which is handled by the ccNewsletter Component we open file components/com_ccnewsletter/models/ccnewsletter.php and on lines 592 & 634 ( the 2 subscribe & un-subscribe function ) again add the "&Itemid=107" to the urls. $unsubscribeString='<a href="'.JURI::root().'index.php?option=com_ccnewsletter&task=removeSubscriber&id='.md5($subscriberID).'">['.$unsubscribelink.']</a>';to $unsubscribeString='<a href="'.JURI::root().'index.php?option=com_ccnewsletter&Itemid=107&task=removeSubscriber&id='.md5($subscriberID).'">['.$unsubscribelink.']</a>'; All done.... ![]() |
|
| LAST_UPDATED2 Read : 2732 times |

We deal first with the subscription sign-up acknowledgement which is handled by the ccNewsletter Module.
























I set my module and I am not getting