Is there a way to remove the LiquidNet address info from the bottom of the order form? Doesn't seem like a truly white label solution with their info on every order form.
Announcement
Collapse
No announcement yet.
LiquidNet Address
Collapse
X
-
Is there a way to remove the LiquidNet address info from the bottom of the order form? Doesn't seem like a truly white label solution with their info on every order form.
HTML Code:<div class="split">
Another way is to use the API to build your own order system, this would allow you to display the order form how you want it and use what ever payment methods you wish.Last edited by clivejo; 17-06-2013, 12:36 AM.
-
Just in further to the above post. A better idea would be to just "turn off" the div. If you add the following to your theme CSS style.css (Appearance > Editor).
Code:div.split { display: none; } div.right { display: none; }
Comment
-
No problem!
It would be better to create a child theme and modify it. Then your theme would be 'safe' if RSP change/overwrite theme files in future.
Comment
-
While inspecting the element live, it appears that <div class="split"> contains only the address but looking deeper, <div class="split"> also contains many other parts of the form and not displaying it or changing the text color or background also affects other areas of the form thus killing the functionality of the form.
Comment
-
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>
Code:/*------Order Form Adjustment---------*/ div.cube { width:1000px; height:1070px; overflow:hidden; }
Comment
-
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>
Comment
-
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.
Comment
-
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>
$(".split:contains('LiquidNet Ltd.')").html("My Hosting Company<br>3 My Road<br>My City<br> My Country");
- Likes 1
Comment
-
I have just read over all the comments in this thread and from that other link shown, and have added the code as suggested to the order page -- the code works great! Thank you very much!
Oops -- I just noticed that one has to add the code to all of the order pages not just the main order page.Last edited by sydnac; 29-10-2013, 08:54 AM.
-
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.
Comment
-
Originally posted by clivejo View PostThis 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>
Thanks for this one clive, fantastic!
Comment
Comment