Results 1 to 10 of 14
Thread: We do Custom Addons.
-
April 30th, 2011, 11:26 PM #1
GeoNewcomer
License Holder
- Join Date
- Jun 2010
- Posts
- 23
We do Custom Addons.
If you need a custom addon, please message me. We provide them cheap. All we need is for you to contact us and let us know what you need. Look forward to our new website, we will be providing addons at a fair price. None of our addons will be over $100 USD, We look forward to serving all the customers working with a minimum wage pay check. We've already started work and have a few good ones ready, message me for custom work.
Warm Regards,
JohnLast edited by jonyo; May 9th, 2011 at 10:40 AM. Reason: Moved post to custom addon section
-
May 3rd, 2011, 06:21 AM #2
Hi John,
Just wanted to say thank you for all the help setting up my website, I can highly recommend john great knowledge of geo system and the addon I had words great
Chher johnJason
Installed Version: 5.1.2
-
May 3rd, 2011, 09:37 PM #3
GeoNewcomer
License Holder
- Join Date
- Jun 2010
- Posts
- 23
no problem. anytime.
-
May 7th, 2011, 02:28 AM #4
GeoNewcomer
License Holder
- Join Date
- Jun 2010
- Posts
- 23
Just wanted to share these two addons right now, we have more on the way. you can see them at
http://www.myjcmo.com/cart/
Thanks
John
-
May 7th, 2011, 11:38 AM #5
A couple of cool addons.
Nice job!Custom web design, services and Rebel coder...
-
May 7th, 2011, 11:44 AM #6
GeoNewcomer
License Holder
- Join Date
- Jun 2010
- Posts
- 23
Facebook addon will be done soon, Allows users to login using their FaceBook account.
Last edited by JohnM; May 7th, 2011 at 09:50 PM.
-
May 7th, 2011, 08:56 PM #7
Advanced GeoUser
License Holder
- Join Date
- Apr 2011
- Posts
- 636
hey john im looking for a warning page addon for the personals section of my geo website , please see the following link for a sample warning page http://www.im4sale.net/c,329,Personals.htm hope this helps , i find it absolutely neccessary for a personals section,, thank you
-
May 7th, 2011, 09:32 PM #8
GeoNewcomer
License Holder
- Join Date
- Jun 2010
- Posts
- 23
-
May 9th, 2011, 07:57 AM #9
Hello,
You have to consider a couple things when doing this.
1) We want it to show in only categories we choose and all sub categories under it
2) We run a pop up only 1 time so we need a cookie or they will get it over and over.
Now we do not want the popup to run over and over so it has to remember.
Now you can play with this more but you will get the idea...
Place it in the head.tpl after <body> tag
You will also need to make your own yourpagename.html page to call into the popup. So When they enter the category a popup runs and in this popup they asked. ENTER or EXIT if they choose exit send them back to front page is all.
Category_id is where we want the pop to run in more information on this here
More Info On the Java Code I Used Click HerePHP Code:
{if $category_id == '232'||$parent_categories.232==232}
{literal}
<SCRIPT LANGUAGE="JavaScript">
<!-- Script courtesy of http://www.web-source.net - Your Guide to Professional Web Site Design and Development
function GetCookie(name) {
var arg=name+"=";
var alen=arg.length;
var clen=document.cookie.length;
var i=0;
while (i<clen) {
var j=i+alen;
if (document.cookie.substring(i,j)==arg)
return "here";
i=document.cookie.indexOf(" ",i)+1;
if (i==0) break;
}
return null;
}
var visit=GetCookie("COOKIE1");
if (visit==null){
var expire=new Date();
window.name = "thiswin";
newwin=open("yourpagename.html", "dispwin",
"width=450,height=455,scrollbars=yes,menubar=no");
expire=new Date(expire.getTime()+7776000000);
document.cookie="COOKIE1=here; expires="+expire;
}
// -->
</SCRIPT>
{/literal}
{else}
{/if}
-
May 9th, 2011, 11:03 AM #10
Geomodules: FYI there is a utility JS function already available to use to get a cookie, built into Geo. It should make it a little easier, geoUtil.getCookie('cookiename'). Here is your code, using the function that is already available in the Geo software:
I also took liberty of making few other small changes: added tabs (easier to read), added CDATA so it remains W3C compliant, and few other minor changes. But mainly I'm providing the above to point out the geoUtil.getCookie() that is already part of the software, just so you are aware of it if you want to start using it in your own stuff. Check out all the stuff within that "JS hash", you will find it in the "external/js/main.js" file (it is not copied to custom template sets by default, since we add to it on a regular basis, that way it always uses the one from the default template set which will be the most up to date version).HTML Code:{if $category_id == '232'||$parent_categories.232==232} {literal} <script type="text/javascript"> //<![CDATA[ var visit=geoUtil.getCookie("COOKIE1"); if (visit==null){ var expire=new Date(); window.name = "thiswin"; newwin=open("yourpagename.html", "dispwin", "width=450,height=455,scrollbars=yes,menubar=no"); expire=new Date(expire.getTime()+7776000000); document.cookie="COOKIE1=here; expires="+expire; } //]]> </script> {/literal} {/if}
Last edited by jonyo; May 9th, 2011 at 04:42 PM. Reason: typos
Jonathan Foote
PHP Developer
Geodesic Solutions, LLC
Resources:
Support Helpdesk | User Manual Wiki
geoaddons.com (3rd Party Addons, Template Sets, & more)
Follow us on Twitter!
Circle us on Google+
Like us on Facebook



Reply With Quote

