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,926 through 2,940 (of 5,207 total)
  • Author
    Posts
  • in reply to: Menu does´t show on mobile #23734

    Hi Maria,

    Did you customize any code? If no then simply deactivate all the plugins that you have installed in your dashboard one by one and check still there is a problem or not, because there may be some conflict in javascript.

    Thank you!

    in reply to: Horizontal stripes #23733

    Hi Graham,

    Simply you can add<hr> tag in your content area.

    Thank you!

    in reply to: Links in lists have no visual clue #23706

    Oh sorry Tony

    Just add this css

    #content ul a, #content ol a {
      color: #05a9c5;
    }

    Hope this may help you

    Thank you!

    in reply to: Slider Featured Text #23704

    You welcome Ahmad

    Thank you!

    in reply to: Links in lists have no visual clue #23684

    Hi Tony,

    We have designed our theme this way. This links falls under color skin. If you like to add color under footer copyright then 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 a {
      color: #05a9c5;
    }

    Thank you!

    in reply to: Homepage Revolution Slider Display on Home Page #23683

    Hi Dinna,

    Are you using this revolution slider from widgets. If yes then remove it. Please check it once that you may have used this revolution slider inside widgets under business page sidebar.View this screenshot
    http://awesomescreenshot.com/0f64rufw63

    If there is issue then you may send send your temporary username and password at Email Us, and don’t forget to send this forum url too.

    Could you also provide your widgets screenshot under business page sidebar.

    Thank you!

    Hi Sam,

    If you write any Css in Custom CSS then nothing will be lost while updating to our new version. To enqueue responsive css Just add this below code.

    // Unhook default Thematic functions
    function unhook_thematic_functions() {
        // Don't forget the position number if the original function has one
    remove_action( 'wp_enqueue_scripts', 'interface_scripts_styles_method'); // for responsive.css
    }
    add_action('init','unhook_thematic_functions'); // removes the header content by using hook interface_header
    add_action( 'wp_enqueue_scripts', 'wp_enqueue_child_scripts');
    function wp_enqueue_child_scripts() {
    	global $interface_theme_default;
       $options = $interface_theme_default;
    
       /**
    	 * Loads our main stylesheet.
    	 */
    	// Load our main stylesheet.
    	wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
    	wp_enqueue_style( 'child-style', get_stylesheet_uri(), array( 'parent-style' ) );
    	
    	wp_style_add_data( 'interface-ie', 'conditional', 'lt IE 9' ); 
    	
    	if ('on' == $options['site_design']) {
    	//Css for responsive design
    	wp_enqueue_style( 'interface-responsive', get_template_directory_uri() . '/css/responsive.css');
    	wp_enqueue_style( 'interface-child-responsive', get_stylesheet_directory_uri() . '/css/responsive.css' );
    	}
    	/**
    	 * Adds JavaScript to pages with the comment form to support
    	 * sites with threaded comments (when in use).
    	 */
    	if ( is_singular() && comments_open() && get_option( 'thread_comments' ) )
    		wp_enqueue_script( 'comment-reply' );
    
    	/**
    	 * Register JQuery cycle js file for slider.
    	 * Register Jquery fancybox js and css file for fancybox effect.
    	 */
    	wp_register_script( 'jquery_cycle', INTERFACE_JS_URL . '/jquery.cycle.all.min.js', array( 'jquery' ), '2.9999.5', true );
    
       wp_register_style( 'google_fonts', '//fonts.googleapis.com/css?family=PT+Sans:400,700italic,700,400italic&subset=latin,cyrillic-ext,latin-ext' ); 
    
    	
    	/**
    	 * Enqueue Slider setup js file.
    	 * Enqueue Fancy Box setup js and css file.	 
    	 */	
    	if( ( is_home() || is_front_page() ) && "0" == $options[ 'disable_slider' ] ) {
    		wp_enqueue_script( 'interface_slider', INTERFACE_JS_URL . '/interface-slider-setting.js', array( 'jquery_cycle' ), false, true );
    	}
      
    	wp_enqueue_script( 'backtotop', INTERFACE_JS_URL. '/backtotop.js', array( 'jquery' ) );
    	wp_enqueue_script( 'scripts', INTERFACE_JS_URL. '/scripts.js', array('jquery') );
    
       wp_enqueue_style( 'google_fonts' );
    
    }

    Create the child theme folder-> css folder -> (responsive.css) and edit it in you own way.
    and under style.css use this below code only

    /*
    Theme Name: interface Child Theme
    Author: Self-Help WordPress User
    Template: interface
    */

    Thank you!

    in reply to: "Read More" Translation #23681

    hi micke,

    Thanks for sending Swedish translation. Once we will check it and update it in our new version.

    Thank you!

    hi infoflavio,

    Could you send you admin details at Email Us, We will set your business template. Please don’t forget to send this forum url too.

    Thank you!

    in reply to: How to remove html showing on website #23659

    Hi Sharon,

    To remove the html below the homepage comments area just add this css inside Theme Options -> Design Options -> Custom Css

    .form-allowed-tags {
    display:none;
    }

    Thank you!

    in reply to: How to Run Javascript in the Custom Footer #23658

    Hi Bill,

    We are sorry for this. You may simply add your javascript inside footer.php if you want but while updating each and everytime you need to do the same things.

    Thank you!

    in reply to: "Read More" Translation #23657

    Hi micke,

    You don’t need to reactivate the theme. Once you activate the child theme then it must work fine. Use sv_SE.mo and sv_SE.po file and keep these file inside the language folder. Use this code inside child theme of functions.php that i have provided before
    load_theme_textdomain( 'ultimate', get_stylesheet_directory() . '/languages' ); // to add text domain language translate
    Just have this link
    http://www.wpbeginner.com/wp-themes/find-translate-translation-ready-wordpress-theme/

    You may also visit to this site and its working fine.
    http://www.scmarinhense.pt/category/institucional/

    Thank you!

    in reply to: Color Options #23656

    Hi gbrlolu,

    Could you specify it more clearly what you mean? The above provided link is not in our theme.

    Thank you!

    in reply to: Homepage Revolution Slider Display on Home Page #23636

    Hi Dinna,

    Just view this below screen shot.
    http://awesomescreenshot.com/0554r2bg5b
    Hope this may help you

    Thank you!

    in reply to: Customise header #23635

    hi ciaranhyde,

    This feature is not available in our theme. It needs code customization. We have desgined our theme this way.

    Thank you!

Viewing 15 posts - 2,926 through 2,940 (of 5,207 total)