Fox Contact

This forum is for general questions about extensions for Joomla! 2.5.

Moderators: pe7er, General Support Moderators

Forum rules
Forum Rules
Absolute Beginner's Guide to Joomla! <-- please read before posting, this means YOU.
Forum Post Assistant - If you are serious about wanting help, you will use this tool to help you post.
ragutelecomstar
Joomla! Fledgling
Joomla! Fledgling
Posts: 1
Joined: Thu Feb 23, 2012 7:29 am

Re: Fox Contact

Post by ragutelecomstar » Thu Feb 23, 2012 7:32 am

Hey Guys,
If you remove this part of code "submittext()" from "return $result . submittext() . PHP_EOL;"
Fox contact page will not send mail to the contacts!! Please let me know if anybody else is facing the same problem or if anybody knows the solution

Regards
Raghu

couper1
Joomla! Apprentice
Joomla! Apprentice
Posts: 6
Joined: Wed Feb 15, 2012 3:46 pm

Re: Fox Contact

Post by couper1 » Fri Feb 24, 2012 9:36 am

Yes e-mail not working, only message.

punsha
Joomla! Fledgling
Joomla! Fledgling
Posts: 3
Joined: Tue Sep 20, 2011 9:42 pm

Re: Fox Contact

Post by punsha » Mon Mar 19, 2012 2:46 am

For version 2.0.14 do the following:
Go to modules / mod_foxcontact / tmp / default.php
And replace the code with

Code: Select all

<script type="text/javascript">
/ / <! [CDATA [
HideCheckboxes ();
InitializeDropdowns ();
/ /]]>
</ script>

With this one

<script type="text/javascript">
/ / <! [CDATA [
HideCheckboxes ();
InitializeDropdowns ();
/ /]]>
$ $ ('. foxform div'). GetLast (). dispose ();
</ script>

dj-dc
Joomla! Fledgling
Joomla! Fledgling
Posts: 1
Joined: Mon Mar 19, 2012 9:15 am

Re: Fox Contact

Post by dj-dc » Mon Mar 19, 2012 9:21 am

Hello all ,
I've tried the methods written here but no success..
I am using 2.0.14

jpexpc what is your method ?

Mangia
Joomla! Apprentice
Joomla! Apprentice
Posts: 9
Joined: Thu Sep 29, 2011 2:04 pm

Re: Fox Contact

Post by Mangia » Wed Mar 21, 2012 8:19 pm

punsha wrote:For version 2.0.14 do the following:
Go to modules / mod_foxcontact / tmp / default.php
And replace the code with

Code: Select all

<script type="text/javascript">
/ / <! [CDATA [
HideCheckboxes ();
InitializeDropdowns ();
/ /]]>
</ script>

With this one

<script type="text/javascript">
/ / <! [CDATA [
HideCheckboxes ();
InitializeDropdowns ();
/ /]]>
$ $ ('. foxform div'). GetLast (). dispose ();
</ script>



Good afternoon, I tried this code but does not work.

Phatee
Joomla! Fledgling
Joomla! Fledgling
Posts: 2
Joined: Tue Feb 14, 2012 8:36 am

Re: Fox Contact

Post by Phatee » Fri Mar 23, 2012 8:05 am

ragutelecomstar wrote:Hey Guys,
If you remove this part of code "submittext()" from "return $result . submittext() . PHP_EOL;"
Fox contact page will not send mail to the contacts!! Please let me know if anybody else is facing the same problem or if anybody knows the solution

Regards
Raghu

That's strange. For me - in 2.0.10 version it just works without any problem. Are you sure u tried it for this version? In newer one it might be taken care that it won't work :)

ywsc
Joomla! Fledgling
Joomla! Fledgling
Posts: 1
Joined: Sat Mar 31, 2012 8:29 pm

Re: Fox Contact

Post by ywsc » Sat Mar 31, 2012 9:54 pm

Phatee you rock works perfects

mrpeer_1
Joomla! Apprentice
Joomla! Apprentice
Posts: 19
Joined: Sat Jan 07, 2012 10:23 am

Re: Fox Contact

Post by mrpeer_1 » Sun Apr 01, 2012 2:40 pm

