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 - 3,136 through 3,150 (of 5,207 total)
  • Author
    Posts
  • in reply to: Change Next/Previous buttons on front page #22391

    hi Daniel,

    Yes you can but it needs code customization. The file is inside theme folder-> inc-> structure->content-extension.php on line no 759 and 783 you will find the following code

    add_action( 'attitude_after_loop_content', 'attitude_next_previous', 5 );
    /**
     * Shows the next or previous posts
     */
    function attitude_next_previous() {
    	if( is_archive() || is_home() || is_search() ) {
    		/**
    		 * Checking WP-PageNaviplugin exist
    		 */
    		if ( function_exists('wp_pagenavi' ) ) : 
    			wp_pagenavi();
    
    		else: 
    			global $wp_query;
    			if ( $wp_query->max_num_pages > 1 ) : 
    			?>
    			<ul class="default-wp-page clearfix">
    				<li class="previous"><?php next_posts_link( __( '&laquo; Previous', 'attitude' ) ); ?></li>
    				<li class="next"><?php previous_posts_link( __( 'Next &raquo;', 'attitude' ) ); ?></li>
    			</ul>
    			<?php
    			endif;
    		endif;
    	}
    }

    Replace Previous and Next as you want. We recommended you to create a child theme before making any changes on it. First unhook the function and then only customize the code. We have already replied how to unhook the functions too in forum.

    Thank you!

    in reply to: Install package not available. #22390

    Hi Michael,

    Is your problem solved? If not then email us at our Email, Our sales Team will help you

    Thank you!

    in reply to: Widget Pages list #22389

    Hi andrea1,

    This is the WordPress default widgets. Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:

    ul.children {
    margin-left: 10px;
    }

    Hope this may help you.

    Thank you!

    in reply to: Gallery #22388

    Hi Rouchaud,

    View this instruction page how to set up gallery
    https://www.themehorse.com/theme-instruction/clean-retina-pro/#gallery

    Did you customize any code? If no then first of all deactivate all the plugins too that you have installed in your dashboard. Then only follow this instruction:

    Go to Galleries->Add New in your dashboard.
    Add Title which will be Image title.
    Add featured image for this post.
    Click on Publish.
    If you have multiple images(other images too) to be shown. Repeat the first four steps again.
    After you are done with adding the posts in Galleries.
    Create a Page, give it title.
    On the right hand-side, click on template dropdown.
    From the dropdow, select any of from three template ( Gallery four column template, Gallery three column template, Gallery two column template )
    Click Publish button.
    Now choose this page as menu.

    Thank you!

    Hi nuruddinctg1990,
    Example to unhook the page 404:

    
    unhook functions
    
    // Unhook default Thematic functions
    function unhook_thematic_functions() {
        // Don't forget the position number if the original function has one
    
    remove_action( 'interface_404_content', 'interface_display_404_page_content', 10 );
    
    }
    add_action('init','unhook_thematic_functions'); // removes the header content by using hook interface_header
    
    add_action( 'interface_404_content', 'interface_child_display_404_page_content', 10 );
    /**
     * function to show the footer info, copyright information
     */
     
     
    function interface_child_display_404_page_content() {      ?>   
    <div id="content">
    		<header class="entry-header">
    			<h1 class="entry-title"><?php _e( 'Error 404-Page NOT Found', 'interface' ); ?></h1>
    		</header>
    		<div class="entry-content clearfix" >
    			<p>Thank you</p> 
    		</div><!-- .entry-content -->
    	</div><!-- #content -->
      <?php 
    }

    You may also search in forum how to unhook the parent code.
    For example:-
    https://www.themehorse.com/support-forum/topic/child-theme-404-page-and-search-page-styling/
    If you are still unable then you may hire a developer to fix it.

    This below code must be defined under business page Template. If you want to display it in your own style/ design then you need to hire a developer
    <?php the_content();?>

    Thank you!

    in reply to: Info bar (header), 2 issues #22386

    Hi cynthia.lovely,

    You have changed the font fomaily, so your phone icon is not displaying.

    Yes in mobile device we have made it hidden. If you want to display in mobile device then
    Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:

    .info-bar .info ul li:before {
    font-family: 'Genericons';
    }
    @media only screen and (max-width: 767px){
        #branding .info-bar {
        display: block;
        }
    }

    Thank you!

    in reply to: color options #22385

    Hi wendy.hanlan,

    Could you make it more clear? Please create a new forum and post it as a new topic because all the user under this forum will get notified which may be unwanted for theme. Also could you please send the site url too?

    Thank you!

    in reply to: Change the font type of the slogan #22384

    Hi YAN,

    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

    The font is enqueued form theme folder-> inc-> functions-> functions.php on line no 67. You can see this below code
    wp_register_style( 'interface_google_font', '//fonts.googleapis.com/css?family='.$interface_google_font_load .':400,700italic,700,400italic');

    Thank you!

    in reply to: Add hyperlinks Team Pages #22383

    hi Adam,

    We have designed our theme this way. To add hyperlink you need code customization for it. Before making any changes in code first create a child theme then only customize the code to be safe from data loss while updating to our new version.

    Thank you!

    in reply to: Reduce Hgroup Size & Space Between Body #22276

    hi raden,

    Did you customize any code? If no then first deactivate all the plugins that you have installed in the dashboard. The margin may come from plugins. This unwanted div is available in your site.
    <div id="undefined-sticky-wrapper" class="sticky-wrapper" style="height: 101px; margin-bottom: 101px;"> So deactivate all the plugins and test whether same problem exists or not.

    Thank you!

    in reply to: How to align links on the footer to one row #22275

    ok that’s great Serkan

    Thank you!

    in reply to: Eventbrite AIP theme issues #22271

    Hi Gale,

    This is not the theme issue, it related to the plugins. https://wordpress.org/plugins/eventbrite-api/. (https://github.com/Automattic/eventbrite-api). You may contact to the plugins developer to fix the issue. We cannot guarantee our themes will function with all 3rd party components and plugins. You need to hire a developer to fix this issue.

    Thank you!

    in reply to: How to align links on the footer to one row #22269

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

    #site-generator .copyright {
    width: 70.64%;
    }

    Thank you!

    in reply to: Like this:Like Loading… showing up in slideshow #22268

    Hi beth,

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

    #controllers {
    display: none;
    }

    Hope this may help you

    Thank you!

    in reply to: Mobile Nav not working #22267

    Hi Birch Studio,

    Once you remove the code that you have installed in theme and check whether the same problem persuits or not. If not then deactivate all the plugins one by one that you have installed in your dashboard. There may be some jquery conflict so that you are getting this issue. You may check it in our demo site that its working fine.

    Thank you!

Viewing 15 posts - 3,136 through 3,150 (of 5,207 total)