badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Theme Horse Support Team

Forum Replies Created

Viewing 15 posts - 3,916 through 3,930 (of 5,207 total)
  • Author
    Posts
  • Hi mpazza69,
    We don’t have this feature in our theme. So you need code customization for it. We recommended not to change the code because if you change the code then while updating to our new version all your customisation code will be lost. So better make child theme and first unhook the functions and the edit the code.

    http://codex.wordpress.org/Child_Themes

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

    Thank you!

    in reply to: Site is running VERY slow! #17359

    Hi Kelli,
    We don’t think that its the theme issue. Its working fine. You may even check in our demo site.
    https://www.themehorse.com/preview/attitude-pro

    I think it may be the server issue or your internet is slow. Once contact to your hosting.

    Thank you!

    in reply to: WPML Featured Image Slider Text translate #17358

    Hi Mario,
    We are not using WPML plugins and not much more knowledge about this plugins. You may ask support to the plugin Provider. We will let you know if we find any solutions.

    Thank you!

    in reply to: Google Analytics – Tracking Code not working #17357

    Hi dnodmi,
    Could you specify it more clearly. We did not get exactly what you mean.

    Thank you!

    in reply to: 404 page #17354

    Hi levi0322,
    Yes exactly. Create a child theme folder (cleanretina_child) inside wp-content -> themes
    create two file
    1> style.css and import the css
    2> functions.php
    under function.php add the above code then when 404.php page is called it will display thank you. Because there is `<p>Thank you</p>
    ` You can use any text you want under it.

    Thank you!

    in reply to: Cannot remove Slider from Blog Page #17352

    Hi harryyeah,
    You just go to the dashboard -> setting -> reading -> front page display (home -> its correct)
    front post page (–select– (leave it to default. Don’t assign to any page))

    So that the silder will be displayed only in your home page.

    Thank you!

    in reply to: Responsive Css #17351

    Hi arshi4you,
    If you want modification in responsive.css you can add your css inside theme options -> custom css

    Other wise you don’t need to copy responsive.css

    Thank you!

    in reply to: Featured Image for Home Page #17350

    Hi mandi,
    Could you specify it more clearly and please send us the URL of your site. So that it will be more clear to understand.

    Thank you!

    Hi moggone,
    DId you assign this page as a business template ? If yes and still there is error then could you please send your temporary username and password? We will look over it.

    Thank you!

    in reply to: Google Structured Data Testing Error #17348

    Hi preciouskittens,
    Ok just send the screenshot of this error. It will be more easy for us to identify too. We will fix this error within a couple of week in our new version.

    Thank you!

    in reply to: Subpages in Topnavigation to much space #17346

    That’s great Jörg

    Thank you!

    in reply to: Change Image Size #17345

    Hi Michael,
    We recommended not to change the code because if you change the code then while updating to our new version all your customisation code will be lost. So better make child theme and first unhook the functions and the edit the code.

    http://codex.wordpress.org/Child_Themes

    You can change it from your theme folder -> functions.php
    Can you see this line
    add_image_size( 'featured', 670, 300, true );

    670 and 300 is your width and height of image if you upload more than 670 width and 300 height. So you can change this 670 to any you want and 300 to any height you want.

    Thank you!

    in reply to: Same tag as in business template #17291

    That’s great and no problem

    Thank you!

    That’s great kat

    Thank you!

    in reply to: 404 page #17289

    hi levi0322,
    We recommended not to change the code because if you change the code then while updating to our new version all your customisation code will be lost. So better make child theme and first unhook the functions and the edit the code.

    Example to customize the 404.php page

    unhook functions
    
    // Unhook default Thematic functions
    function unhook_thematic_functions() {
        // Don't forget the position number if the original function has one
    
    remove_action( 'cleanretina_404_content', 'cleanretina_display_404_page_content', 10 );
    
    }
    add_action('init','unhook_thematic_functions'); // removes the header content by using hook cleanretina_header
    
    add_action( 'cleanretina_404_content', 'cleanretina_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' ); ?></a></h1>
    		</header>
    		<div class="entry-content clearfix" >
    			<p>Thank you</p> 
    		</div><!-- .entry-content -->
    	</div><!-- #content -->
      <?php 
    }
Viewing 15 posts - 3,916 through 3,930 (of 5,207 total)