Forum Replies Created
-
AuthorPosts
-
Theme Horse Support Team
Keymasterhi raden,
Yes your menu logo will not be resized in mobile view. We have designed our theme this way. If you like to change the size of menu logo in responsive view then you need to hire a developer to fix it or customize the code.
Thank you!
April 23, 2015 at 5:14 am in reply to: How to delete the "read more" button and show full blog texts on front page? #24268Theme Horse Support Team
Keymasterhi Elina,
IF you want to display blog full post then don’t do any thing inside dashboard-> appearance-> reading -> choose static page (post page : leave it to default (–select–))
Just go to pages and at the right side there is template. Choose blog full content. Then you blog full content will be displayed.
Thank you!
April 23, 2015 at 5:12 am in reply to: How to change the "search" button into my own language? #24267Theme Horse Support Team
KeymasterHi Elina,
Just view this link how to create a child theme.
https://codex.wordpress.org/Child_ThemesChild theme is a child of you parent theme (eg: interface) that you have in your dashboard. All the functions will be controlled by child theme and if you want to make any changes then all your data will not be lost while updating to our new version.
Thank you!
Theme Horse Support Team
KeymasterHi James,
This is not the theme relating issue. We are here to support only the theme relating issues only. You may post your topic here
https://bbpress.org/forums/Thank you!
Theme Horse Support Team
KeymasterOk that’s great AlicePh
Thank you!
Theme Horse Support Team
KeymasterHi hypercomputer_9800,
We have not tested the video slider in our theme. So i think its not possible to slider the video player in our theme. You may need to customize the code or hire a developer to fix it.
Thank you!
Theme Horse Support Team
KeymasterHi christian,
please view this link to create a child theme
https://codex.wordpress.org/Child_ThemesThank you!
Theme Horse Support Team
KeymasterHi rodrigoschneider94,
Copying content-extensions in the child folder will not work. You need to create a functions.php and first of all which functions do you want to change. First of all you need to unhook the functions and then only customize the code. This is the example how to change page 404.php
example:
// 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 ); //for page 404.php } 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() { // to override 404.php ?> <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 this is final</p> </div><!-- .entry-content --> </div><!-- #content --> <?php }Thank you!
Theme Horse Support Team
KeymasterHi Isabelle,
Could you once send your temporary username and password at Email Us, We will look over it. Please don’t forget to send this forum url too.
Thank you!
Theme Horse Support Team
KeymasterHi pdetlef,
We prefer not to change anything inside wp-admin and wp-options. Some above js is from plugins and some is from our theme. We can’t do anything about the plugin script. For other scripts you need code customization. We have designed our theme this way.
Thank you!
Theme Horse Support Team
KeymasterHi Isabelle,
If you have selected both the Category “Klein-Sinaai” and Category “Stekene” on the related post then it will be displayed. Could you once send your site url too.
Thank you!
Theme Horse Support Team
KeymasterHi Eric,
This feature is not available in our theme. You need code customization for it. We are sorry for this feature. If you have managed child theme then create a new template same as a business template under child theme and also register the sidebar and you may use that services widgets on the next business template too. If you are unable the you need to hire a developer to fix it.
Thank you!
April 21, 2015 at 4:54 am in reply to: Add click to call button below slogan banner on business page template #24204Theme Horse Support Team
KeymasterHi steven1,
Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:
@media only screen and (max-width: 767px) #branding .info-bar { display: block; }Thank you!
April 21, 2015 at 4:49 am in reply to: Changing seach behaviour in \inc\structure\searchform-extension.php #24203Theme Horse Support Team
KeymasterHi pavlo.golub,
<?php //child theme functions.php add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' ); function theme_enqueue_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array('parent-style') ); }This is the correct way. If there is a function hook then you have to unhook the functions first and then hook the functions in child theme and then customize the code.
Thank You!
Theme Horse Support Team
KeymasterCheers alexlikehere
Thank you!
-
AuthorPosts
