Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • in reply to: Sticky menu cover page title #89277
     maelga
    Participant

    Fixed.
    If anyone encounters the issue, here’s my fix for a 50px high sticky menu.

    COPY CODE
    @media (max-width: 991px) {
    .sticky-wrapper {
        height: 50px!important;
        margin-top: -1px;
    	}
    }
    
     maelga
    Participant

    Same code as above, just making it clearer:

    COPY CODE
    $like[] = $wpdb->prepare ("value = %s OR value LIKE %s", $value, $escaped);
    }
    $sql .= 'AND ('. implode (' OR ', $like). ')';

    with

    COPY CODE
    $like[] = $wpdb->prepare ("value LIKE %s", $escaped);
    }
    $sql .= 'AND ('. implode (' AND ', $like). ')';
Viewing 2 posts - 1 through 2 (of 2 total)

Log in with your credentials

Forgot your details?