anybody knows hot to remove powered by in new FOX CONTACT 2.0.15 version for joomla 2.5.3?

bimbongr
Joomla! Apprentice
Joomla! Apprentice
Posts: 9
Joined: Mon Jun 20, 2011 11:31 am

Re: Fox Contact

Post by bimbongr » Wed Apr 04, 2012 3:29 pm

mrpeer_1 wrote:anybody knows hot to remove powered by in new FOX CONTACT 2.0.15 version for joomla 2.5.3?
Yes I want to know the same. I'm using 2.0.15 with joomla 2.5.1 so anybody can help with that? Nothing of the previous suggestions work for me. Thank you in advance. :pop

diveiga
Joomla! Fledgling
Joomla! Fledgling
Posts: 1
Joined: Fri Apr 06, 2012 5:00 pm

Re: Fox Contact

Post by diveiga » Fri Apr 06, 2012 5:13 pm

Very simple to remove the "POWERED BY FOX CONTACT".

in the path " /components/com_foxcontact/foxcontact.php" search in line 26:

After "26 $GLOBALS["right"] = true;"

18 $GLOBALS["ext_name"] = basename(__FILE__);
19 $GLOBALS["com_name"] = dirname(__FILE__);
20 $GLOBALS["mod_name"] = realpath(dirname(__FILE__) . DS . ".." . DS . ".." 21 .DS . "modules");
22 $GLOBALS["EXT_NAME"] = strtoupper($GLOBALS["ext_name"]);
23 $GLOBALS["COM_NAME"] = strtoupper($GLOBALS["com_name"]);
24 $GLOBALS["MOD_NAME"] = strtoupper($GLOBALS["mod_name"]);
25 $GLOBALS["left"] = false;
26 $GLOBALS["right"] = true;


before "26 $GLOBALS["right"] = false;"

19 $GLOBALS["ext_name"] = basename(__FILE__);
20 $GLOBALS["com_name"] = dirname(__FILE__);
21 $GLOBALS["mod_name"] = realpath(dirname(__FILE__) . DS . ".." . DS . ".." .DS . "modules");
22 $GLOBALS["EXT_NAME"] = strtoupper($GLOBALS["ext_name"]);
23 $GLOBALS["COM_NAME"] = strtoupper($GLOBALS["com_name"]);
24 $GLOBALS["MOD_NAME"] = strtoupper($GLOBALS["mod_name"]);
25 $GLOBALS["left"] = false;
26 $GLOBALS["right"] = false;


:D :D :D "Open Source is Open!"

bimbongr
Joomla! Apprentice
Joomla! Apprentice
Posts: 9
Joined: Mon Jun 20, 2011 11:31 am

Re: Fox Contact

Post by bimbongr » Fri Apr 06, 2012 9:09 pm

diveiga wrote:Very simple to remove the "POWERED BY FOX CONTACT".

in the path " /components/com_foxcontact/foxcontact.php" search in line 26:

After "26 $GLOBALS["right"] = true;"

18 $GLOBALS["ext_name"] = basename(__FILE__);
19 $GLOBALS["com_name"] = dirname(__FILE__);
20 $GLOBALS["mod_name"] = realpath(dirname(__FILE__) . DS . ".." . DS . ".." 21 .DS . "modules");
22 $GLOBALS["EXT_NAME"] = strtoupper($GLOBALS["ext_name"]);
23 $GLOBALS["COM_NAME"] = strtoupper($GLOBALS["com_name"]);
24 $GLOBALS["MOD_NAME"] = strtoupper($GLOBALS["mod_name"]);
25 $GLOBALS["left"] = false;
26 $GLOBALS["right"] = true;


before "26 $GLOBALS["right"] = false;"

19 $GLOBALS["ext_name"] = basename(__FILE__);
20 $GLOBALS["com_name"] = dirname(__FILE__);
21 $GLOBALS["mod_name"] = realpath(dirname(__FILE__) . DS . ".." . DS . ".." .DS . "modules");
22 $GLOBALS["EXT_NAME"] = strtoupper($GLOBALS["ext_name"]);
23 $GLOBALS["COM_NAME"] = strtoupper($GLOBALS["com_name"]);
24 $GLOBALS["MOD_NAME"] = strtoupper($GLOBALS["mod_name"]);
25 $GLOBALS["left"] = false;
26 $GLOBALS["right"] = false;


