• Hi, great plug-in, simple plug-ins that do one job well aren’t all that common these days.

    Wanted to mention, on the current install there is a directory error, some of the JS files on the plugin are at vendor/…/themes/… but its written in the code as vendor/…/theme/… (without the s on themes) so pretty easy to fix.

    What I did want to ask, any idea how to get the plug-in to recognize custom post types. My theme has a portfolio section, can’t see why its not picking it up under the settings> post types checkboxes.

    Any idea what might be to be missing for that to happen?

    Also, here is some simple css I added to make it work with my theme and make it a little more user friendly, maybe its of use to you for a future update.

    .ui-tooltip {
    position:absolute;
    z-index:9999; /*this is busier than z-index:2; these days ??*
    max-width:300px;
    padding: 10px;
    }

    body .ui-tooltip
    {
    position: relative;
    background: #37474f;
    border:0px !important;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.2);
    -moz-box-shadow: 5px 5px 5px rgba(0,0,0,0.2);
    -webkit-box-shadow: 5px 5px 5px rgba(0,0,0,0.2);
    -o-box-shadow: 5px 5px 5px rgba(0,0,0,0.2);
    border-radius: 6px 15px 15px 15px;
    -moz-border-radius: 6px 15px 15px 15px;
    -webkit-border-radius: 6px 15px 15px 15px;
    }

    .ui-tooltip:after {
    bottom: 100%;
    left: 25px;
    border: solid transparent;
    content: ” “;
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(75, 101, 117, 0);
    border-bottom-color: #f9a825;
    border-width: 15px;
    margin-left: -15px;
    }

    Thanks again.

  • The topic ‘Error in file structure’ is closed to new replies.