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,446 through 2,460 (of 5,207 total)
  • Author
    Posts
  • in reply to: Like the Demo…menu above the feature picture #26956

    Hi grace.mcgaha,

    If you use tag to display in slider then you can see your sticky post in blog. Stick Post means to highlight your post. This sticky post will be displayed at the top of the page. View this screenshot. It’s just an example

    http://awesomescreenshot.com/005549ywc4

    Thank you!

    in reply to: Featured text line break #26955

    Yes it you remove it from settings-> reading (post page –select–) then it will not display your blog post. So we have added a blog template there. So you create a blog page and at the right hand side there is a template. You just select the template blog image large. Then your blog page will be displayed.

    You mean to add your text to right align. Paste this following code in you custom css

    .featured-text {
    	width: 50%;
      }
    		

    You may increase/ decrease (50) this numeric value you want which fits for you.
    Hope this may help you
    Thank you!

    in reply to: Footer Left Aligned, Not Full Width #26954

    You welcome administrator

    Thank you!

    Unhook child theme error page 404.php

    To create a child theme you need to create a two files style.css and funtions.php first. Just create a interface-pro child folder inside wp-content/themes. Under style.css file add this below code

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

    Under funtions.php you need to create your functions first unhook the functions and then only customize the code. Below is the example how to unhook function page 404.php, You do same for other too.

    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: the header is wider than the page layout edge, #26898

    hi Paul,

    Your header image will be displayed in full width which is 100%. If you want to change it then it needs code customization and you need to hire a developer to fix it.

    Thank you!

    in reply to: Images not loading #26893

    Hi kirst187,

    I just visited to you site and its working fine. Just view this screenshot.
    http://awesomescreenshot.com/005543335d

    Are you talking something other than it.

    Thank you!

    in reply to: Like the Demo…menu above the feature picture #26890

    Hi grace.mcgaha,

    Here what i say you do exactly the same thing. First of all go to dashboard -> post -> creat new post. (enter title, description , featured image and choose it as sticky )
    View this screenshot where i have added the red mark
    http://awesomescreenshot.com/0f954323cd

    Repeat the same process again for next slider

    Then your slider will be displayed.
    If still your problem not solved then let us know.
    Thank you!

    in reply to: Social media icons #26889

    Hi info104,

    This feature is only available in pro version of our theme. you can view demo at
    https://www.themehorse.com/preview/ambition-pro

    Thank you!

    in reply to: Remarketing code #26887

    Hi Petar,

    Go to theme folder -> footer.php at line no 59 you will find this </body> code

    Before making any changes create a child theme and then only customize the code so that while updating to new version you customized code will not be lost.

    Thank you!

    in reply to: Featured text line break #26886

    Hi pat,

    Could you make it more clear? Which featured text are you talking about? It would be better if you provide your site Url too.

    Thank you!

    in reply to: Footer Left Aligned, Not Full Width #26885

    Hi,
    There is conflict with the plugins so Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:

    .clearfix, .clearfix:before, .clearfix:after, .container:before, .container:after, .container-fluid:before, .container-fluid:after, .row:before, .row:after{
    display:block;
    }

    Thank you!

    Hi pat,

    Please post this topic in related forum ultimate pro and also provide your site Url too.
    First of all create any pages (name it as blog/ or any name you like). Then select the template from right side of the page. View this screenshot.
    http://awesomescreenshot.com/066542wu5f

    Then in your blog page your blog post will be displayed. You don’t need to set it from dashboard -> settings -> reading
    View this screenshot.
    http://awesomescreenshot.com/06d542x7e5

    Thank you!

    in reply to: Footer Problem #26883

    Hi,
    There is conflict with the plugins so Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:

    .clearfix, .clearfix:before, .clearfix:after, .container:before, .container:after, .container-fluid:before, .container-fluid:after, .row:before, .row:after{
    display:block;
    }

    Thank you!

    Hi tyson,

    This feature is not available in our theme. It needs code customization and you need to hire a developer to fix it.

    Thank you!

    in reply to: Template missing #26846

    Hi jd.aggie95,
    Just add this below code in your style.css
    `/*
    Theme Name: attitude Child Theme
    Author: Theme Horse
    Template: attitude
    */`
    Hope this may help you!

    1) On the home page, I want to remove the comment area
    ==> disable comment section
    If you want to disable only certain page / post then go to particular page / post which you want to disable.
    Click on screen options at right top of the page /post

    Select the Discussion and comments so that it will display below the editor. You will be able to see like this.
    http://www.awesomescreenshot.com/0774aj8y55

    Unselect both of them and it will not display the comment section.

    2) on the blog roll (“Our Daily Lives”) the title of each entry does not show up.
    ==> Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS and remove the following CSS code and Click on save all changes button:

    .page .entry-title {
        display: block;
    }

    Thank you!

Viewing 15 posts - 2,446 through 2,460 (of 5,207 total)