Announcement

Collapse
No announcement yet.

LiquidNet Address

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • ezyuser
    replied
    Brilliant. Clivejo, thanks a lot. Have been searching for this solution for quite some time.

    Leave a comment:


  • BlackLightHost
    replied
    Originally posted by index.html View Post
    Hey BlackLightHost,

    How do you find the 'Free Hosting Special Offer' works on your site? Does it attract many clients?

    It's really too soon to say. It has attracted quite a few "free" clients in the week or so that I have offered it but it remains to be seen if they will eventually churn into paying customers.

    Leave a comment:


  • index.html
    replied
    Originally posted by BlackLightHost View Post


    Hey BlackLightHost,

    How do you find the 'Free Hosting Special Offer' works on your site? Does it attract many clients?

    Leave a comment:


  • index.html
    replied
    Originally posted by skeeterz71 View Post
    Once they are paying, I really no longer care

    Hahaha - fair enough!

    Then lets hope they don't see your reseller link on your site before they pay.

    It will not only show them L'net but all your wholesale pricing too - lol

    Leave a comment:


  • skeeterz71
    replied
    Originally posted by index.html View Post
    I checked out your sites order form 'skeeterz71' and yes the L'net address does disappear after a split second on the screen - but seeing as the full payment processor details appears on every invoice the client gets - isn't just putting off the inevitable?

    Once they are paying, I really no longer care

    Leave a comment:


  • index.html
    replied
    Originally posted by skeeterz71 View Post
    I tried the script. Unless there is something I'm missing, it's not working.

    Here is my order form edit



    Here is what shows up on the orderform.


    On another note, it was mentioned above that changing the color of the text via css effects other stuff. Can you give an example?


    I checked out your sites order form 'skeeterz71' and yes the L'net address does disappear after a split second on the screen - but seeing as the full payment processor details appears on every invoice the client gets - isn't just putting off the inevitable?

    Leave a comment:


  • doneritehosting
    replied
    Originally posted by clivejo View Post
    This will turn off the Telephone Numbers.

    Code:
    [rp_order_form]
    <script>
    $(".split:contains('LiquidNet Ltd.')").css("display", "none");
    $(".right:contains('+1-866-841-6141')").css("display", "none");
    </script>
    Of course if you really wanted you could use the .html to change the address to your own
    Clivejo is a genious

    Thanks for this one clive, fantastic!

    Leave a comment:


  • skeeterz71
    replied
    Go figure, I do it again and it works. Thanks e1

    Leave a comment:


  • BlackLightHost
    replied
    Killing the div.split will leave the order form like this:



    As well, changing the background and/or text color will also then affect the areas of the form that are missing in the screenshot above. Killing the div selectively like clivejo's script does leaves the rest of the form intact like this:



    Clivejo's script works fine on my site and leaves the bottom of the form like this:




    Please forgive the huge images,lol.
    Last edited by clivejo; 18-06-2013, 02:46 PM.

    Leave a comment:


  • clivejo
    replied
    Are you sure your editor is in HTML mode when you save the page?

    Leave a comment:


  • skeeterz71
    replied
    I tried the script. Unless there is something I'm missing, it's not working.

    Here is my order form edit



    Here is what shows up on the orderform.


    On another note, it was mentioned above that changing the color of the text via css effects other stuff. Can you give an example?

    Leave a comment:


  • clivejo
    replied
    This will turn off the Telephone Numbers.

    Code:
    [rp_order_form]
    <script>
    $(".split:contains('LiquidNet Ltd.')").css("display", "none");
    $(".right:contains('+1-866-841-6141')").css("display", "none");
    </script>
    Of course if you really wanted you could use the .html to change the address to your own

    $(".split:contains('LiquidNet Ltd.')").html("My Hosting Company<br>3 My Road<br>My City<br> My Country");

    Leave a comment:


  • BlackLightHost
    replied
    Now, that I like. Crafty.

    That actually works out better than my plan because when using the container I lose the bottom border of the order form. I could recreate the border but your method removes the offending divs while leaving the border and everything else intact. I used the same method for the "right" div as well. Awesome, Thanks.
    Last edited by BlackLightHost; 17-06-2013, 09:15 PM. Reason: More info.

    Leave a comment:


  • clivejo
    replied
    Oh sorry, I didn't realise there are multiple splits on the page! That's a good idea making a container, you gave me an idea.

    If you edit your order form page in WP with the following

    Code:
    [rp_order_form]
    <script>
    $(".split:contains('LiquidNet Ltd.')").css("display", "none");
    </script>
    This uses JSQuery to only 'turn off' the .split div with the LiquidNet address in it.

    Leave a comment:


  • BlackLightHost
    replied
    Ok, here is my solution for anyone else that is faced with this.
    I created a container on the order page:

    Code:
    <div class="container">
    <div class="cube">
    [rp_order_form]
    </div>
    </div>
    Then the following CSS adjustment which changes the height with overflow hidden so as not to show the address or numbers.

    Code:
    /*------Order Form Adjustment---------*/
    div.cube {
    width:1000px; height:1070px; overflow:hidden; 
    }
    Problem solved.

    Leave a comment:

Working...
X