badget

Biggest Sale! Special Offer!

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

Hurry up! *Limited time offer*

Theme Horse Support Team

Forum Replies Created

Viewing 15 posts - 1,696 through 1,710 (of 5,207 total)
  • Author
    Posts
  • in reply to: Drop Down Menu Items #46143

    That’s great Karen

    Thank you

    in reply to: Change my own font at menubar and side bar #46142

    That’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

    in reply to: Attitude Pro / how to customize 404 page? #46100

    All the best jeanlucgarnier

    Thank you

    Hi 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

    in reply to: Submenu not clickable #46077

    You welcome Schuller

    Thank you

    in reply to: Attitude Pro – Parser Errors #46051

    Hi 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

    in reply to: Image Slider plugin ? #46033

    That’s great Michael

    Thank you

    in reply to: Forum plugin #46032

    You welcome Gudrun

    Thank you

    in reply to: Parser Errors 123 #46031

    Hi 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

    in reply to: Forum plugin #46010

    Hi Gudrun,

    yes our theme is compatible with bbPress forum. You can use it. Other forum plugins, we are also unknown about it.

    Thank you

    in reply to: Set Blog Image Medium for a particular category #46009

    Hi 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

    in reply to: Featured Recent Work Widget #46007

    hi 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

    in reply to: import of the Interface Free Theme possible? #46006

    Hi 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

    in reply to: Need featured image to display on single posts #46005

    Hi 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

    in reply to: Need featured image to display on single posts #45981

    Hi 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!

Viewing 15 posts - 1,696 through 1,710 (of 5,207 total)