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,701 through 2,715 (of 5,207 total)
  • Author
    Posts
  • in reply to: Header Sidebar #25217

    Hi Jason,

    Yes you have done it correct but the placement is in wrong place. you need to customize the code inside theme folder-> inc -> structure -> header-extension.php and find the right location and then customize the code. If you do you direct changes in the code then while updating to our new version your customized code will be lost. So you need to create a child theme to be safe from data loss.

    Thank you!

    in reply to: Featured image removal #25216

    This is an example how to unhook page 404.php and use your own content.

    unhook functions

    // Unhook default Thematic functions
    function unhook_thematic_functions() {
    // Don’t forget the position number if the original function has one

    remove_action( ‘attitude_404_content’, ‘attitude_display_404_page_content’, 10 );

    }
    add_action(‘init’,’unhook_thematic_functions’); // removes the header content by using hook attitude_header

    add_action( ‘attitude_404_content’, ‘attitude_child_display_404_page_content’, 10 );
    /**
    * function to show the footer info, copyright information
    */

    Hi Dale,

    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.

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

    Do in this way for content-extension.php and if you are unable to fix it then you need to hire a developer to fix it.

    Thank you!

    Hi Olindo,

    There is only one way to do this. To show blog image medium effect you have to select the page.
    View this screenshot
    http://awesomescreenshot.com/00e4xl1da8

    And go to any pages and select the template blog medium template and you can see the blog image medium in your home page.

    Thank you!

    in reply to: Home Slogan Color #25158

    Hi christianstgallo,

    We are sorry for this. This feature is only available in Pro version of our theme. This feature is not available in free version.

    Thank you!

    in reply to: Slider featured text not showing on mobile #25157

    Hi Thomas,

    Yes we have made the slider content off to display in mobile display. Because too many text will voilate the design. We have designed our theme this way. If you want to display text in your tablet then please add this below custom css
    Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save

    @media only screen and (max-width: 767px) {
        .featured-text {
           display: block;
        }
    }

    Hope this may help you
    Thank you!

    in reply to: Help on displaying Featured Boxes #25140

    Hi nthhenrique,

    Yes i am also telling the same thing. If you select the latest post display as we have already replied before. Then you will have the “home’s corporate type layout options” and Just try this once

    Thank you!

    in reply to: Table in editor #25139

    Hi per.norell,
    Yes there will not be any options to add a table. Just follow this below link how to add table.
    http://www.w3schools.com/html/html_tables.asp

    Thank you!

    in reply to: Remove link in slider #25138

    You welcome per.norell

    Thank you!

    in reply to: Header Image #25137

    That’s great Dale

    Thank you!

    in reply to: Remove link in slider #25124

    Hi per.norell,

    This feature is not available in our theme so it needs code customization.

    Thank you!

    in reply to: Help on displaying Featured Boxes #25071

    Hi nthhenrique,

    If you want to display the three image as you have mentioned in screenshot then there is only one way
    you go to the dashboard-> settings-> reading-> and choose latest post as shown in screenshot.
    http://awesomescreenshot.com/0844x6g608

    If you don’t like doing this way then it needs code customization and you need to hire a developer.

    Thank you!

    in reply to: help me to get rid of that notice #25070

    Hi Itzik Adir,

    The subscriber cannot install the plugins so you are getting this issues for subscribers. This is not the theme issue. Its better not to give the subscriber to enter in the admin section(dashboard).
    Try this plugins but not sure whether it works or not
    https://wordpress.org/plugins/remove-dashboard-access-for-non-admins/

    Thank you!

    in reply to: Remover Red more dos sliders da home page #25069

    Hi infoflavio,

    Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save

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

    Thank you!

    Hi Jason,

    First of all i would like to confirm that did you made any code customization or not?

    Go to dashboard-> appearance -> widgets-> and view this screenshot

    http://awesomescreenshot.com/0084x6aib7

    Thank you!

    in reply to: Google Anyaltics- Where do I put the Code #25051

    Thanks Jörg for helping us

    Thank you!

Viewing 15 posts - 2,701 through 2,715 (of 5,207 total)