:D :D :D "Open Source is Open!"
I did change it to false in both the component and the module but nothing changes. I'm using the module of Fox Contact 2.0.15 in Joomla 2.5.1
I really need a fix for this thing. Would appreciate any help. Thank you in advance.

lyokha
Joomla! Fledgling
Joomla! Fledgling
Posts: 1
Joined: Sun Apr 08, 2012 1:09 pm

Re: Fox Contact

Post by lyokha » Sun Apr 08, 2012 1:16 pm

Please someone send me a PM with a solution for the 2.0.15
Big thanks

somik
Joomla! Fledgling
Joomla! Fledgling
Posts: 1
Joined: Wed Apr 11, 2012 10:04 am

Re: Fox Contact

Post by somik » Wed Apr 11, 2012 10:09 am

<script type="text/javascript">

//<![CDATA[

HideCheckboxes();

InitializeDropdowns();

//]]>

$$('.foxform div').getLast().hide();

</script>



use this code inplace of this....



<script type="text/javascript">

//<![CDATA[
HideCheckboxes();
InitializeDropdowns();
//]]>


</script>




chilll...

bimbongr
Joomla! Apprentice
Joomla! Apprentice
Posts: 9
Joined: Mon Jun 20, 2011 11:31 am

Re: Fox Contact

Post by bimbongr » Wed Apr 11, 2012 10:34 am

somik wrote:<script type="text/javascript">

//<![CDATA[

HideCheckboxes();

InitializeDropdowns();

//]]>

$$('.foxform div').getLast().hide();

</script>



use this code inplace of this....



<script type="text/javascript">

//<![CDATA[
HideCheckboxes();
InitializeDropdowns();
//]]>


</script>




chilll...

Doesn't work for me. Fox Contact Module 2.0.15 Joomla 2.5

dman820
Joomla! Fledgling
Joomla! Fledgling
Posts: 1
Joined: Wed Apr 11, 2012 7:31 pm

Re: Fox Contact

Post by dman820 » Wed Apr 11, 2012 7:36 pm

bimbongr wrote:
somik wrote:<script type="text/javascript">

//<![CDATA[

HideCheckboxes();

InitializeDropdowns();

//]]>

$$('.foxform div').getLast().hide();

</script>



use this code inplace of this....



<script type="text/javascript">

//<![CDATA[
HideCheckboxes();
InitializeDropdowns();
//]]>


</script>




chilll...

Doesn't work for me. Fox Contact Module 2.0.15 Joomla 2.5
This does actually work for Version 2.0.15 in Joomla 2.5.
You need to make sure that if you are using the contact form as a module, to modify the default.php file in modules/mod_foxcontact/tmpl.

If you are using the contact form as a linked menu item, you need to modify the default.php in components/com_foxcontact/views/foxcontact/tmpl.
Hope this helps.

bimbongr
Joomla! Apprentice
Joomla! Apprentice
Posts: 9
Joined: Mon Jun 20, 2011 11:31 am

Re: Fox Contact

Post by bimbongr » Thu Apr 12, 2012 9:39 am

This does actually work for Version 2.0.15 in Joomla 2.5.
You need to make sure that if you are using the contact form as a module, to modify the default.php file in modules/mod_foxcontact/tmpl.

If you are using the contact form as a linked menu item, you need to modify the default.php in components/com_foxcontact/views/foxcontact/tmpl.
Hope this helps.

That's what I'm doing and I'm telling you ... it does not work :(
If anyone have anything other on his mind please let me know! Thank you in advance :)

orengical
Joomla! Fledgling
Joomla! Fledgling
Posts: 2
Joined: Sun May 08, 2011 12:52 pm

remove powered by fox contact(All version)

Post by orengical » Sun Apr 22, 2012 1:10 pm

Just place this code in /modules/mod_foxcontact/tmpl/default.php

or in component go here:/components/com_foxcontact/views/foxcontact/tmpl/default.php

And replace the code with

<script type="text/javascript">
//<![CDATA[
HideCheckboxes();
InitializeDropdowns();
//]]>
</script>

With this one

<script type="text/javascript">
//<![CDATA[
HideCheckboxes();
InitializeDropdowns();
//]]>
$$('.foxform div').getLast().dispose();
</script>




Credit to this Guy http://webdesigncr3ator.[URL banned].com/20 ... ctall.html

bimbongr
Joomla! Apprentice
Joomla! Apprentice
Posts: 9
Joined: Mon Jun 20, 2011 11:31 am

Re: Fox Contact

Post by bimbongr » Sun Apr 22, 2012 11:58 pm

orengical wrote:Just place this code in /modules/mod_foxcontact/tmpl/default.php

or in component go here:/components/com_foxcontact/views/foxcontact/tmpl/default.php

And replace the code with

<script type="text/javascript">
//<![CDATA[
HideCheckboxes();
InitializeDropdowns();
//]]>
</script>

With this one

<script type="text/javascript">
//<![CDATA[
HideCheckboxes();
InitializeDropdowns();
//]]>
$$('.foxform div').getLast().dispose();
</script>




Credit to this Guy http://webdesigncr3ator.blog spot.com/2012/03/how-to-remove-powered-by-fox-contactall.html

This does not work for me in the module.

thorndog
Joomla! Apprentice
Joomla! Apprentice
Posts: 10
Joined: Thu Dec 08, 2011 10:10 pm

Re: Fox Contact

Post by thorndog » Tue May 22, 2012 6:53 am

Heres the fix (because this aint worth 10 euro!):

replace the contents of /modules/mod_foxcontact/mod_foxcontact.inc with this:

Code: Select all

...
Last edited by ooffick on Wed May 23, 2012 6:57 am, edited 1 time in total.
Reason: Mod Note: removed obfusicated code

bimbongr
Joomla! Apprentice
Joomla! Apprentice
Posts: 9
Joined: Mon Jun 20, 2011 11:31 am

Re: Fox Contact

Post by bimbongr » Tue May 22, 2012 8:18 am

thorndog finally your fix worked like a charm for me!!! :)

You are the man! Thank you! :)

thorndog
Joomla! Apprentice
Joomla! Apprentice
Posts: 10
Joined: Thu Dec 08, 2011 10:10 pm

Re: Fox Contact

Post by thorndog » Thu May 24, 2012 11:28 am

Email me here if you want the code [email protected], seems admin have removed due to obfuscation, yours in puzzles, thorndog.

abiertoware
Joomla! Fledgling
Joomla! Fledgling
Posts: 3
Joined: Wed May 16, 2012 8:51 am

Re: Fox Contact

Post by abiertoware » Thu May 31, 2012 5:11 pm

Hi All,

I love fox contact and think its great. I had a problem with the new version that Dennis just released on the 27th of May. (2.0.17)

User avatar
ghanlon
Joomla! Enthusiast
Joomla! Enthusiast
Posts: 246
Joined: Tue Oct 02, 2007 2:39 am
Location: Florida
Contact:

Re: Fox Contact

Post by ghanlon » Tue Jun 05, 2012 11:28 am

Personally I love FOX Contact I use it and don't mind the powered by at the bottom. Joomla 2.5.4
If I ever have a client that requires it removed 10 Euro is a bargan for some elses hard work.

I think if it was not worth it would this thread have generated 4 pages of comments already....
I'm just sayin.

Jo80
Joomla! Apprentice
Joomla! Apprentice
Posts: 26
Joined: Sat Sep 02, 2006 2:18 pm

Re: Fox Contact

Post by Jo80 » Wed Jun 06, 2012 1:31 pm

abiertoware wrote:...I had a problem with the new version that Dennis just released on the 27th of May. (2.0.17)
Use Notepad++ with search option search in files/folder. Unzip foxcontact.zip locally, search for "powered" in files/folders with Notepad++ et voila.

Line 60 in foxcomponent/site/views/foxcontact/tmpl/default.php for the component, do the same for the module in the other file and other line.

User avatar
shamimi
Joomla! Apprentice
Joomla! Apprentice
Posts: 29
Joined: Mon Feb 20, 2012 6:38 pm
Location: Iran(Persian gulf)
Contact:

