Forum Replies Created
-
AuthorPosts
-
Theme Horse Support Team
KeymasterThat’s great Karen
Thank you
Theme Horse Support Team
KeymasterThat’s great Chaimongkol
Could you also please help us rating this theme in WordPress Repository.
https://wordpress.org/support/view/theme-reviews/attitude
We really appreciate your rating.Thank you
Theme Horse Support Team
KeymasterAll the best jeanlucgarnier
Thank you
July 21, 2016 at 7:49 am in reply to: Business Page Sidebar Featured Widget & Services Visual Display #46078Theme Horse Support Team
KeymasterHi Becci,
First let us know why you have used genesis column advanced plugin in our theme and then only we can provide alternative of that plugins.
Thank you
Theme Horse Support Team
KeymasterYou welcome Schuller
Thank you
Theme Horse Support Team
KeymasterHi outsmarts,
Which version are you using now? Currently our version is 3.0.5. If you are using this version then you must not get the above error. Can you provide your site url too? Also this is Attitude Pro related questions so please post on attitude pro fourm instead of using this free forum.
Thank you
Theme Horse Support Team
KeymasterThat’s great Michael
Thank you
Theme Horse Support Team
KeymasterYou welcome Gudrun
Thank you
Theme Horse Support Team
KeymasterHi taryl,
We have already fixed this issues since a year ago. I means you are not updating new version. Upgrade to new version will solve all your issues.
Thank you
Theme Horse Support Team
KeymasterHi Gudrun,
yes our theme is compatible with bbPress forum. You can use it. Other forum plugins, we are also unknown about it.
Thank you
Theme Horse Support Team
KeymasterHi cecilia,
Goto dashboard -> appearance -> customize -> advanced options -> home page/ blog category settings and select your news category to display only posts from your news category.Our default is blog image large. So blog image medium template will not work for it. It needs some code customziation on the default theme layout from blog image large to blog image medium. Go to theme folder -> inc -> structure -> content-extensio.php on line no 132 to 141 you will find below code
<?php if( has_post_thumbnail() ) { $image = ''; $title_attribute = the_title_attribute( array( 'echo' => false ) ); $image .= '<figure class="post-featured-image">'; $image .= '<a href="' . get_permalink() . '" title="'.the_title( '', '', false ).'">'; $image .= get_the_post_thumbnail( $post->ID, 'featured', array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ) ) ).'</a>'; $image .= '</figure><!-- .post-featured-image -->'; echo $image; } ?>
replace with
<?php if( has_post_thumbnail() ) { $image = ''; $title_attribute = the_title_attribute( array( 'echo' => false ) ); $image .= '<figure class="post-featured-image">'; $image .= '<a href="' . get_permalink() . '" title="'.the_title( '', '', false ).'">'; $image .= get_the_post_thumbnail( $post->ID, 'featured-medium', array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ) ) ).'</a>'; $image .= '</figure><!-- .post-featured-image -->'; echo $image; } ?>
We recommended not to change the code because if you change the code then while updating to our new version all your customisation code will be lost. So better make child theme and first unhook the functions and the edit the code.
http://codex.wordpress.org/Child_Themes
Thank you
Theme Horse Support Team
Keymasterhi mitre.markovski,
We are sorry for this. Only page you can display on the featured recent work widget. It needs code customization to show post if required but you need to hire a developer to add it. Because supporting post page its a completely a new feature to be added in the theme.
Thank you
Theme Horse Support Team
KeymasterHi zmetalplastweb,
You can copy text and content but not premium images. Some images are premium so you must be responsible by yourself if you use it. Also we don’t provide any dummy content. To set as in our demo site visit theme instruction page.
Thank you
Theme Horse Support Team
KeymasterHi david.danaan,
Just copy paste below code in your child theme functions.php
<?php /****************************************************************************************/ if ( ! function_exists( 'attitude_theloop_for_single' ) ) : /** * Fuction to show the single post content. */ function attitude_theloop_for_single() { global $post; if( have_posts() ) { while( have_posts() ) { the_post(); do_action( 'attitude_before_post' ); ?> <section id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <article> <?php do_action( 'attitude_before_post_header' ); ?> <header class="entry-header"> <h1 class="entry-title"> <?php the_title(); ?> </h1><!-- .entry-title --> </header> <?php do_action( 'attitude_after_post_header' ); ?> <?php do_action( 'attitude_before_post_content' ); ?> <?php if( has_post_thumbnail() ) { $image = ''; $title_attribute = apply_filters( 'the_title', get_the_title( $post->ID ) ); $image .= '<figure class="post-featured-image">'; $image .= '<a href="' . get_permalink() . '" title="'.the_title( '', '', false ).'">'; $image .= get_the_post_thumbnail( $post->ID, 'featured-large', array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ) ) ).'</a>'; $image .= '</figure>'; echo $image; } ?> <div class="entry-content clearfix"> <?php the_content(); if( is_single() ) { $tag_list = get_the_tag_list( '', __( ', ', 'attitude' ) ); if( !empty( $tag_list ) ) { ?> <div class="tags"> <?php _e( 'Tagged on: ', 'attitude' ); echo $tag_list; ?> </div> <?php } } wp_link_pages( array( 'before' => '<div style="clear: both;"></div><div class="pagination clearfix">'.__( 'Pages:', 'attitude' ), 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>', 'pagelink' => '%', 'echo' => 1 ) ); ?> </div> <?php if(get_the_time( get_option( 'date_format' ) )) { ?> <div class="entry-meta-bar clearfix"> <div class="entry-meta"> <span class="by-author"><?php _e( 'By', 'attitude' ); ?> <a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>"><?php the_author(); ?></a></span> | <span class="date"><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( get_the_time() ); ?>"><?php the_time( get_option( 'date_format' ) ); ?></a></span> | <?php if( has_category() ) { ?> <span class="category"><?php the_category(', '); ?></span> | <?php } ?> <?php if ( comments_open() ) { ?> <span class="comments"><?php comments_popup_link( __( 'No Comments', 'attitude' ), __( '1 Comment', 'attitude' ), __( '% Comments', 'attitude' ), '', __( 'Comments Off', 'attitude' ) ); ?></span> | <?php } ?> </div><!-- .entry-meta --> </div> <?php do_action( 'attitude_after_post_content' ); } do_action( 'attitude_before_comments_template' ); comments_template(); do_action ( 'attitude_after_comments_template' ); ?> </article> </section> <?php do_action( 'attitude_after_post' ); } } else { ?> <h1 class="entry-title"><?php _e( 'No Posts Found.', 'attitude' ); ?></h1> <?php } } endif; ?>
Thank you
Theme Horse Support Team
KeymasterHi david.danaan,
Yes the featured image is not displayed on single page. We have designed our theme this way. You can add images on the post editor from media. If you like to display the same featured image on single page then you have to add some code at theme folder -> library-> structure -> content-extension.php on line no 258 inside this functions
attitude_theloop_for_single()
but adding direct code on the theme, you will get problem while updating to new version. So we always recommended you to create a child theme so that while updating to new version your customized code will not be lost. If you are not familier with child theme then each and every time while you made code customization, the same changes need to make on the theme.<?php if( has_post_thumbnail() ) { the_post_thumbnail(); } ?>
Thank you!
-
AuthorPosts