Forum Replies Created
-
AuthorPosts
-
December 10, 2015 at 11:33 am in reply to: Service Widgets – Not Linking to their page of reference #40315
Theme Horse Support Team
KeymasterHi becci,
Yes, that’s the latest version. Can we have the site URL? So that we can see the exact issue.
Thank you!
Theme Horse Support Team
KeymasterHi 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 ashttps://. Once you try activating default twenty-fifteen theme and let us know.Thank you!
December 8, 2015 at 11:19 am in reply to: Change position of Tags to above Jetpack Related Posts #40281Theme Horse Support Team
KeymasterHi 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!
Theme Horse Support Team
KeymasterHi 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!
Theme Horse Support Team
KeymasterHi 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!
Theme Horse Support Team
KeymasterHi 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!
Theme Horse Support Team
KeymasterHI 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!
Theme Horse Support Team
KeymasterHi 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!
Theme Horse Support Team
KeymasterHi 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!Theme Horse Support Team
KeymasterHi 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!
Theme Horse Support Team
KeymasterThanks for helping us m2aini
Thank you!
Theme Horse Support Team
KeymasterHi 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!
Theme Horse Support Team
KeymasterHi 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!
Theme Horse Support Team
KeymasterHi 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!
Theme Horse Support Team
KeymasterYes you are right bkchua. We are back after weekend! 🙂
Thank you!
-
AuthorPosts
