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,886 through 3,900 (of 5,207 total)
  • Author
    Posts
  • in reply to: Multi language slogan #17539

    Hi zelan00,
    We will let you know if we found any solution. Better hire a developer to fix the issue.

    Thank you!

    in reply to: slyder only shows one language #17538

    Hi zelan00,
    I don’t think that it is in cache. So you need to hire a developer to fix it.

    Thank you!

    in reply to: Upgrading to PRO #17537

    Hi djelal,
    if you upgrade to pro theme then you need to create a child theme from Pro theme too. Hope for others feedback too.

    Thank you!

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

    Hi dnodmi,
    We are sorry for this. No any idea about it. If we found any solution then we will let you know.If you want to add this code then you may simply create a child theme and unhook this function and then add customise the code.

    add_action( 'interface_links', 'interface_add_links', 10 );
    /**
     * Adding link to stylesheet file
     *
     * @uses get_stylesheet_uri()
     */
    function interface_add_links() {
    ?>
    <link rel="profile" href="http://gmpg.org/xfn/11" />
    <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
    <!--[if lt IE 9]>
    	<script src="<?php echo get_template_directory_uri(); ?>/js/html5.js"></script>
    	<![endif]-->
    <?php
    }

    This file is inside attitude-> library -> structure -> header-extension.php
    Do not change anything in parent theme just unhook the functions in child theme and customize the code. I will paste here a simple example to unhook functions for page 404.php

    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
     */
     
     
    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 
    }

    Do same as it. Hope you understand. You need to create just two files under child theme. One is functions.php and the next is style.css, The customised code must be kept under functions.php

    For more refrence
    http://codex.wordpress.org/Child_Themes
    If still you are unable then you may even hire a developer to fix it.
    Thank you!

    in reply to: Display Issues with regular Slider #17493

    Hi sonja,
    There is no any featured image. So i just added the image. Just use the image size (1030 * 460) for the best image for narrow-layout slider and for wide layout use (1400 * 460) for wide layout.

    To display in the slider its important to be kept in featured image not in the editor. Just view this screen shot
    http://awesomescreenshot.com/09b3nifk49
    This featured image is at right bottom of the page / post

    Thank you!

    in reply to: href title translation doesn't work #17491

    Hi Dona,
    Could you provide the translation file for us? We will check it over here. Send it at [email protected]

    Thank you!

    hi moggone,
    Please provide us the full administration password.

    Thank you!

    in reply to: Why the facebook icon does not appear? #17489

    Thanks for sharing a bit of information with us too moggone

    Thank you!

    in reply to: Featured Image for Home Page #17488

    Hi manderava,
    You mean that your social icons is not displayed ? It is displayed in the footer. To enable it in header you need to enable it from dashboard -> appearance -> theme options -> contact/ social links -> contact info bar -> and uncheck for top info bar. Then this will displayed in the header.

    View this screenshot its working fine in footer and also link to your facebook social icon.

    http://awesomescreenshot.com/0353ni8w8e

    This is the social icons to appear only in header and footer. We have only this feature and if you want other than this then you need to hire a developer to fix it.

    Thank you!

    in reply to: News #17487

    Hi dima.08.11,
    Do you like to display all content from the news category only ? If yes then go to dashboard -> appearance -> theme options -> advanced options -> home page blog category settings

    From here if you select news category then only news category will be displayed in you home page.

    Thank you!

    in reply to: Advert to the right of logo #17486

    Hi renibat,
    We have designed our theme this way. To modify it you need code customisation. So you need to hire a developer to fix the issue.

    Thank you!

    in reply to: Large featured image on single post page, in lightbox? #17485

    hi randy,
    You don’t need to delete any file from the Parent theme. If you unhook the functions and then customise the code then the content you add in the child theme will overrides the parent theme. So any modification is only done on the child theme not in the parent theme.
    Hope you understand
    Thank you!

    in reply to: Upgrading to PRO #17451

    Hi djelal,
    If you have used the child theme and no changes in parent theme then there is not risk of data loss. But if you have changed something in parent theme then surely data will be lost.

    Thank you!

    in reply to: Display Issues with regular Slider #17450

    Hi Sonja.
    Just now i have added the slider in your site. Just check it. This Problem is that you did not add any featured image in particular page. Just check the particular page and you will understand.

    Thank you!

    in reply to: 404 page #17448

    Hi levi0322,
    Yes this above code must be inside style.css

    /*
    Theme Name: Clean Retina Child
    Theme URI: http://aging-naturally.com/clean-retina-child/
    Description: Clean Retina Child Theme
    Author: Pauline Downie
    Author URI: http://aging-naturally.com
    Template: clean-retina
    Version: 1.0.0
    Tags: light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
    Text Domain: clean-retina-child
    */
    
    @import url(“../clean-retina/style.css”);
    
    /* =Theme customization starts here
    ————————————————————– */ 

    After doing this this will import all the css from your parent theme

    Regardless to page 404

    Create one functions.php file
    after this paste this code

    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');
    
    add_action( 'cleanretina_404_content', 'cleanretina_child_display_404_page_content', 10 );
    
    function cleanretina_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 
    }

    Make sure that you have created the child theme folder inside themes folder

    Thank you!

Viewing 15 posts - 3,886 through 3,900 (of 5,207 total)