badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Charles Koehler

Forum Replies Created

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • in reply to: Jquery errors while using a lightbox and sorting plugin #80365
    Charles Koehler
    Participant

    Okay thank you. I was able to install the 3.1.1 theme with bug fixes and my plugin is working again.

    in reply to: Jquery errors while using a lightbox and sorting plugin #80356
    Charles Koehler
    Participant

    Okay I sent a submission through the contact form. I just recently purchased the newest version. I really need this fixed quickly. Is there anyway a support team member can elevate and respond to my contact form submission today??

    in reply to: Menu doesn't work #51701
    Charles Koehler
    Participant

    Thank you mta for posting your code. That helped me as I was having the same hover problem. Adjusting the top margin worked for me. I’m sure it is a plugin that is also messing with the navigation… but I only have a few plugins installed and I need all of them. Thanks Theme Horse support for pointing out the plugin problem though!

    in reply to: HTML in Our Team widget #51578
    Charles Koehler
    Participant

    I agree this would be a good feature to add. Linking contact info and being able to add paragraphs to the description seems like something that should come standard on this team page functionality. Please add to future additions. Now I need to look into a plugin that does this because I can’t do what I need to do with the team page template (and all I need to do is add a return, so the text isn’t all running in one big line.)

    in reply to: Loading header-extension.php in Child Theme #47563
    Charles Koehler
    Participant

    I’m trying to do the same thing. My child-theme is set up and my style.css is working just fine but below is my functions.php file. Where and what code do I add to get my child-themes header-extensions.php file to work?

    <?php

    if ( ! function_exists( ‘attitude_header_title’ ) ) :
    /**
    * Show the title in header
    *
    * @since Attitude Pro 1.0
    */
    function attitude_header_title() {
    if( is_archive() ) {
    $attitude_header_title = single_cat_title( ”, FALSE );
    }
    elseif( is_404() ) {
    $attitude_header_title = __( ‘Page NOT Found’, ‘attitude’ );
    }
    elseif( is_search() ) {
    $attitude_header_title = __( ‘Search Results’, ‘attitude’ );
    }
    elseif( is_page_template() ) {
    $attitude_header_title = get_the_title();
    }
    else {
    $attitude_header_title = get_the_title();
    }

    return $attitude_header_title;

    }
    endif;
    ?>

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