Viewing 10 replies - 1 through 10 (of 10 total)
  • Plugin Author metaphorcreations

    (@metaphorcreations)

    The only way to do it would be to add some css to hide the button, either in your themes style.css file, or preferably (if not using a custom built theme) in a custom css editor (http://wordpress.org/plugins/simple-custom-css/) in your admin

    .mtphr-pricing-table-condensed .mtphr-pricing-table-button {
      display: none;
    }
    Thread Starter Fabio G

    (@fabio-g)

    Thanks.
    It works only in one table, in my page I have two different tables and your code only applies to the first of these.
    This is the page: http://www.haiti.it/tariffe/

    Another thing, I also need to remove the two lines that remains at the end of the same table.

    It’s possible?
    Thanks.

    Plugin Author metaphorcreations

    (@metaphorcreations)

    You also need to target the normal pricing table style if you want to disable those buttons as well:

    .mtphr-pricing-table-condensed .mtphr-pricing-table-button,
    .mtphr-pricing-table-normal .mtphr-pricing-table-button {
      display: none;
    }

    To remove the lines add this:

    .mtphr-pricing-table-values p {
      border-bottom: none;
    }
    Thread Starter Fabio G

    (@fabio-g)

    Thanks,
    the first code works perfectly!

    But the code to remove the lines doesn’t work, they remain there.

    Plugin Author metaphorcreations

    (@metaphorcreations)

    You may need to target them with a little more priority. Try one of these:

    body .mtphr-pricing-table-values p {
      border-bottom: none;
    }

    or

    .mtphr-pricing-table-values p {
      border-bottom: none !important;
    }
    Thread Starter Fabio G

    (@fabio-g)

    The first works perfectly!
    Thank you very much for your support.

    Plugin Author metaphorcreations

    (@metaphorcreations)

    You’re welcome! Glad you like the plugin!

    Hi there, please can you help me. I am trying to remove / divert the sign up button on the home page as I would like members to subscribe and pay for membership before been able to sign up. Any ideas? Thanks http://www.monkeymatchmaker.com

    Currently diverts to membership levels page but then when you click sign up button after selecting the level you require its stuck in a loop back to membership levels page. Hope this makes sense 🙂

    Plugin Author metaphorcreations

    (@metaphorcreations)

    Sorry, I can’t help you with this issue. This thread and support forum is for the Metaphor Shortcodes plugin (which you don’t seem to be using). You will probably need to hire a developer to help you out as it seems you are running into a complex and custom issue on your site.

    But, for some quick advice you’ll probably need to use the is_user_logged_in() function to see if a user is logged in… if so set the link for that button to the sign page, if not set the link for that button to the subscribe/pay page.

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Remove the Sign Up button’ is closed to new replies.