Upgraded to WordPress 6.0 and have issues? Please check the hotfix which you need to apply.

Okay
  Public Ticket #1403481
changes
Closed

Comments

  • ckgriffin started the conversation

    You had replied previously about needing FTP to make the changes below. Could you please make them through the Appearance> Editor. And please send the changed section code so that when you do a theme update I can go back in and make the changes again.

    Thank you!

    **** Original questions below***

    Hi,

    Had a couple questions I was hoping you could help with..
    http://redtopcheesecakes.com/
    1. Is it possible to put a search box in the upper right hand corner “top bar” area, to the right of My Account?
    2. On home page, about 3/4 of the way down, the four service items area. Is it possible to make each item title a clickable link instead of having to have the “click here”?

    Thanks!

  •  225
    Milingona replied

    Hi there,

    We have just implemented your requests through the built-in editor.

    1. Title for service item is now clickable. Line 53 of service-item.php was replaced with the following:

    <?php 
    if ( $atts['add_link'] == '1' && strlen( $atts['link'] ) > 0 && strlen( $link['url'] ) > 0 ) {
    echo '<h3><a href="'. esc_url( $link['url'] ) .'">'. esc_html($atts['title']) .'</a></h3>';
    } else {
    echo '<h3>'. esc_html($atts['title']) .'</h3>';
    }
    ?>


    2. Search form has been added to the top bar. Line 46 was added to header.php and the following custom CSS was placed at Bakery > Custom Code.

    .vu_top-bar .search-form {
        display: inline-block;
        margin-left: 20px;
    }
    .vu_top-bar .search-form input {
        border: none !important;
        width: auto;
        min-width: 180px;
        padding: 0px 35px 0px 10px;
        font-size: 12px;
    }
    .vu_top-bar .search-form:after {
        font-size: 12px;
        right: 6px;
        top: 2px;
    }

    Hope you will like it!

    Kind regards,


    Milingona Support

    Follow on     Envato     Facebook     Twitter

  • ckgriffin replied

    Perfect!
    Thanks

  •  225
    Milingona replied

    You're very welcome!


    Milingona Support

    Follow on     Envato     Facebook     Twitter