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,641 through 2,655 (of 5,207 total)
  • Author
    Posts
  • in reply to: BLOG Medium – Custom Post Category #25738

    Hi aris,

    We cannot provide you all step by step. For this you need to hire a developer.
    First of all create two files styles.css and functions.php file
    under functions.php file add this code
    unhook this functions
    add_action( 'ultimate_loop_content', 'ultimate_theloop', 10 ); with `remove_action( ‘ultimate_loop_content’, ‘ultimate_theloop’, 1
    0 );`

    After doing it add this code add this code

    add_action(‘init’,’unhook_thematic_functions’);
    
    add_action( 'ultimate_loop_content', 'ultimate_loop_content_child', 10 );
    /**
     * Shows the loop content
     */
    function ultimate_loop_content_child() {
    	if( is_page() ) {
    		if( is_page_template( 'page-templates/page-template-blog-image-large.php' ) ) {
    			ultimate_theloop_for_template_blog_image_large();
    		}
    		elseif( is_page_template( 'page-templates/page-template-blog-image-medium.php' ) ) {
    			ultimate_theloop_for_template_blog_image_medium();
    		}
    		elseif( is_page_template( 'page-templates/page-template-blog-full-content.php' ) ) {
    			ultimate_theloop_for_template_blog_full_content();
    		}
        else {
        ultimate_theloop_for_page();
        }
    	}
    	elseif( is_single() ) {
    		ultimate_theloop_for_single();
    	}
    	elseif( is_search() ) {
    		ultimate_theloop_for_search();
    	}
    	else {
    		ultimate_theloop_for_archive();
    	}
    }
    

    Now your child theme funtions is ready. Now go to the theme folder -> inc -> structure -> content-extension.php on line no 86 you will find this code

    /****************************************************************************************/
    if ( ! function_exists( 'ultimate_theloop_for_archive' ) ) :

    and copy from this line 86 to line no 735 where in line no 735 you will find this code.

          $wp_query = $temp_query;
          wp_reset_postdata();
    }
    endif;
    /****************************************************************************************/

    Are you still with me? Ok then you need to change the code in your functions.php file
    under this functions
    if ( ! function_exists( 'ultimate_theloop_for_archive' ) ) : can you see this code line no 134 to 143, there you replace this code `<?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 .= ‘</figure><!– .post-featured-image –>’;
    echo $image;
    } ?>` with

    <?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 .= '</figure><!-- .post-featured-image -->';
    	  			echo $image;
      		} ?>

    with

     <?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-medium', array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ) ) ).'</a>';
                $image .= '</figure><!-- .post-featured-image -->';
                echo $image;
            } ?>
    

    Paste this code for single functions too on line no 238
    if ( ! function_exists( 'ultimate_theloop_for_single' ) ) :
    Add the above code just you have done it now

     <?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-medium', array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ) ) ).'</a>';
                $image .= '</figure><!-- .post-featured-image -->';
                echo $image;
            } ?>
    

    If you are still unable then you need to hire a developer to fix it.
    Thank you!

    in reply to: BLOG Medium – Custom Post Category #25737

    Hi aris,

    We cannot provide you all step by step. For this you need to hire a developer.
    First of all create two files styles.css and functions.php file
    under functions.php file add this code
    unhook this functions
    add_action( 'ultimate_loop_content', 'ultimate_theloop', 10 ); with `remove_action( ‘ultimate_loop_content’, ‘ultimate_theloop’, 1
    0 );`

    After doing it add this code add this code

    add_action(‘init’,’unhook_thematic_functions’);
    
    add_action( 'ultimate_loop_content', 'ultimate_loop_content_child', 10 );
    /**
     * Shows the loop content
     */
    function ultimate_loop_content_child() {
    	if( is_page() ) {
    		if( is_page_template( 'page-templates/page-template-blog-image-large.php' ) ) {
    			ultimate_theloop_for_template_blog_image_large();
    		}
    		elseif( is_page_template( 'page-templates/page-template-blog-image-medium.php' ) ) {
    			ultimate_theloop_for_template_blog_image_medium();
    		}
    		elseif( is_page_template( 'page-templates/page-template-blog-full-content.php' ) ) {
    			ultimate_theloop_for_template_blog_full_content();
    		}
        else {
        ultimate_theloop_for_page();
        }
    	}
    	elseif( is_single() ) {
    		ultimate_theloop_for_single();
    	}
    	elseif( is_search() ) {
    		ultimate_theloop_for_search();
    	}
    	else {
    		ultimate_theloop_for_archive();
    	}
    }
    

    Now your child theme funtions is ready. Now go to the theme folder -> inc -> structure -> content-extension.php on line no 86 you will find this code

    /****************************************************************************************/
    if ( ! function_exists( 'ultimate_theloop_for_archive' ) ) :

    and copy from this line 86 to line no 735 where in line no 735 you will find this code.

          $wp_query = $temp_query;
          wp_reset_postdata();
    }
    endif;
    /****************************************************************************************/

    Are you still with me? Ok then you need to change the code in your functions.php file
    under this functions
    if ( ! function_exists( 'ultimate_theloop_for_archive' ) ) : can you see this code line no 134 to 143, there you replace this code `<?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 .= ‘</figure><!– .post-featured-image –>’;
    echo $image;
    } ?>` with

    <?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 .= '</figure><!-- .post-featured-image -->';
    	  			echo $image;
      		} ?>

    with

     <?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-medium', array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ) ) ).'</a>';
                $image .= '</figure><!-- .post-featured-image -->';
                echo $image;
            } ?>
    

    Paste this code for single functions too on line no 238
    if ( ! function_exists( 'ultimate_theloop_for_single' ) ) :
    Add the above code just you have done it now

     <?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-medium', array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ) ) ).'</a>';
                $image .= '</figure><!-- .post-featured-image -->';
                echo $image;
            } ?>
    

    Thank you!

    in reply to: Update of Revolution slider Plugin #25736

    Hi Kai,

    Thanks for your best wishes. We are going back to our normal life.
    please email us your order no at Email Us and then they will provide you a revolution slider plugins if you have an active subscription.

    Thank you!

    Ok that’s great

    Thank you!

    in reply to: how to add tags in Pages (not in post) #25713

    Hi RK,

    To add search icon in the menu go to dashboard -> appearance -> theme options -> design options -> custom header and view this screenshot
    http://www.awesomescreenshot.com/image/328122/6d84cb23fcbd99a06d02feb37c9f3d3d

    Hope this may help you
    Thank you!

    Hi thanhloiodu,

    Just edit any particular page or post. At the top of the url in admin section you will find somehow like this.
    http://your site url /ultimate/wp-admin/post.php?post=295&action=edit where your post id is 295

    Or you may fine if you hover in particular page/ post on edit section then at the bottom you will see the Url so that you can see the post it.

    Thank you!

    Hi chantal.attia,

    Which plugins are you using? We cannot gurantee any third party plugins that will work in our theme. There may be some plugins conflict so that your slider is not working. Please deactivate the plugins and check it whether it is working or not. To remove the plugins conflict it needs code customization and you need to hire a developer to fix it.

    Thank you!

    in reply to: Gray background behind posts #25683

    Hi brandon.servant,
    It seems that you have added your article inside <pre> tag. Please remove it from your article. Then your background will be removed.

    Thank you!

    in reply to: widget background #25682

    Hi Susanne,

    Which widgets in where do you want to change the background? Could you make it more clear? and also provide your site url too so that it will be more easy to fix it issue.

    Thank you!

    in reply to: Pages – Structured Data Not Showing #25680

    hi Olindo,

    Sorry there will be no author, entry-title and updated in the page but there will be on post only.

    Thank you!

    in reply to: how to add tags in Pages (not in post) #25679

    Hi RK,

    If you want to add tag in your home page then we have custom tag cloud in our widgets. Go to dashboard -> appearance -> widgets -> Custom Tag Cloud.

    Drag it to the business page section then you can see it in your business template. But we have not designed this tag for the business page. This tag is for sidebar or footer section.

    Thank you!

    in reply to: Remove NavMenu and Search from Homepage #25617

    Hi chrisboote,

    To remove this section it needs code customization. This feature is not available in our theme. Simply you can remove the search form from dashboard-> appearance-> theme options -> design options -> custom header and view this screenshot.
    http://www.awesomescreenshot.com/image/319622/17f9adf9f3490e1d2b77df91e610345a

    But if you want to remove all this section that you have shown in the screenshot then you need code customization. Go to your theme folder -> inc -> structure -> header-extension.php and remove this code

    <section id="site-logo" class="clearfix">
          <?php 
    						if( $options[ 'header_show' ] != 'disable-both' && $options[ 'header_show' ] == 'header-text' ) {
    						?>
          <h1 id="site-title"> <a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
            <?php bloginfo( 'name' ); ?>
            </a> </h1>
            <?php $site_description = get_bloginfo( 'description', 'display' );
    				if($site_description){?>
          <h2 id="site-description">
            <?php bloginfo( 'description' ); ?>
          </h2>
          <?php }
    						}
    						elseif( $options[ 'header_show' ] != 'disable-both' && $options[ 'header_show' ] == 'header-logo' ) {
    						?>
          <h1 id="site-title"> <a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"> <img src="<?php echo $options[ 'header_logo' ]; ?>" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>"> </a> </h1>
          <?php
    						}
    						?>
        </section>
        <!-- #site-logo -->

    If you don’t want menu too then you may remove the code from line no 284 to 338

    Before making any changes in the code first of all create a child theme and then only customize the code. So that while updating to our new version your customized code will not be lost. If you feel it difficult then you need to do the same thing each and every time while you update to the theme.

    Thank you!

    in reply to: How to install Pro version over the free version? #25616

    Hi Gregory,

    first of all login to your account and download the zip theme(interface-pro) from your theme horse account page.
    Then go to dashboard-> appearance-> themes-> add new
    and upload that zip theme. Then you can see the theme in your dashboard-> appearance-> theme (interface pro) and then activate it.

    Hope this may help you
    Thank you!

    in reply to: Our clients widget title #25615

    hi ETA,

    This feature is not available in our theme. It needs code customization and you need to hire a developer to fix it.

    Thank you!

    in reply to: BLOG Medium – Custom Post Category #25578

    hi aris,

    First of all unhook this functions
    add_action( 'ultimate_loop_content', 'ultimate_theloop', 10 ); with `remove_action( ‘ultimate_loop_content’, ‘ultimate_theloop’, 1
    0 );`
    After doing it add this code
    add_action(‘init’,’unhook_thematic_functions’);

    add_action( 'ultimate_loop_content', 'ultimate_loop_content_child', 10 );
    /**
     * Shows the loop content
     */
    function ultimate_loop_content_child() {
    	if( is_page() ) {
    		if( is_page_template( 'page-templates/page-template-blog-image-large.php' ) ) {
    			ultimate_theloop_for_template_blog_image_large();
    		}
    		elseif( is_page_template( 'page-templates/page-template-blog-image-medium.php' ) ) {
    			ultimate_theloop_for_template_blog_image_medium();
    		}
    		elseif( is_page_template( 'page-templates/page-template-blog-full-content.php' ) ) {
    			ultimate_theloop_for_template_blog_full_content();
    		}
        else {
        ultimate_theloop_for_page();
        }
    	}
    	elseif( is_single() ) {
    		ultimate_theloop_for_single();
    	}
    	elseif( is_search() ) {
    		ultimate_theloop_for_search();
    	}
    	else {
    		ultimate_theloop_for_archive();
    	}
    }

    After adding this content you need to copy the content from content-extension.php from line no 86 to 735 in functions.php and edit the code that i have previously added.

    Hope this may help you
    Thank you!

Viewing 15 posts - 2,641 through 2,655 (of 5,207 total)