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,471 through 1,485 (of 5,207 total)
  • Author
    Posts
  • in reply to: I want to copy the Demo #49661

    Hi Erin,
    Our support team have completed to set the dummy data into your site and now you can edit as your wish.

    Thank you

    in reply to: Themehorse pro child them font #49660

    Hi Barry,
    What you need to do is first create child theme with two file (style.css and functions.php). If you have free theme installed then first remove the free theme and only add interface pro theme.

    This is an example how to unhook page 404.php and use your own content.
    First of all you need to unhook the functions and then only customize the code in your child theme functions.php. Here is a simple example how to unhook functions and customize the code. Below code should be added inside functions.php of child theme.
    Under style.css file add below code
    Step 1:

    /*
    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
    */
    
    @import url("../interface-pro/style.css"); 

    If you like to add your own css add below this code @import url("../interface/style.css");

    Step 2:
    Under functions.php file.
    First do you like to use google font from our theme or font from outside any source?
    If you are using google find from theme typography options then you can select font from theme options and you don’t need to create functions.php file. You can avoid step 2.

    If you are using google font that we dont have in theme options panel then do below step too.

    under functions.php first you need to unhook the functions. There is already the google font and you need to unhook it and overwrite with your 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' );
    
    }
    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_setting_value,$interface_default;
       global $array_of_default_settings;
     	$options = wp_parse_args( get_option( 'interface_theme_options', array() ), interface_get_option_defaults()); 
       $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', '//fonts.googleapis.com/css?family='.$interface_google_font_load .':400,700italic,700,400italic');
      	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' ); 
    
    } 

    Note: Provide your font link here as
    wp_register_style( 'interface_google_font', '//fonts.googleapis.com/css?family=Open+Sans');
    Thank you!

    in reply to: Show only parent categories? #49601

    Hi soja_joghurt,
    Currently I have also a quick research and displaying only the parent categories, i could not found any plugins. If we find any then we will let you know.
    Thank you

    in reply to: homepage slider #49553

    Hi lindaspiller,

    To add featured slider as in our preview first you have to create page/ post and add title, content and featured image.
    You can find the post/page id in your Url. Example: http://yoursite.com/wp-admin/post.php?post=1835&action=edit where numeric value 1835 is your post/page id.
    To set the it go to Appearance > Customize > WP Portfolio Pro Theme Options > Featured Post/ Page Slider Options
    Enter the Post/ Page ID
    and click on Save & Publish button.

    in reply to: Slider not showing all the photos #49552

    Hi Jüri,

    That’s strange. Are you using an image slider or sticky post slider? Also check out if there is featured image available on your post or not if you are using sticky post slider. If you are using an image slider then Could you please send your Site Link? Also Email Us your temporary username and password so that we can help you on this issue. Don’t forget to send your temporary username and password with site link and this forum link too.

    Thank You

    in reply to: Theme Horse: Services Widget #49551

    Hi Teena,
    To setup my services widget first you have to select business template.
    10) Business Layout
    You can show your homepage as business layout format as in our demo.

    Create a page and choose Business Template from Template drop down.
    Go to Settings->Reading settings
    Choose Front Page Display ->A static Page->Front page->Choose this page from dropdown.
    We have three custom widget especially designed for business layout home page Theme Horse:Services,Theme Horse:Featured widget and Theme Horse: Testimonial
    Go to Appearance-> Widget.
    Drag and Drop any widget from below four widget to Business Page Sidebar
    Click Save

    a) Theme Horse: Services Widget

    Theme Horse: Services Widget can be used to showcase your services.

    Create Page, give a Title, Description
    Upload Featured image i.e. service logo ( recommended size 80*80px ).
    Repeat step 1 and 2 for creating other service pages.
    Go to Appearance->Widget->Theme Horse: Services Widget
    Drag and Drop this widget to Business Page Sidebar
    Now select the service pages you created from the drop down

    You can also view theme instruction page.

    Thank you

    in reply to: Change of text size #49549

    Hi budgetbewust,

    Just visited to your site and your above username and password is not working. If you like to share your username and password then please don’t share here on public forum and its visible to everyone. You can Email Us with your temporary username and password and also site link with your issue.

    Thank you

    in reply to: Slider not allowing additional images #49526

    That’s great Jeffrey

    Thank you!

    in reply to: How can I make a slider like your preview site? #49525

    Hi Marcus,

    That’s the plugin territory and we follow WordPress guidelines. We cannot add that feature in our theme. If you like to know without installing plugin then you goto specific page/post and hover on edit page. You will see link at the bottom left of the page. You can see the numeric value and that’s the page/post id.

    Also if you click that page/post and at the status bar you will be able to see numeric value as http://abc.com/wp-admin/post.php?post=2&action=edit where 2 is the id of this page.

    Thank You

    in reply to: Can't activate lightbox on images in posts and pages #49524

    You welcome jannewolterbeek

    Thank you

    in reply to: Change of text size #49523

    Hi budgetbewust,

    Just visited to your site and i think its under construction which says coming soon. Updating to new version will not change text size. If you have made code customization in theme then updating to new version all your customized code will be lost. So we always recommended you to create a child theme if any code customization is required.

    Thank you!

    in reply to: Can't activate lightbox on images in posts and pages #49463

    Hi jannewolterbeek,

    Create a WordPress gallery and select the gallery image from your media and link to Media file rather than Attachment in Gallery Setting before clicking insert gallery button as shown in this screenshot

    Thank you!

    Hi carrielee49,
    No this feature is not available in our theme. It needs code customization because its completely a new feature to add in the theme. So you need to hire a developer to display aboce the sidebar menu.
    Thank you

    in reply to: Social Navigation Menu not showing #49461

    Did you follow theme instruction Your social icon will display only in footer. Could you please provide your site link too?
    Thank you

    in reply to: How can I make a slider like your preview site? #49460

    Hi Marcus,
    To have post/page id download Reveal IDs plugin. Go to specific page you will find post/ page id.

    I was positively surprised when the featured image of my page “Auftragsarbeiten” appeared on the home page, plus an excerpt of the article. It had a button “read more”. If clicked, that button would take me to the page (which itself does not show the featured picture, which is exactly what I want).
    => Yes featured image will not be displayed on detail page/single page. If you want page then you can add it on editor.
    Question 1:
    How do I tell which post has which ID? When I look at the page, I do not see a “page ID” anywhere?
    => To have post/page id download Reveal IDs plugin. Go to specific page you will find post/ page id.

    Question 2:
    Why are there no “>” and “<” displayed in order to scroll sideways?
    => Do you means to preview and next button on slider to scroll. We don’t have this options and its not necessary to have preview and next button. So we have not added it on our theme.
    Question 3:
    Why is no slide displayed on my home page, unless I set the “no of slides” to 4 or higher?
    => Its because you have not added a correct slider id.

    Please provide your site address so that we can help you further.

    Thank you

Viewing 15 posts - 1,471 through 1,485 (of 5,207 total)