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,816 through 1,830 (of 5,207 total)
  • Author
    Posts
  • in reply to: How to change 404 #44544

    Hi starbeam_m,

    This feature is not available in our theme. It needs code customization. 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

    Here we have replied many times for error page. View example link

    The above example is of interface theme. In the same way you need to do from clean retina theme too.
    Thank you!

    Hi NIKOLAY,

    We did not get exactly what are you trying to say? Could you make it more clear?

    Thank you!

    Hi NIKOLAY,

    Go to dashbaord -> appearance -> customize -> design options -> custom header -> Upload header image. You can view below screenshot

    Thank you!

    in reply to: Shortcode for horizontal scrolling announcement #44470

    Hi ciaranhyde,

    It needs lots of code customization. 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

    If you like to make a changes on the code then go to theme directory -> library -> structure -> header-extension.php on line no 271 and add below code

    if( is_home() || is_front_page() ) {
      // add your shortcodes here 
    }

    Thank you!

    in reply to: Email addresses #44461

    That’s great

    Thank you!

    in reply to: Create different header for mobile? #44411

    Hi Ethan,

    Our theme is responsive design. You can view demo as there is already a different menu with three line on responsive view.

    Once goto dashboard -> appearance -> customize -> layout options -> responsive layout and check your responsive is off or not. If it is OFF then make it ON

    Thank you!

    Hi ciaranhyde,

    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: Email addresses #44406

    Hi shegga,
    To create a child theme view WordPress Codex for Child Theme. Also we have replied many times how to create a child theme. Search Child Theme and you will get more solutions of creating it.

    Create a child folder inside wp-content -> themes -> (your child theme folder (name is as interface-pro-child)) Create style.css file and add the below code on style.css

    /*
    Theme Name: Interface Pro Child
    Theme URI: https://www.themehorse.com/themes/interface-pro
    Author: Theme Horse
    Author URI: https://www.themehorse.com
    Description: Interface Pro is a Simple, Clean and Flat Responsive Retina Ready WordPress Theme. It is easily customizable with numerous theme options. Some of the highlighted options are two site layout (Narrow and Wide), 4 layouts for every post/page, 5 Page Templates, 8 widget areas, 6 custom widgets, featured slider to highlight your post/page, 10 social icons, top and bottom info bar to hightlight your contact/email/location and many more. Also has custom background, header, menu, favicon, CSS, webclip icon, and logo. Supports popular plugins like Breadcrumb NavXT, WP-PageNavi and Contact Form 7. It is also translation ready. Get free support at https://www.themehorse.com/support-forum/ and View beautiful demo site at https://www.themehorse.com/preview/interface-pro
    Version: 3.0.2
    License: GNU General Public License v2 or later
    License URI: http://www.gnu.org/licenses/gpl-2.0.html
    Tags: white, light, green, two-columns, left-sidebar, right-sidebar, fluid-layout, custom-menu, custom-background, custom-header, featured-images, full-width-template, theme-options, threaded-comments, translation-ready, sticky-post
    Text Domain: interface
    Template: interface-pro
    */
    

    Doing only this Your child theme is created. Now to make your email address secure it needs code customization. Create a functios.php file and add the below code under it

    
    <?php
    add_action( 'wp_enqueue_scripts', 'interface_enqueue_styles' );
    function interface_enqueue_styles() {
        wp_enqueue_style( 'interface', get_template_directory_uri() . '/style.css' );
    
    }
    function interface_footer_infoblog( $set_flags, $place ='') {
    	
    	global $array_of_default_settings;
     	$options = wp_parse_args( get_option( 'interface_theme_options', array() ), interface_get_option_defaults());
    	$interface_footer_infoblog = '';
    	$place = '';
    	if($set_flags || (!empty($options['social_phone'] ) || !empty($options['social_email'] ) || !empty($options['social_location']))){
    	$interface_footer_infoblog .=  '<div class="info-bar">
    		<div class="container clearfix">';
    		if(!empty($options['social_phone'] ) || !empty($options['social_email'] ) || !empty($options['social_location']) ) {
    			$interface_footer_infoblog .=  '<div class="info clearfix">
    											<ul>';
    		if ( !empty($options['social_phone'] )){ 
    		
    		$interface_footer_infoblog .= '<li class=' .'"phone-number"'. '><a title='. __( '" Call Us "', 'interface' ).' '. 'href=' .'"tel:' ;
    		$interface_footer_infoblog .=  preg_replace("/[^() 0-9+-]/", '', $options[ 'social_phone' ]) ; 
    		
    		$interface_footer_infoblog .= '">';
    		$interface_footer_infoblog .=  preg_replace("/[^() 0-9+-]/", '', $options[ 'social_phone' ]) ;
    		$interface_footer_infoblog .= '</a></li>';
    		 
    				} if (!empty($options['social_email'] )){ 
    		
    		
    		$interface_footer_infoblog .='<li class=' .'"email"'. '><a title=' . __( '" Mail Us "', 'interface' ). ' ' . 'href=' .'"mailto:';
    		$interface_footer_infoblog .= eae_encode_str( is_email($options[ 'social_email'] ) );
    		$interface_footer_infoblog .='">';
    		$interface_footer_infoblog .=  is_email($options[ 'social_email'] ); 
    		$interface_footer_infoblog .='</a></li>';
    				 
    				}if(!empty($options['social_location'])){
    		
    		$interface_footer_infoblog .='<li class=' .'"address"' .'>';
    		$interface_footer_infoblog .=  esc_attr($options[ 'social_location']);
    		$interface_footer_infoblog .= '</li>';
    				} 
    		$interface_footer_infoblog .= '</ul>
    		</div><!-- .info -->';
    		}
    	}
    	else if($place == "header" && $set_flags == 1 )
    		$interface_footer_infoblog .=  '<div class="info-bar">
    		<div class="container clearfix">';
    	
    	echo $interface_footer_infoblog;
    } ?>

    Thank you!

    Hi ciaranhyde,

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

    #controllers {
        display: none;
    }

    Thank you!

    in reply to: Help needed, urgently :) #44384

    Hi Gudrun,

    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: Email addresses #44383

    Hi shegga,

    View your source code and then you will not see normal email id. For example you can view this image

    Thank you!

    in reply to: Change Words, Translation #44382

    That’s great 8beast

    Thank you!

    in reply to: Help needed, urgently :) #44356

    Hi Gudrun,
    Please remove all your custom css and add below one

    .widget_service .one-third {
        width: 47%;
    }
    .widget_service .clearfix-half {
        clear: both;
    }
    .widget_service .clearfix-third,
    .widget_service .clearfix-fourth {
        clear: none;
    }

    Thank you!

    in reply to: Change Words, Translation #44324

    Hi 8beast,

    Yes sure. You need to create a .po and .mo file and it should be kept inside the language directory. To work this language goto dashboard -> settings -> general -> site language and choose your language.

    Note: If you create a child theme then while updating to new version your customized code will not be lost. If you directly add in the language directory of parent theme then each and every time while updating to new version all your file will be lost. So you need to add the language file again. So the best way is to create a child theme.

    Thank you!

    in reply to: Theme Horse: Featured Recent Work widget #44273

    Hi shegga,

    Yes exactly. There will not be display any html tags. Only the plain tag will be added as we have validated it for security purpose. If you like to have html tags then it needs code customization. Sorry for this.

    Thank you!

Viewing 15 posts - 1,816 through 1,830 (of 5,207 total)