Forum Replies Created
-
AuthorPosts
-
August 21, 2020 at 9:21 pm in reply to: Jquery errors while using a lightbox and sorting plugin #80365Charles KoehlerParticipant
Okay thank you. I was able to install the 3.1.1 theme with bug fixes and my plugin is working again.
August 21, 2020 at 5:55 pm in reply to: Jquery errors while using a lightbox and sorting plugin #80356Charles KoehlerParticipantOkay 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??
Charles KoehlerParticipantThank 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!
Charles KoehlerParticipantI 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.)
Charles KoehlerParticipantI’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;
?> -
AuthorPosts