Page 1 of 2 12 LastLast
Results 1 to 10 of 14
  1. #1
    Join Date
    Jun 2010
    Posts
    23

    Default 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,
    John
    Last edited by jonyo; May 9th, 2011 at 10:40 AM. Reason: Moved post to custom addon section

  2. #2
    Join Date
    Aug 2010
    Posts
    51

    Default

    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 john
    Jason


    Installed Version: 5.1.2

  3. #3
    Join Date
    Jun 2010
    Posts
    23

    Default

    no problem. anytime.

  4. #4
    Join Date
    Jun 2010
    Posts
    23

    Default

    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

  5. #5
    Join Date
    Mar 2006
    Location
    Indiana - USA
    Posts
    49

    Default

    A couple of cool addons.

    Nice job!
    Custom web design, services and Rebel coder...

  6. #6
    Join Date
    Jun 2010
    Posts
    23

    Default

    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.

  7. #7
    Join Date
    Apr 2011
    Posts
    636

    Default

    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

  8. #8
    Join Date
    Jun 2010
    Posts
    23

    Default

    Quote Originally Posted by tosea View Post
    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
    Yes I can help you do this. I sent you a message.

  9. #9
    Join Date
    Jan 2005
    Location
    Linden, TN
    Posts
    3,718

    Default

    Quote Originally Posted by tosea View Post
    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
    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
    PHP 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} 
    More Info On the Java Code I Used Click Here

  10. #10
    Join Date
    Jun 2006
    Location
    Texas
    Posts
    4,701

    Default

    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:

    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}
    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).
    Last edited by jonyo; May 9th, 2011 at 04:42 PM. Reason: typos

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •