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

Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • in reply to: Accordion shortcode broken after update to WordPress 4.0.1 #4877

    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

    Hey Guys
    I can’t find the section;
    I have put the same code in: framework/inc/shortcodes.php
    At section “Accordion”

    in my functions.php file – any other tips where it works?
    Closest I have is include_once(‘framework/inc/shortcodes.php’); // Load Shortcodes
    Thanks

    in reply to: Styling for Accordians and Page #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
    /* ———————————————————————— */

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