Announcement

Collapse
No announcement yet.

LiquidNet Address

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

  • BlackLightHost
    replied
    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.

    Leave a comment:


  • clivejo
    replied
    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.

    Leave a comment:


  • BlackLightHost
    replied
    Thanks clivejo! Looking at the CSS option now.

    Leave a comment:


  • clivejo
    replied
    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;
    }
    'split' is the Liquidnet address div and 'right' is the phone numbers.

    Leave a comment:


  • clivejo
    replied
    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.
    No, you cant modify it directly as the order from is served from their server. I guess you might be able to override the CSS for that div.

    HTML Code:
    <div class="split">
    Create a piece of CSS to make the text white on a white background so you cant see it.

    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.

    Leave a comment:


  • BlackLightHost
    started a topic LiquidNet Address

    LiquidNet Address

    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.
Working...
X