Forum Replies Created
-
AuthorPosts
-
Theme Horse Support Team
KeymasterHi zelan00,
We will let you know if we found any solution. Better hire a developer to fix the issue.Thank you!
Theme Horse Support Team
KeymasterHi zelan00,
I don’t think that it is in cache. So you need to hire a developer to fix it.Thank you!
Theme Horse Support Team
KeymasterHi 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!
Theme Horse Support Team
KeymasterHi 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.phpunhook 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!Theme Horse Support Team
KeymasterHi 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 / postThank you!
Theme Horse Support Team
KeymasterHi Dona,
Could you provide the translation file for us? We will check it over here. Send it at [email protected]Thank you!
October 14, 2014 at 6:04 am in reply to: promobox and featured recent work widget superposition on the frontpage #17490Theme Horse Support Team
Keymasterhi moggone,
Please provide us the full administration password.Thank you!
Theme Horse Support Team
KeymasterThanks for sharing a bit of information with us too moggone
Thank you!
Theme Horse Support Team
KeymasterHi 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!
Theme Horse Support Team
KeymasterHi 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 settingsFrom here if you select news category then only news category will be displayed in you home page.
Thank you!
Theme Horse Support Team
KeymasterHi 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!
October 14, 2014 at 5:19 am in reply to: Large featured image on single post page, in lightbox? #17485Theme Horse Support Team
Keymasterhi 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!Theme Horse Support Team
KeymasterHi 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!
Theme Horse Support Team
KeymasterHi 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!
Theme Horse Support Team
KeymasterHi 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 codeunhook 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!
-
AuthorPosts