HI Dave,
I have 2 user accounts in the system can i change the table some how to send all mail to user 1 to another user? Hope you know what i mean.
HI Dave,
I have 2 user accounts in the system can i change the table some how to send all mail to user 1 to another user? Hope you know what i mean.
Disregard my post⦠I replied and did not notice there was another page with the problem answered. Sorry guys.
Hi. I had a PayPal Donate button, but it turned every button into that donate button. I removed the donate button, but all the buttons still go to that link. Any suggestions?
HI Dave,
I have 2 user accounts in the system can i change the table some how to send all mail to user 1 to another user? Hope you know what i mean.
I think you mean to forward Mark. As of now it would have to be something in the data class. I would have to hunt around for a method, probably not really something I would build into a new version.
Hi. I had a PayPal Donate button, but it turned every button into that donate button. I removed the donate button, but all the buttons still go to that link. Any suggestions?
what?
what?
I had a PayPal Donate button on my side menu. (I have the ObsessBlue) On any āformā where there is a button, it goes to that link. I removed the donate button, but all the buttons (only in forms) go to that donate link.
Every button now goes to the donate link? - sounds like you did a mass replacement and it changed all the codeā¦
Every button now goes to the donate link? - sounds like you did a mass replacement and it changed all the codeā¦
Huh? LOL! I have no idea what a mass replacement is. It didnāt do this in my other skin.
idk - but I do not believe it has anything to do with the AIRMail module. I just was meaning if you had used the find and replace function of your ide to replace the buttons and by accident chose replace all. Good Luck.
idk - but I do not believe it has anything to do with the AIRMail module. I just was meaning if you had used the find and replace function of your ide to replace the buttons and by accident chose replace all. Good Luck.
I donāt think I did that. I have no idea how or what it is. LOL! I guess Iāll have to re-do the skin all over again. LOL! YAY! FUN!
You shouldnāt need to re-upload the whole template, just find the original lib/skins/ObsessBlue/core_navigation.tpl
Here is the original script for that tpl:
<li><a href="<?php echo SITE_URL ?>/index.php/Frontpage">home</a></li>
<?php
if(!Auth::LoggedIn())
{
// Show these if they haven't logged in yet
?>
<li><a href="<?php echo SITE_URL ?>/index.php/registration">Register</a></li>
<?php
}
else
{
// Show these items only if they are logged in
?>
<li><a href="<?php echo SITE_URL ?>/index.php/profile">Pilot Center</a></li>
<?php
}
?>
<li><a href="<?php echo SITE_URL ?>/index.php/pilots">Pilots</a></li>
<li><a href="<?php echo SITE_URL ?>/index.php/acars">Live Map</a></li>
<?php echo $MODULE_NAV_INC;?>
<?php
if(Auth::LoggedIn())
{
if(Auth::UserInGroup('Administrators'))
{
echo '<li><a href="'.SITE_URL.'/admin/">Admin Center</a></li>';
}
?>
<li><a href="<?php echo SITE_URL ?>/index.php/login/logout">Log Out</a></li>
<?php
}
?>
You shouldnāt need to re-upload the whole template, just find the original lib/skins/ObsessBlue/core_navigation.tpl
Here is the original script for that tpl:
home <?php if(!Auth::LoggedIn()) { // Show these if they haven't logged in yet ?>Register <?php } else { // Show these items only if they are logged in ?>Pilot Center <?php } ?>Pilots Live Map <?php echo $MODULE_NAV_INC;?> <?php if(Auth::LoggedIn()) { if(Auth::UserInGroup('Administrators')) { echo 'Admin Center '; } ?>Log Out <?php } ?>
I dont think this will fix the issue of all your form buttons going to a paypal donate link, the core nav file is just your menu, it does not have anything to do with form actions as far as I know⦠I would look through your tpl files with forms and see what the form action is, if they are correct then start looking in the individual functions within the modules and see what has gotten changed there.
how do you link the You Have Mail to the inbox?
here
<?php MainController::Run('Mail', 'checkmail'); ?>
hope this helps. paste it anywhere.
here
<?php MainController::Run('Mail', 'checkmail'); ?>hope this helps. paste it anywhere.
No sorry, i meant like to link the You Have Mail text or the Picture to the /mail page
<p>
<?php MainController::Run('Mail', 'checkmail'); ?>
</p>
Thatās how I have it so it will show on the main page. (click signature to view)
When there is new mail, the mailbox image will show up. If there is no new mail, there is only text.
Iām trying to delete my āSentā Messsages, and this is the error I am receiving.
Notice: The template file ā/home/oneworld/public_html//core/templates/mail_deleted.tplā doesnāt exist in /home/oneworld/public_html/core/classes/TemplateSet.class.php on line 248
Here is the script on line 248.
trigger_error('The template file "'.$tpl_path.'" doesn\'t exist');
Iām trying to delete my āSentā Messsages, and this is the error I am receiving.
Here is the script on line 248.
trigger_error(āThe template file "ā.$tpl_path.ā" doesn't existā);
Did you do the fix suggested on the second page of this thread for deleting mails? I did and have not gotten a error from airmail since then.
Musta missed that one. Going to look at it now. Thanx Ray.
Not a problem. I had an error when trying to delete anything. I did that fix and all was well after that.