[Pro Sites pricing table] Need one column to read £POA

0

Hi – I am using the Pro Sites plugin. I have set up the pricing table- however I need one of the columns to be read £POA – and instead of the Sign Up button – it just goes to Contact Us page. Is this possible?

  • Kris Tomczyk
    • Ex Staff

    Hi Catherine Colling

    Hope you are doing good today.

    From what I check you site you need to replace this button in 3 column.

    Below solution could make this happen.

    Please install this plugin: https://wordpress.org/plugins/custom-css-js/

    or any other plugin which allow to add custom snippets to site.

    After that activate this plugin on main site.

    Add this code as custom JS:

    jQuery( document ).ready(function($) {
    $('.psts-level-3 .button-box').html('<a href="#">Contact Us</a>');
    });

    just replace # in href to your contact page URL.

    After that in same plugin add this code as custom CSS:

    .pricing-column .button-box {overflow:hidden; height:65px;}
    .pricing-column .button-box a {
    width: 100%; float:left;
    border:1px solid #eee;
    margin-top: 10px;
    font-size: 0.8em;
    padding: 0.8em 0.1em;
    }

    .pricing-column .button-box a {color:#fff;}
    .pricing-column .button-box a {background: #3daa36;}
    .pricing-column .button-box a:hover {color: #3daa36;}
    .pricing-column .button-box a:hover {background: #fff;}

    Hope this help :slight_smile:

    Kind Regards,

    Kris