Forum Replies Created
-
AuthorPosts
-
October 10, 2014 at 2:14 pm in reply to: Add extra button to attitde pro business template and change font size of slogan #17361
Theme Horse Support Team
KeymasterHi 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!
Theme Horse Support Team
KeymasterHi 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-proI think it may be the server issue or your internet is slow. Once contact to your hosting.
Thank you!
Theme Horse Support Team
KeymasterHi 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!
Theme Horse Support Team
KeymasterHi dnodmi,
Could you specify it more clearly. We did not get exactly what you mean.Thank you!
Theme Horse Support Team
KeymasterHi 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!
Theme Horse Support Team
KeymasterHi 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!
Theme Horse Support Team
KeymasterHi arshi4you,
If you want modification in responsive.css you can add your css inside theme options -> custom cssOther wise you don’t need to copy responsive.css
Thank you!
Theme Horse Support Team
KeymasterHi 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!
October 10, 2014 at 1:45 pm in reply to: promobox and featured recent work widget superposition on the frontpage #17349Theme Horse Support Team
KeymasterHi 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!
Theme Horse Support Team
KeymasterHi 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!
Theme Horse Support Team
KeymasterThat’s great Jörg
Thank you!
Theme Horse Support Team
KeymasterHi 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!
Theme Horse Support Team
KeymasterThat’s great and no problem
Thank you!
October 9, 2014 at 12:00 pm in reply to: Services Widget Page Title Text Wrapping Problem in Chrome (Windows) #17290Theme Horse Support Team
KeymasterThat’s great kat
Thank you!
Theme Horse Support Team
Keymasterhi 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 }
-
AuthorPosts