Re: Fox Contact

Post by shamimi » Mon Jun 11, 2012 9:06 pm

i find it and work fine :-)
first open
mod_foxcontact/tmpl/default.php
then find:

Code: Select all

<script type="text/javascript">

//<![CDATA[
HideCheckboxes();
InitializeDropdowns();
//]]>


</script>

and replace it :

Code: Select all

<script type="text/javascript">

//<![CDATA[

HideCheckboxes();

InitializeDropdowns();

//]]>

$$('.foxform div').getLast().hide();

</script>

its work fine

i am shentia and translator of Fox to persian :-)
our website is http://www.egolt.com/fa/forums/%D8%B1%D ... %D8%AA#627 you can see this problem solve from me

HeinzelPeter
Joomla! Fledgling
Joomla! Fledgling
Posts: 1
Joined: Thu Jul 12, 2012 2:16 pm

Re: Fox Contact

Post by HeinzelPeter » Thu Jul 12, 2012 3:44 pm

Do not work.

So I opened a shell under linux and changed to the folder of the unzipped "FoxContact"

after this, i wrote in the shell:

grep -liR 'powered by' *

The Shell gave me this result:

modules/mod_foxcontact/tmpl/default.php
site/views/foxcontact/tmpl/default.php
site/language/th-TH/th-TH.com_foxcontact.ini
site/language/en-US/en-US.com_foxcontact.ini
site/language/en-AU/en-AU.com_foxcontact.ini
site/language/bs-BA/bs-BA.com_foxcontact.ini
site/language/en-GB/en-GB.com_foxcontact.ini
site/language/ur-PK/ur-PK.com_foxcontact.ini
site/language/de-DE/de-DE.com_foxcontact.ini
site/language/ja-JP/ja-JP.com_foxcontact.ini

Opened
modules/mod_foxcontact/tmpl/default.php
site/views/foxcontact/tmpl/default.php

with a file editor and removed the complete <h href "link"> powered by... </a>

saved it and now it works without powered by...

:laugh:

so easy, no protection :)

adyjob
Joomla! Apprentice
Joomla! Apprentice
Posts: 21
Joined: Tue Oct 19, 2010 7:11 am

Re: Fox Contact

Post by adyjob » Wed Aug 08, 2012 8:13 am

I have version 2.0.17 and use above way and works for me.

What I did is open :

modules/mod_foxcontact/tmpl/default.php
component/com_foxcontact/views/foxcontact/tmpl/default.php

using search function for "powered by" and remove the complete <h href "link" powered by....</a> and save it.

adyjob
Joomla! Apprentice
Joomla! Apprentice
Posts: 21
Joined: Tue Oct 19, 2010 7:11 am

Re: Fox Contact

Post by adyjob » Fri Aug 10, 2012 7:41 am

However, one problem occur in Module where the captcha will not working. the component works fine. Anybody have this problem.

User avatar
shamimi
Joomla! Apprentice
Joomla! Apprentice
Posts: 29
Joined: Mon Feb 20, 2012 6:38 pm
Location: Iran(Persian gulf)
Contact:

Re: Fox Contact

Post by shamimi » Fri Aug 10, 2012 8:30 am

adyjob wrote:However, one problem occur in Module where the captcha will not working. the component works fine. Anybody have this problem.
hello
you follow this guide
http://forum.joomla.org/viewtopic.php?f ... 0#p2825803
i am write this guide so about your ask not relate to captcha :) :pop
http://www.irhost.info
Host - Domain - Vps - Dedicate

matrice
Joomla! Fledgling
Joomla! Fledgling
Posts: 1
Joined: Fri Aug 17, 2012 9:46 am

Re: Fox Contact

Post by matrice » Fri Aug 17, 2012 9:59 am

Maybe one of the easiest methods to remove the link and if fc gets updated you don't lose the changes.

Write the CSS Code in the template.css file you use.

Code: Select all

.foxcontainer a {
display: none;
}
If you like the developer then use this method:

Code: Select all

.foxcontainer a {
position: fixed;
margin-left: -9999px;
}
This code is search engine friendly and he got his backlink.


Locked

Return to “Extensions for Joomla! 2.5”