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,341 through 2,355 (of 5,207 total)
  • Author
    Posts
  • in reply to: Social Area in Header #27701

    You welcome MeShawn

    Thank you!

    in reply to: Blogs #27654

    Hi Brian,

    No you cannot create multiple blogs. It needs code customization and you need to hire a developer to fix it.

    2. Can I get rid of the slider on the blog page?
    ==> If you don’t want slider in blog page then you need to go to dashboard -> pages -> create a blog page and at the right hand side of the page there is template. select blog image large or blog image medium or blog full content display you want.

    Then go to dashboard -> settings -> reading and leave defaullt to post page. View this screenshot.
    http://awesomescreenshot.com/02256h6d83

    Then your slider will not be displayed in blog page.

    3. Can I get rid of the sticky posts on the blog page and just use the stick posts for the home page?

    To remove the sticky post from blog page you just need to paste this below css. 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;
    }

    Hope this may help you
    Thank you!

    in reply to: Font Style #27650

    Hi Brian,

    Oh! we have found a bug.We have fixed this issue and updated. You can download it from your account page. Thank you for the bug report.

    Thank you!

    in reply to: Color Skin #27649

    You welcome Brian

    Thank you!

    in reply to: Unable to get slider to work #27648

    That’s great jkoons003

    Thank you!

    in reply to: Blog section #27647

    Hi florian.lecoq,

    We didnot get what you exactly mean? To display your blog page go to dashbaord -> settings -> reading -> choose static page
    select your post page and you front page.(Post page will display blog page.)

    Thank you!

    in reply to: Install Slider—5 images #27646

    Hi victoria_locascio,

    It will cost you more if you hire a developer for this customization. So we recommended you to purchase the theme than hiring a developer.

    Thank you!

    in reply to: Facebook Like Button #27645

    Hi guyandkatie,

    IF you like to insert a facebook like button then first of all you need to create a child theme. Create a functions.php file and then hook your scripts in wp_enqueue_scripts() functions. For more reference
    https://codex.wordpress.org/Function_Reference/wp_enqueue_script

    Thank you!

    in reply to: Use icons larger than 100×100 #27644

    Hi info110,
    I can’t figured out how to set an image as the slider. I have been through the instructions and settings, but I do not see how to define which image or images are for the slider.

    ==>To create a slider first of all create a page or post you wish. Set the featured image at the below right side of page or post.
    View this below screenshot.

    At the top of the Url bar you will see such linkswp-admin/post.php?post=28&action=edit where your post id is 28
    Now then after go to dashboard -> appearance -> theme options -> featured post/ page slider -> featured post/ page slider options and add the post or page id

    View this below screenshot.

    http://awesomescreenshot.com/07e56gvg07

    Then your slider will be displayed.

    How do I use a logo image in place of the site title in the menu section?
    Also, can I reduce the amount of space above and below them?
    ==> View this screenshot
    http://awesomescreenshot.com/00856gvs26

    How do I change font size of the services titles and descriptions?
    ==> Changing the font size is available in Pro version.

    I want to add text between the slider and services section and I also want to add an option form above the footer.
    ==> You can view to our demo site. What is available there in free and pro version?https://www.themehorse.com/preview/interface/ and https://www.themehorse.com/preview/interface-pro/

    You can build exactly what is in free version and if you need more additional feature then you can upgrade to pro.
    view this link and there is a compare table.
    https://www.themehorse.com/themes/interface-pro/

    Thank you!

    in reply to: Social Area in Header #27642

    Hi MeShawn,

    This features is not available in our theme. It needs code customization. Before customizing the code first of all create a child theme and then only customize the code.

    To add in admin section next to social icons go to theme folder -> library-> admin -> theme-options.php on line no 1380 and you add your input field on here.

    To display it in front end go to theme folder -> library-> structure -> header extension.php on line no 126 you will find this below code
    function cleanretina_headerdetails() {

    Now add your call-to-action image and will be displayed in front end.

    Thank you!

    in reply to: Loading header-extension.php in Child Theme #27641

    Hi all,

    Creating the same structure in the child theme will not over ride the parent theme. First of all you need to unhook the function and then customize the code. We will post a simple example how to unhook to functions:-
    Create a two files styles.css and functions.php

    Under style.css add this following code.

    /*
    Theme Name: interface Child Theme
    Author: Self-Help WordPress User
    Template: interface
    */
    
    @import url("../interface/style.css"); 

    Under functions.php file

    unhook functions

    // Unhook default Thematic functions
    function unhook_thematic_functions() {
        // Don't forget the position number if the original function has one
    
    remove_action( ‘interface_404_content', ‘interface_display_404_page_content', 10 );
    
    }
    add_action('init','unhook_thematic_functions'); // removes the header content by using hook interface_header
    
    add_action( ‘interface_404_content', ‘interface_child_display_404_page_content', 10 );
    /**
     * function to show the footer info, copyright information
     */
     
     
    function interface_child_display_404_page_content() {      ?>   
    <div id="content">
    		<header class="entry-header">
    			<h1 class="entry-title"><?php _e( 'Error 404-Page NOT Found', ‘interface’ ); ?></h1>
    		</header>
    		<div class="entry-content clearfix" >
    			<p>Thank you</p> 
    		</div><!-- .entry-content -->
    	</div><!-- #content -->
      <?php 
    }

    If you are still unable to fix it then you need to hire a developer to fix it.

    Thank you!

    in reply to: Different Page Title Background Images #27640

    Hi bas,

    Thanks for your helps. It seems to be the good idea. Actually different background image on different page is not possible. We have designed our theme this way. Why don’t you try bas solution. I think it will work fine too.

    Thank you!

    in reply to: Multilingual Translation issue (Polylang) #27542

    Hi info114,

    Sorry we have not test our theme with multilangual Plugins and cannot gurantee that our theme will work with Polylang Plugins. Also it will be better if you ask for support to the main author of Polylang Plugins.

    Thank you!

    in reply to: Install Slider—5 images #27541

    Hi victoria_locascio,
    To remove the title and “Read More” on each slider image go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:

    .featured-text .featured-title, .featured-slider .call-to-action {
        display: none;
    }

    Thank you!

    in reply to: Change main top menu to side menu? #27494

    Hi nicola,

    Sorry we have designed our theme this way. It may come in New Theme but not in this theme. We are sorry for this feature.

    Thank you!

Viewing 15 posts - 2,341 through 2,355 (of 5,207 total)