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 - 2,761 through 2,775 (of 5,207 total)
  • Author
    Posts
  • in reply to: Featured images border #24789

    Hi Sebastian,

    Could you make it more clear? I didn’t get exactly what you mean? And also provide your site url so that it would be more easy to fix it.

    Thank you!

    in reply to: Gallery can't be shown through cart tabs. #24787

    Hi pentalogia,

    Yes if you change the slug name then it won’t work. So you must use the default slug name. We are sorry for this and we have not tested our site using local character. We only test with the default language(English). If we bring any updates regarding to this then we will let you know.

    Thank you!

    in reply to: Image does not show in post #24786

    Hi Ed,

    To show images in post you need to add the featured image. View this screenshot.
    http://www.awesomescreenshot.com/image/204917/746a02a22c49fc7aeedf9b61ecec2d92

    To hide readmore button use this CSS inside your custom css.
    Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:

    a.readmore {
      display: none;
    }

    This may help you

    Thank you!

    in reply to: Background image for Header Text #24785

    Hi ansicone,

    This feature is not available in our theme. We are sorry for this. It needs code customization and you need to hire a developer.

    Thank you!

    in reply to: TH: Our Team widget not saving content #24784

    Hi Let’sTalk,

    To create Our Team Page as in our demo, First of all create a page and select the template (Our Team Page Template). View this below screenshot.
    http://www.awesomescreenshot.com/image/204897/69e3c2b1d5f5ce02ce36f49ca22e3317

    After doing it go to dashboard -> appearance-> widgets-> Our team Page section. Drag and drop our team widgets on this sidebar.
    View this screenshot.
    http://www.awesomescreenshot.com/image/204904/edbd0824b3aae03fc93e7bc277d00e54

    Then you will be able to see as in our demo site.

    Thank you!

    in reply to: Child theme #24746

    Hi ptp,

    You don’t need to create a file structure (inc/structure), you can control all from your functions.php,

    Ok this is for archive.php file only to display the full content using child theme instead of using excerpt. You may do in the same way for other pages too.

    Add this follow code in your functions.php file

    // Unhook default Thematic functions
    function unhook_thematic_functions() {
    remove_action( 'interface_loop_content', 'interface_theloop', 10 );
    }
    add_action( 'interface_loop_content', 'interface_child_theloop', 10 );
    /**
     * Shows the loop content
     */
    function interface_child_theloop() {
    	if( is_page() ) {
    		if( is_page_template( 'page-templates/page-template-blog-image-large.php' ) ) {
    			
    			interface_theloop_for_template_blog_image_large();
    			
    		}
    		elseif( is_page_template( 'page-templates/page-template-blog-image-medium.php' ) ) {
    			interface_theloop_for_template_blog_image_medium();
    		}
    		elseif( is_page_template( 'page-templates/page-template-blog-full-content.php' ) ) {
    			
    			interface_theloop_for_template_blog_full_content();
    			
    		}
    		else {
    			interface_theloop_for_page();
    		}
    	}
    	elseif( is_single() ) {
    		interface_theloop_for_single();
    	}
    	elseif( is_search() ) {
    		interface_theloop_for_search();
    	}
    	else {
    		interface_theloop_child_for_archive();
    	}
    }
    
    if ( ! function_exists( 'interface_theloop_child_for_archive' ) ) :
    /**
     * Fuction to show the archive loop content.
     */
    function interface_theloop_child_for_archive() {
    	global $post;
    
    	if( have_posts() ) {
    		while( have_posts() ) {
    			the_post();
    
    			do_action( 'interface_before_post' );
    ?>
    
    <section id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
      <?php do_action( 'interface_before_post_header' ); ?>
      <article>
        <?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', array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ) ) ).'</a>';
    					$image .='<span class="arrow"></span>';
    		  			$image .= '</figure>';
    
    		  			echo $image;
    		  		}
    	  			?>
        <header class="entry-header">
          <?php if (get_the_author() !=''){?>
          <div class="entry-meta"> <span class="cat-links">
            <?php the_category(', '); ?>
            </span><!-- .cat-links --> 
          </div>
          <?php } ?>
          <!-- .entry-meta -->
          <h1 class="entry-title"> <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute();?>">
            <?php the_title();?>
            </a> </h1>
          <!-- .entry-title -->
           <?php if (get_the_author() !=''){?>
          <div class="entry-meta clearfix">
            <div class="by-author vcard author"><span class="fn"><a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>" 
                            title="<?php  esc_attr(the_author()); ?>">
              <?php the_author(); ?>
              </a></span></div>
            <div class="date updated"><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( get_the_time() ); ?>">
              <?php the_time( get_option( 'date_format' ) ); ?>
              </a></div>
            <?php if ( comments_open() ) { ?>
            <div class="comments">
              <?php comments_popup_link( __( 'No Comments', 'interface' ), __( '1 Comment', 'interface' ), __( '% Comments', 'interface' ), '', __( 'Comments Off', 'interface' ) ); ?>
            </div>
            <?php } ?>
          </div>
          <!-- .entry-meta --> 
        </header>
        <!-- .entry-header -->
        <div class="entry-content clearfix">
          <?php the_content(); ?>
        </div>
        <!-- .entry-content -->
        <footer class="entry-meta clearfix"> <span class="tag-links">
          <?php $tag_list = get_the_tag_list( '', __( ' ', 'interface' ) );
    						if(!empty($tag_list)){
    					echo $tag_list;
    					
    						}?>
          </span><!-- .tag-links -->
        </footer>
        <!-- .entry-meta --> 
         <?php } else { ?>
       </header>
    		    <?php the_content();
          } ?>
      </article>
    </section>
    <!-- .post -->
    <?php
    			do_action( 'interface_after_post' );
    
    		}
    	}
    	else {
    		?>
    <h1 class="entry-title">
      <?php _e( 'No Posts Found.', 'interface' ); ?>
    </h1>
    <?php
       }
    }
    endif;

    Hope this may help you

    Thank you!

    in reply to: Full width custom header #24745

    Hi ansicone,
    Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:

    .hgroup-wrap {
      padding: 0;
    }

    For you second question, it needs code customization and you need to hire a developer.
    Thank you!

    in reply to: Full width custom header #24744

    Hi ansicone,
    Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:

    .hgroup-wrap {
      padding: 0;
    }

    For you second question, it needs code customization and you need to hire a developer.
    Thank you!

    in reply to: TH: Our Team widget not saving content #24742

    Hi Let’sTalk,

    First of all deactivate all the plugins that you have installed in your dashboard and check whether your problem will be solved or not. If not then you need to re install the theme once again. We always recommended you to create a child theme before making any changes so that your customized code will not be lost. If you have not made any code customization then reinstalling the theme will not lose the content/ layout formatting.

    Thank you!

    in reply to: Removing Google API fonts in child theme #24710

    Hi aaron1,

    Use

    function unhook_thematic_functions() {
    add_action( 'wp_enqueue_scripts', 'attitude_scripts_styles_method' );
    }

    after this

    add_action( 'wp_enqueue_scripts', 'attitude_child_scripts_styles_method');
    function attitude_child_scripts_styles_method(){
    // your stuff
    }

    Thank you!

    in reply to: Topic vanished #24709

    That’s great marciano

    Thank you!

    in reply to: Full header logo #24708

    You welcome Urs

    Thank you!

    in reply to: Links are broken on half the page #24707

    That’s great Abraham

    Thank you!

    in reply to: Using Demo Theme #24706

    hi rvdv1337,

    Just follow this theme instruction
    https://www.themehorse.com/theme-instruction/interface/

    Thank you!

    in reply to: Where to change footer text #24705

    Hi philip,

    This feature is not available in free version of our theme.

    Thank you!

Viewing 15 posts - 2,761 through 2,775 (of 5,207 total)