Forum Replies Created
-
AuthorPosts
-
Theme Horse Support Team
KeymasterHi sktalpos,
i just visited to your site and its all fine there. Did you view your website from tablet or any smaller device. If yes then this is not an issue. This is responsive layout. We have designed our theme this way.
View this below screenshot.
http://awesomescreenshot.com/0c8533tu99Thank you!
Theme Horse Support Team
KeymasterHi Dean,
This feature is not available in our theme. It needs code customization and you need to hire a developer to fix it.
To add link in service icon go to the theme folder -> inc ->widgets -> interface_widgets.php. Can you see this code on line no 329 to 333<?php if ( has_post_thumbnail() ) { echo'<div class="service-icon">'.get_the_post_thumbnail( $post->ID, 'icon' ).'</div>'; } ?>Replace above code with this below code
<?php if ( has_post_thumbnail() ) { echo'<div class="service-icon"><a href="'.get_permalink() .'">'.get_the_post_thumbnail( $post->ID, 'icon' ).'</a></div>'; } ?>Now you can have a link in services icon. Just make a custom service widgets as i have told before in your child theme to avoid you customized code lost.
Thank you!
Theme Horse Support Team
KeymasterHi Dean,
This feature is not available in our theme. It needs code customization and you need to hire a developer to fix it.
To add link in service icon go to the theme folder -> inc ->widgets -> interface_widgets.php. Can you see this code on line no 329 to 333<?php if ( has_post_thumbnail() ) { echo'<div class="service-icon">'.get_the_post_thumbnail( $post->ID, 'icon' ).'</div>'; } ?>Replace above code with this below code
<?php if ( has_post_thumbnail() ) { echo'<div class="service-icon"><a href="'.get_permalink() .'">'.get_the_post_thumbnail( $post->ID, 'icon' ).'</a></div>'; } ?>Now you can have a link in services icon. Just make a custom service widgets as i have told before in your child theme to avoid you customized code lost.
Thank you!
Theme Horse Support Team
KeymasterYou Welcome Bel
Thank you!
Theme Horse Support Team
KeymasterHi sktalpos,
Could you provide your site Url too? So that we can help you to fix it.
Thank you!
Theme Horse Support Team
KeymasterHi myhelium,
Go to Appearance -> Customize -> Ambition theme options -> Custom CSS paste the below CSS code and Click on Save & Publish button at the top of the options panel.
.featured-text { background-color: rgba(196, 153, 249, 0.52); }Thank you for using our theme.
Theme Horse Support Team
KeymasterHi miri,
Which div background section you are talking about? If you are talking about the Customize -> Colors -> Background Color then this background color will only takes effect when you site is narrow layout.You can set your site to narrow layout. Go to Appearance -> Customize -> Ambition theme options -> Site layout and select Narrow Layout. By default it is wide layout and Click on Save & Publish button at the top of the options panel.
Thank you!
Theme Horse Support Team
KeymasterHi miri,
Could you make it more clear which page title you want to hide? It would be better if you provide your site Url too.
If you want to hide search form then Go to Appearance -> Customize -> Ambition theme options -> Header Options and check to disable search form.Click on Save & Publish button at the top of the options panel.
Thank you!
Theme Horse Support Team
KeymasterHi graceblake,
Go to Appearance -> Customize -> Ambition theme options -> Custom CSS paste the below CSS code and Click on Save & Publish button at the top of the options panel..entry-meta .cat-links, .entry-meta .cat-links a { display:none; } .featured-text { color: #fff; }Note: Please change above HEX color code #fff to your own HEX color code to change the color of featured font color.
Also, If you upgrade the theme to pro version then you can set the color skin of each section with your own color also with lots of features.
Pro version will be available very soon.Thank you for using our theme.
Theme Horse Support Team
KeymasterThat’s great frederic.mary
Thank you!
Theme Horse Support Team
KeymasterHi graceblake,
We don’t have this feature available in our theme. You may try other third party plugins and use the shortcodes on post content to display social media.
Try this plugins
https://wordpress.org/plugins/ultimate-social-media-icons/Thank you!
Theme Horse Support Team
KeymasterHi Bel,
If this is CSS conflict then you need to remove the CSS from styles.css file. We have designed our theme this way and not even checked with jetpack plugins. You may create a child theme and the customize the CSS. Making child theme will over ride the parent theme styles. If you are unable to fix it then you need to hire a developer to fix it.
Thank you!
Theme Horse Support Team
KeymasterHi frederic.mary,
If you choose any tag then the tag will be displayed in the slider. If there is no tag match then sticky post will be displayed instead.
You mean that you don’t wanna add slider ? Then go to dashboard -> apperance -> customize -> ambition theme options -> featured content settings and click on check to disable slider.
Thank you!
Theme Horse Support Team
KeymasterHi sveinnosigurdsson,
We have designed our theme this way. This free version of theme does not supports woocomerce and wpml. This feature will be only available in Pro version which is going to release very soon.
Thank you!
Theme Horse Support Team
KeymasterHi Bel,
This feature is not available in our theme. It needs code customization. If you really wanna change the code then the file is inside theme folder (attitude )-> library -> structure -> functions -> functions.php on line no 247 to 259 you will see this below code
/**************************************************************************************/add_filter( 'wp_nav_menu_items', 'attitude_nav_menu_alter', 10, 2 ); /** * Add default navigation menu to nav menu * Used while viewing on smaller screen */ if ( !function_exists('attitude_nav_menu_alter') ) { function attitude_nav_menu_alter( $items, $args ) { $items .= '<li class="default-menu"><a href="'.esc_url( home_url() ).'" title="Navigation">'.__( 'Navigation','attitude' ).'</a></li>'; return $items; } }Replace above code with is below code
/**************************************************************************************/ add_filter( 'wp_nav_menu_items', 'attitude_nav_menu_alter', 10, 2 ); /** * Add default navigation menu to nav menu * Used while viewing on smaller screen */ if ( !function_exists('attitude_nav_menu_alter') ) { function attitude_nav_menu_alter( $items, $args ) { $items .= '<li class="default-menu"><a href="'.esc_url( home_url() ).'" title="Menu">'.__( 'Menu','attitude' ).'</a></li>'; return $items; } }Remember one thing that each and every time you update to new version then the same things you need to do again and again. So better make a child theme and then customize the code so that your data will not be lost while updating to new version.
Thank you!
-
AuthorPosts
