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,206 through 2,220 (of 5,207 total)
  • Author
    Posts
  • in reply to: Service Widgets – Not Linking to their page of reference #40315

    Hi becci,

    Yes, that’s the latest version. Can we have the site URL? So that we can see the exact issue.

    Thank you!

    in reply to: SSL Certificate – images/layout not displaying #40282

    Hi francois.jourjon,

    please clarify, what you are trying to say? If you are using any link as http:// in your content that will be insecure.
    So you need to have SSL certified link only as https://. Once you try activating default twenty-fifteen theme and let us know.

    Thank you!

    in reply to: Change position of Tags to above Jetpack Related Posts #40281

    Hi huimin.hurry,

    How you have activated/ placed the social shared and related post section? Did you add some short code in your post editor?

    Thank you!

    in reply to: child theme for ultimate #40279

    Hi bruno,

    As @import is the easy way to import css for the user which does not have any issue using this. For the developers who submit ticket in wordpress.org also use this way to import css. Yes you can import using hook too. Using hook is the best and the latest way to import css. If you are familier with code then you can use hook to import the css.

    add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
    function theme_enqueue_styles() {
        wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
    
    }

    For more info you can visit here too

    I will suggest that if you are good at coding then you can use action hook otherwise using @import would be ok.

    Thank you!

    in reply to: How can Blog Page only display a specific categoy? #40278

    Hi gerry21,

    Thanks for using our theme. First of all go to dashboard -> appearance-> Ambition theme options -> Home Page Blog Category Setting and select the category which you want to display.

    Doing this you can show specific category post. If you are using sticky post to display slider in your front end then the sticky post will also be displayed in your blog page.
    To remove those sticky post Go to Appearance -> Customize -> Ambition theme options -> Custom CSS paste the below CSS code and Click on Save & Publish button at the top of the options panel.

    #main .sticky{
      display:none;
    }

    Thank you!

    in reply to: WPML translations #40181

    Hi Emilio José,

    You need to create wpml.xml file inside the root of the theme. Although we have not tested our theme with WPML. For this you need to hire a developer.

    Thank you!

    in reply to: WPML translations #40176

    HI Emilio José,

    As our theme is not compatible with WPML translations. We are a bit busy working on another projects. As it needs code customization. You need to hire a developer to fix it.

    Before making any changes in code first you create a child theme so that while updating to new version your customization code will not be lost.

    Thank you!

    in reply to: Recent Blog Post Widget #40098

    Hi emma4thompson,

    To redirect you may use Simple 301 Redirects or Redirection plugins. This may helps you to redirect.
    But we are not sure whether it works for you or not. If not then you have to customize the code and need to hire a developer whether its not the theme related questions.

    Thank you!

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

    Hi Pavel,

    Its better to create your own forum topic rather than posting on others forum topic. Because other user also get notified if post on their forum topic.
    Just create a folder name interface-pro-child inside wp-content-> themes. You need to create two file.
    Style.css and
    functions.php
    Under style.css add this below code

    /*
     Theme Name:   Interface Pro Child
     Theme URI:    http://example.com/twenty-fifteen-child/
     Description:  Interface Pro Child Theme
     Author:       Theme Horse
     Author URI:   http://example.com
     Template:     interface-pro
     Version:      1.0.0
     Text Domain:  twenty-fifteen-child
    */
    @import url("../interface-pro/style.css"); 
    

    and under functions.php add this below code

    <?php
    
    // 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' );
    
    }
    add_action('init','unhook_thematic_functions'); // removes the header content by using hook interface_header
    
    add_action( 'wp_enqueue_scripts', 'interface_scripts_child_styles_method' );
    
    function interface_scripts_child_styles_method() {
    	global $interface_theme_default, $interface_theme_setting_value,$interface_default;
       $options = $interface_theme_default;
       $options_setting = $interface_theme_setting_value;
       /**
    	 * Loads our main stylesheet.
    	 */
    	// Load our main stylesheet.
    	wp_enqueue_style( 'interface_style', get_stylesheet_uri());
    	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');
    	}
    	/**
    	 * 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_enqueue_script( 'jquery_cycle', INTERFACE_JS_URL . '/jquery.cycle.all.min.js', array( 'jquery' ), '2.9999.5', true );
    	wp_register_script( 'jquery_fancybox', INTERFACE_JS_URL . '/jquery.fancybox-1.3.4.pack.js', array('jquery'), '1.3.4', true ); 
     	wp_enqueue_style( 'jquery_fancybox_style', INTERFACE_CSS_URL . '/jquery.fancybox-1.3.4.css', true);  
      $interface_google_font_loads = array();
       if( $interface_default['interface_general_typography'] != $options_setting[ 'interface_general_typography' ] ) :
       	array_push( $interface_google_font_loads,$options_setting[ 'interface_general_typography' ] );
       endif;
    
        if( $interface_default['interface_navigation'] != $options_setting[ 'interface_navigation' ] ) :
       	array_push( $interface_google_font_loads,$options_setting[ 'interface_navigation' ] );
       endif;
    
        if( $interface_default['interface_title'] != $options_setting[ 'interface_title' ] ) :
       	array_push( $interface_google_font_loads,$options_setting[ 'interface_title' ] );
       endif;
    
       if( 'PT Sans' == $options_setting[ 'interface_general_typography' ] || 'PT Sans' == $options_setting[ 'interface_navigation' ] ):
       	array_push( $interface_google_font_loads,'PT+Sans');
      	endif;
    
      	$interface_google_font_load = implode("|", $interface_google_font_loads);
    
      	wp_register_style( 'interface_google_font', 'http://fonts.googleapis.com/css?family='.$interface_google_font_load .':400,700italic,700,400,800italic&subset=latin,latin-ext');
      	wp_enqueue_style( 'interface_google_font' );
     /**
    	 * Enqueue Slider setup js file.
    	 * Enqueue Fancy Box setup js and css file.	 
    	 */
    	 	if( 'revolution-slider' != $options[ 'slider_type' ] && '0' == $options[ 'disable_slider' ] ) { 
    		if ( (  'slider-on-everypage' == $options[ 'slider_status' ] ) || ( ( is_home() || is_front_page() ) &&  'slider-on-homepage' == $options[ 'slider_status' ] ) ) {
    		wp_enqueue_script( 'interface_slider', INTERFACE_JS_URL . '/interface-slider-setting.js', array( 'jquery_cycle' ), false, true );
    		}
    	}
    	wp_enqueue_script( 'interface_fancybox_setup', INTERFACE_JS_URL . '/interface-custom-fancybox-script.js', array('jquery_fancybox'), 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_script( 'jquery_custom', INTERFACE_JS_URL. '/jquery.custom.js', array('jquery') );
    	wp_enqueue_script('easing', INTERFACE_JS_URL . '/jquery.easing.1.3.js', array('jquery'), true);
    	wp_enqueue_script('quicksand', INTERFACE_JS_URL . '/jquery.quicksand.js', array('jquery'), true);
    	wp_enqueue_style( 'jquery_fancybox_style' ); 
    
    } 
    
    /****************************************************************************************/
    ?>

    Hope this may help to solve your problem
    Thank you!

    in reply to: Services widget. Maximum 6 services? #39928

    Hi elena,

    You can add 6 services to choose in the services widget. If you want to add more then you can simply drag and drop the same widgets on the same place and you can add two more service widgets.

    Thank you!

    in reply to: home page slider malfunction #39927

    Thanks for helping us m2aini

    Thank you!

    in reply to: Problems getting a child theme to work #39926

    Hi FlaviaNY,
    Just add this below code to create child theme

    /*
    Theme Name: Ambition Child Theme
    Theme URI: https://www.themehorse.com/themes/ambition
    Author: Theme Horse
    Author URI: https://www.themehorse.com
    Text Domain: ambition
    Template: ambition
    */
    
    @import url("../ambition/style.css"); 

    The above code which you have provided, i am not sure why its not working. But i tested in my local environment and its working fine.

    Thank you!

    in reply to: child theme for ultimate #39925

    Hi timurberk,

    We have replied many times how to create a child theme. To create a child theme create a folder name ultimate-child inside wp-content-> themes-> (your folder name)
    Create style.css file and add this below code

    /*
    Theme Name: Ultimate Child Theme
    Theme URI: https://www.themehorse.com/themes/ultimate
    Author: Theme Horse
    Author URI: https://www.themehorse.com
    Version: 1.0
    License: GNU General Public License, version 3 (GPLv3)
    License URI: http://www.gnu.org/licenses/gpl-3.0.txt
    Text Domain: ultimate
    Template: ultimate
    */
    
    @import url("../ultimate/style.css");

    So that your child theme is create.

    Thank you!

    in reply to: Service Widgets Text #39924

    Hi ianwaldron22,

    What problem are you facing? Could you make it a bit clear. The slider will work well in mobile device but the content will not be displayed because, if the content is displayed in smaller device then there will be overlapping the text. So we have hide the text in smaller device. We don’t think that there is any issue related to slider. You can view in our demo site and check it. It will also be great if you provide your site url too.

    Thank you!

    in reply to: Original size of image in Attachment #39894

    Yes you are right bkchua. We are back after weekend! 🙂

    Thank you!

Viewing 15 posts - 2,206 through 2,220 (of 5,207 total)