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 - 4,291 through 4,305 (of 5,207 total)
  • Author
    Posts
  • Hi David,
    Sorry we don’t have this feature. We only have the excerpt words to define.
    Thank you!

    in reply to: How to display full blog post in categories #13250

    hi marmarr,
    did you customise the code ? 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

    We have full content display options. go to Dashboard -> pages -> new page / (edit any page) -> at the right side there is template blog full content display. Select that template and it will display the full content.

    Thank you!

    in reply to: Feature request: export settings #13249

    Hi Marcin.
    The problem might be migrating from one server to another. You can migrate to interface free to interface pro without any change on the same server. Yes while migrating to another server widgets content will be lost not only in this theme but also in other too.
    We are sorry for that.
    Thank you!

    in reply to: SSL Problem #13248

    Hi woodlandsp,
    This url is enqueue from the theme folder -> library -> functions -> functions.php
    you can simply modify the http:// to https:// on line no 68
    wp_register_style( 'attitude_google_font', 'http://fonts.googleapis.com/css?family='.$attitude_google_font_load );

    but 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: Navigation menu location #13247

    Hi Emi,
    Could you please send the url of your site too. We will look over it.
    Thank you!

    in reply to: Web Page Columns #13246

    Hi Mike,
    Yes exactly you need to create the child theme not to lose the changes while updating the theme to a new version.
    Thank you!

    in reply to: update problem #13243

    ok That’s great Floy
    Thank you!

    in reply to: Clean Retina Pro Child #13242

    Hi Patricia,
    Did you update the new version of theme ? At first update the new version of the theme and after that create a child theme and import the css from style.css delete the old version of your theme after upgrading to the new version.

    Hope your problem will be solved.

    Thank you!

    in reply to: Alphabetical Archive Listing #13241

    hi kelsey,

    We are using action hook. This all file is located inside your theme folder -> library -> structure -> content-extension.php
    All pages are controlled from this file.

    if ( ! function_exists( 'cleanretina_theloop_for_archive' ) ) :
    /**
     * Fuction to show the archive loop content.
     */
    function cleanretina_theloop_for_archive() {
    	global $post;
    	global $cleanretina_theme_options_settings;
    	$options = $cleanretina_theme_options_settings;
    
    	if( have_posts() ) {
    		while( have_posts() ) {
    			the_post();
    
    			do_action( 'cleanretina_before_post' );
    ?>
    	<section id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    		<article class="clearfix">
    
    			<?php do_action( 'cleanretina_before_post_header' ); ?>
    
    			<header class="entry-header">
        			<h2 class="entry-title">
        				<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute();?>"><?php the_title();?></a>
        			</h2><!-- .entry-title -->
        			<?php if (get_the_author() !=''){?>
                            	<div class="entry-meta">
    					<span class="by-author vcard author"><span class="fn"><?php _e( 'By', 'cleanretina' ); ?> <a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>"><?php the_author(); ?></a></span></span>
                 	<span class="date updated"><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', 'cleanretina' ), __( '1 Comment', 'cleanretina' ), __( '% Comments', 'cleanretina' ), '', __( 'Comments Off', 'cleanretina' ) ); ?></span>
                 	<?php } ?>
             	</div><!-- .entry-meta -->
             	<?php } ?>
            		</header>
    
      			<?php do_action( 'cleanretina_after_post_header' ); ?>
    
      			<?php do_action( 'cleanretina_before_post_content' ); ?>
    
      			<?php
      			if( 'excerpt_display_one' == $options[ 'blog_display_type' ] || 'excerpt_display_two' == $options[ 'blog_display_type' ] ) {
    	  			if( 'excerpt_display_one' == $options[ 'blog_display_type' ] ) {
    	  				$featured_image_type = 'featured';
    	  			}
    	  			else {
    	  				$featured_image_type = 'featured-medium';
    	  			}
    
    				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_attribute( 'echo=0' ).'">';
    	     			$image .= get_the_post_thumbnail( $post->ID, $featured_image_type, array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ) ) ).'</a>';
    	     			$image .= '</figure>';
    
    		  			echo $image;
    		  		}
    	  			?>
    	  			<?php if (get_the_author() !=''){?>
    	  			<div class="entry-content clearfix">
    	    			<?php 
    	    				the_excerpt();
    	    				echo '<a class="readmore" href="' . get_permalink() . '" title="'.the_title( '', '', false ).'">'.$options[ 'post_excerpt_more_text' ].'</a>'; 
    	    			?>
    	  			</div><!-- .entry-content --> 
    	  			<?php } else{
    			the_content();	
    				} ?>
    
    		  		<?php
    			  	}
    			  	else {
    			  	?>
    			  		<div class="entry-content clearfix">
    			  			<?php
    			  			the_content( $options[ 'post_excerpt_more_text' ] );
    			  			wp_link_pages( array( 
    							'before'            => '<div style="clear: both;"></div><div class="pagination clearfix">'.__( 'Pages:', 'cleanretina' ),
    							'after'             => '</div>',
    							'link_before'       => '<span>',
    							'link_after'        => '</span>',
    							'pagelink'          => '%',
    							'echo'              => 1 
    	               ) ); 
    			  			?>
    			  		</div><!-- .entry-content -->
    			  	<?php
    		  	}
    		  	?>
    
      			<?php do_action( 'cleanretina_after_post_content' ); ?>
    
    		</article>
    	</section>
    	<hr/>
    <?php
    			do_action( 'cleanretina_after_post' );
    
    		}
    	}
    	else {
    		?>
    		<h1 class="entry-title"><?php _e( 'No Posts Found.', 'cleanretina' ); ?></h1>
          <?php
       }
    }
    endif;

    This argument you need to pass inside this function. View this link
    http://codex.wordpress.org/Function_Reference/get_categories

    You need to customise the code inside this function. If you are still unable then you may hire a developer to fix the issue.

    Thank you!

    in reply to: Change menu text search #13240

    hi Usuario1988,

    Could you specify it clearly. We did not get exactly what you mean.

    Thank you!

    in reply to: Change Font and Font Size? #13239

    HI xauaz,
    We don’t have this features in our free version. This feature is available only in pro version of our theme.

    Thank you!

    in reply to: Problem with functions. #13238

    Hi men.tos,
    We have left the hook in many other place too which hook does not function now. This is for the future planning if that may be used on some days. Did you get any problem regarding to this hook ? If yes then simply you can remove it but 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.

    Thank you!

    in reply to: Custom Post type on Home page SLider #13237

    hi tonio1012
    That’s great but 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: Installing Interface Premium #13236

    hi jessica,
    You just go to the admin dashboard -> appearance -> themes -> add new (at the top ) -> upload themes (at the top ) -> choose you zipped file (from your specific location )-> install theme

    After doing this your theme will be installed in WordPress and just activate it. Then your new theme will work.

    Thank you!

    in reply to: Alphabetical Archive Listing #13178

    Hi kelsey,
    To display in random order just try this 'orderby' => 'rand', This may help you
    follow this link too
    http://wordpress.org/support/topic/how-to-display-random-posts-from-a-given-category
    http://wordpress.org/support/topic/pull-a-random-category

    Thank you!

Viewing 15 posts - 4,291 through 4,305 (of 5,207 total)