Warning: Attempt to read property "supported_until" on string in /home/skattf/public_html/wp-content/themes/helpdesk/core/libraries/vendors/bbpress/init.php on line 170

Home Forums Theme Support GetFit Styling for Accordians and Page


Warning: range(): Argument #1 ($start) must be a single byte, subsequent bytes are ignored in /home/skattf/public_html/wp-content/plugins/buddypress-first-letter-avatar/buddypress-first-letter-avatar.php on line 657

Warning: range(): Argument #2 ($end) must be a single byte, subsequent bytes are ignored in /home/skattf/public_html/wp-content/plugins/buddypress-first-letter-avatar/buddypress-first-letter-avatar.php on line 657

Warning: range(): Argument #1 ($start) must be a single byte, subsequent bytes are ignored in /home/skattf/public_html/wp-content/plugins/buddypress-first-letter-avatar/buddypress-first-letter-avatar.php on line 658

Warning: range(): Argument #2 ($end) must be a single byte, subsequent bytes are ignored in /home/skattf/public_html/wp-content/plugins/buddypress-first-letter-avatar/buddypress-first-letter-avatar.php on line 658
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2290

    Warning: range(): Argument #1 ($start) must be a single byte, subsequent bytes are ignored in /home/skattf/public_html/wp-content/plugins/buddypress-first-letter-avatar/buddypress-first-letter-avatar.php on line 657

    Warning: range(): Argument #2 ($end) must be a single byte, subsequent bytes are ignored in /home/skattf/public_html/wp-content/plugins/buddypress-first-letter-avatar/buddypress-first-letter-avatar.php on line 657

    Warning: range(): Argument #1 ($start) must be a single byte, subsequent bytes are ignored in /home/skattf/public_html/wp-content/plugins/buddypress-first-letter-avatar/buddypress-first-letter-avatar.php on line 658

    Warning: range(): Argument #2 ($end) must be a single byte, subsequent bytes are ignored in /home/skattf/public_html/wp-content/plugins/buddypress-first-letter-avatar/buddypress-first-letter-avatar.php on line 658
    mlsn51
    Warning: Attempt to read property "supported_until" on string in /home/skattf/public_html/wp-content/themes/helpdesk/core/libraries/vendors/bbpress/init.php on line 109

    Is there any code to add in so that when you open a page all the accordians are closed rather than the first one open? We love the template but feel the top accordian is getting preference or highlighted when we want them all to be equal.

    Also have created a table within a blank page with alternate line shading and the template CSS is overriding the shading – any ideas?

    THANK YOU!

    #2291

    Warning: range(): Argument #1 ($start) must be a single byte, subsequent bytes are ignored in /home/skattf/public_html/wp-content/plugins/buddypress-first-letter-avatar/buddypress-first-letter-avatar.php on line 657

    Warning: range(): Argument #2 ($end) must be a single byte, subsequent bytes are ignored in /home/skattf/public_html/wp-content/plugins/buddypress-first-letter-avatar/buddypress-first-letter-avatar.php on line 657

    Warning: range(): Argument #1 ($start) must be a single byte, subsequent bytes are ignored in /home/skattf/public_html/wp-content/plugins/buddypress-first-letter-avatar/buddypress-first-letter-avatar.php on line 658

    Warning: range(): Argument #2 ($end) must be a single byte, subsequent bytes are ignored in /home/skattf/public_html/wp-content/plugins/buddypress-first-letter-avatar/buddypress-first-letter-avatar.php on line 658
    skat
    Warning: Attempt to read property "supported_until" on string in /home/skattf/public_html/wp-content/themes/helpdesk/core/libraries/vendors/bbpress/init.php on line 109

    Hi there,

    1. Here’s what you need to do:

    Go to the theme’s folder > framework > js and edit the file named “custom.js”. Now, on line 65 you’ll find this:

    tabs: '.tab',

    just after it, paste this:

    initialIndex: 9999,

    Save. Done.

    2. Can you send me your url so I can take a look?

    Cheers!
    Chris

    #2370

    Warning: range(): Argument #1 ($start) must be a single byte, subsequent bytes are ignored in /home/skattf/public_html/wp-content/plugins/buddypress-first-letter-avatar/buddypress-first-letter-avatar.php on line 657

    Warning: range(): Argument #2 ($end) must be a single byte, subsequent bytes are ignored in /home/skattf/public_html/wp-content/plugins/buddypress-first-letter-avatar/buddypress-first-letter-avatar.php on line 657

    Warning: range(): Argument #1 ($start) must be a single byte, subsequent bytes are ignored in /home/skattf/public_html/wp-content/plugins/buddypress-first-letter-avatar/buddypress-first-letter-avatar.php on line 658

    Warning: range(): Argument #2 ($end) must be a single byte, subsequent bytes are ignored in /home/skattf/public_html/wp-content/plugins/buddypress-first-letter-avatar/buddypress-first-letter-avatar.php on line 658
    mlsn51
    Warning: Attempt to read property "supported_until" on string in /home/skattf/public_html/wp-content/themes/helpdesk/core/libraries/vendors/bbpress/init.php on line 109

    Hi Chris
    This is what we found in the folder you mentioned but not the code you say to amend, can you help please?
    Thanks

    (function ($) {
    “use strict”;
    //superfish menu
    $(function () {
    $(‘ul.sf-menu’).superfish({
    delay: 1000,
    animation: {
    opacity:’show’,
    height:’show’
    },
    disableHI: false
    });
    });
    //prettyphoto
    $(“a[rel^=’prettyPhoto’], a[rel^=’lightbox’]”).prettyPhoto({
    theme: ‘pp_default’,
    default_width: 500,
    overlay_gallery: true
    });
    //comment form box click function
    var $submit_button;
    var $website_box;
    $submit_button = $(“.form-submit #submit”);
    $website_box = $(“.last-input input”);
    $submit_button.click(function() {
    if( $website_box.attr(“value”) === “Website” ) {

    // Set it to an empty string
    $website_box.attr(“value”, “”);
    }
    });
    // skills percentage
    $(‘.skill’).each(function(){
    var dataperc;
    dataperc = $(this).attr(‘data-perc’),
    $(this).find(‘.skill-bar’).animate({ “width” : dataperc + “%”}, dataperc*20);
    });
    //tooltip
    $(“.tool-tip-content”).hover(function () {
    $(this).next(“.tooltip”).stop(true, true).animate({
    opacity: “show”,
    bottom: “25”
    }, “slow”);
    }, function () {
    $(this).next(“.tooltip”).animate({
    opacity: “hide”,
    bottom: “25”
    }, “fast”);
    });
    //toggles
    $(“.toggle-title”).toggle(
    function () {
    $(this).addClass(‘toggle-active’);
    $(this).siblings(‘.toggle-content’).slideDown(“fast”);
    }, function () {
    $(this).removeClass(‘toggle-active’);
    $(this).siblings(‘.toggle-content’).slideUp(“fast”);
    });

    //tabs and accordions
    $(function () {
    //accordion
    $(“.accordion”).fptabs(“div.pane”, {
    tabs: ‘.tab’,
    effect: ‘slide’
    });
    //tabs
    $(“ul.tabs”).fptabs(“div.panes > div”, {
    effect: ‘fade’
    });
    });
    //vertical tabs
    $(function () {
    $(‘#vertical-tabs, #vertical-tabs1, #vertical-tabs2, #vertical-tabs3, #vertical-tabs4, #vertical-tabs5, #vertical-tabs6, #vertical-tabs7, #vertical-tabs8, #vertical-tabs9, #vertical-tabs10’).tabs({
    fx: [{
    opacity: ‘toggle’,
    duration: 90
    }, // hide option
    {
    opacity: ‘toggle’,
    duration: 90
    }]
    }); // show option
    });
    //end
    })(jQuery);

    /* ———————————————————————— */
    /* EOF
    /* ———————————————————————— */

    #2373

    Warning: range(): Argument #1 ($start) must be a single byte, subsequent bytes are ignored in /home/skattf/public_html/wp-content/plugins/buddypress-first-letter-avatar/buddypress-first-letter-avatar.php on line 657

    Warning: range(): Argument #2 ($end) must be a single byte, subsequent bytes are ignored in /home/skattf/public_html/wp-content/plugins/buddypress-first-letter-avatar/buddypress-first-letter-avatar.php on line 657

    Warning: range(): Argument #1 ($start) must be a single byte, subsequent bytes are ignored in /home/skattf/public_html/wp-content/plugins/buddypress-first-letter-avatar/buddypress-first-letter-avatar.php on line 658

    Warning: range(): Argument #2 ($end) must be a single byte, subsequent bytes are ignored in /home/skattf/public_html/wp-content/plugins/buddypress-first-letter-avatar/buddypress-first-letter-avatar.php on line 658
    skat
    Warning: Attempt to read property "supported_until" on string in /home/skattf/public_html/wp-content/themes/helpdesk/core/libraries/vendors/bbpress/init.php on line 109

    Hi,

    If you check the code that you’ve pasted, just below the “//accordion” area, you can see the line. You can “CTRL+F” (if on Win) to use the find feature.

    Cheers!
    Chris

Viewing 4 posts - 1 through 4 (of 4 total)

You must be logged in to reply to this topic.