Forum Replies Created
-
AuthorPosts
-
Theme Horse Support Team
KeymasterHi Tuck Leong,
Please Email your temporary username and password we will set revolution slider as in our demo. For documentation please view this below Url
http://www.themepunch.com/revslider-doc/slider-revolution-documentation/Thank you!
Theme Horse Support Team
KeymasterHi bartolla,
We are not facing such problem. That means you have customized the code. While customizing the code did you create a child theme and then customized the code or you made direct changes in the code? If you made a direct change in the code then while updating to new version all your customized code will be lost. So we always recommended you to create a child theme before making any changes on it.
The above error Cannot redeclare attitude_add_editor_styles() (previously declared in /home/analyzei/public_html/wp-content/themes/attitude/library/functions/functions.php:58) in /home/analyzei/public_html/wp-content/themes/attitude/library/functions/functions.php on line 57 you are facing because it has been declared more than one time. You cannot redeclare twice the same functions.
Download the fresh copy of attitude theme and try it.
Thank you!
Theme Horse Support Team
KeymasterHi dave69,
It needs code customization. You may add the image in the editor of the page. Using featured image will work on business template as you can see in services and recent work. That image is displayed from the featured image. If you like to display in other page too then customize the code. The below code is used to display the featured image. https://codex.wordpress.org/Function_Reference/has_post_thumbnail
if ( has_post_thumbnail() ) { the_post_thumbnail(); } else { echo '<img src="' . get_bloginfo( 'stylesheet_directory' ) . '/images/thumbnail-default.jpg" />'; }Got to theme folder -> inc -> structure -> content-extension.php on line no 201 to 260. You need to add the above code. Then your featured image will be displayed.
While customizing the code first of all create a child theme then only customize the code to be safe from data loss. If you make direct changes in the code then you need to make the same customization again and again while updating to new version.
Thank you!
September 8, 2015 at 5:01 am in reply to: Structured Data > hentry errors is this theme related? #28048Theme Horse Support Team
KeymasterHi john,
Sorry there will be no author, entry-title and updated in the page but there will be on post only. So that’s not an error.
We have already added Missing: author, Missing: entry-title, Missing: updated in post. Where have you tested it? Please provide your site Url too and we have tested it from here https://developers.google.com/structured-data/testing-tool/Thank you!
Theme Horse Support Team
KeymasterHi quan3t,
The post is inside the loop. If you add the post inside the loop then your ads will be displayed in every section. If you want to customize the code then first of all create a child theme then only customize the code so that while updating to our new version your customized code will not be lost.
If you like to make direct changes in the code then each and every time while updating to new version you need to make the same customization.
It would be great if you provide your site Url too. Which blog are you using? Please clarify. If you are using the default blog then go to theme folder -> inc -> structure-> content-extension.php on line no 87 to 172. You will find this below code
if ( ! function_exists( 'ultimate_theloop_for_archive' ) ) :Add your code inside this functions where you need your ads block. But your ads will be displayed in all blog if you add inside this functions because it’s under loop.
Better you simply add your ads in your particular post. So that only related post will display your ads.
Thank you!
Theme Horse Support Team
KeymasterHi frantisek.funda,
First of all create a child theme. Create style.css file and add the below code in your style.css file.
/* Theme Name: Ambition Pro Child Theme Author: Self-Help WordPress User Template: ambition */ @import url("../ambition-pro/style.css"); body, input, textarea, .main-navigation a, h1, h2, h3, h4, h5, h6 { font-family: 'Lato', sans-serif; }Your child theme will be displayed. Activate your child theme.
Note: Please change above font family'Lato', sans-serifto your own font-family.Hope this may help you
Thank you!Theme Horse Support Team
KeymasterHi David,
The above provided link is the news category. yes exactly you have not created any category but it is displaying according to category(news). If you really want to customize the code then first of all create a child theme then only customize the code. So that while updating to our new version your customized code will not be lost.
This above content is displayed from the archive page. You just go to the theme folder -> inc -> structure-> content-extension.php on line no 87 to 174, you will find this below code
if ( ! function_exists( 'ultimate_theloop_for_archive' ) ) :If you like to customize then you can customize the code here.
Thank you!
Theme Horse Support Team
KeymasterHi David,
Could you provide your site Url too? If you want to add in menus then you may go to dashboard-> appearance -> menus and create a custom menu or if it is already a page then you can drag and drop the page. View this below screenshot.
http://awesomescreenshot.com/08a56uy5e3Hope this may help you
If you like changes in the code then the breadcrumbs is from the plugins. So you may customize the breadcrumbs plugins.
Thank you!
August 28, 2015 at 6:34 am in reply to: customizing pagination, previous + next page navigation #27769Theme Horse Support Team
KeymasterHi analytic_header,
First of all we recommended you not to customize the code. If you customize the code then while udpating to our new version all your customized code will be lost. So you need to create a child theme and then customize the code.
The previous and next buttons cycle is from theme folder ambition -> inc -> structure -> content-extension.php on line no 417 you will find this function code
add_action( 'ambition_after_loop_content', 'ambition_next_previous', 5 ); /** * Shows the next or previous posts */ function ambition_next_previous() { if( is_archive() || is_home() || is_search() ) { /** * Checking WP-PageNaviplugin exist */ if ( function_exists('wp_pagenavi' ) ) : wp_pagenavi(); else: global $wp_query; if ( $wp_query->max_num_pages > 1 ) : ?> <ul class="default-wp-page clearfix"> <li class="previous"> <?php next_posts_link( __( '« Previous', 'ambition' ) ); ?> </li> <li class="next"> <?php previous_posts_link( __( 'Next »', 'ambition' ) ); ?> </li> </ul> <?php endif; endif; } }Thank you!
Theme Horse Support Team
KeymasterYou welcome florian.lecoq
Thank you!
Theme Horse Support Team
KeymasterHi Edward,
Is your child theme working correctly? yes you are doing correct to unhook but to modify only header-extension.php i don’t think that you need to do this all.
Just to unhook header content details E.g:-// Unhook default Thematic functions function unhook_thematic_functions() { // Don't forget the position number if the original function has one add_action( 'interface_header', 'interface_headercontent_details', 10 ); } add_action('init','unhook_thematic_functions'); // removes the header content by using hook interface_header add_action( 'interface_headercontent_details', 'interface_child_headercontent_details', 10 ); funtion interface_child_headercontent_details(){ // your stuff }Thank you!
Theme Horse Support Team
KeymasterHi sergioburlamaqui,
Did you update the theme? If you have customized the code without making a child theme then while updating to our new version all your customized code will be lost. So we always recommended you all to create a child theme before making any changes in the theme.
Thank you!
Theme Horse Support Team
KeymasterHi info110,
Home is your page title. To change it you may edit the title of the home page.
You can edit your logo using photoshop. If you want to customize it then you need to hire a developer.
Do you like to add custom content as in our demo site? You can add slogan content there. Go to dashboard -> appearance -> theme options -> advance options -> home slogan options
View this screenshot
http://awesomescreenshot.com/02156lh900Changing color options and font size is not available in free version of our theme. This feature is only available in pro version.
Are you talking about this content. View this screenshot
http://awesomescreenshot.com/0c156lhl8eIf yes then go to dashboard -> appearance -> widgets
Drag and drop your widgets to footer column 1, footer column 2 and footer column 3
Hope this may help you
Thank you!Theme Horse Support Team
KeymasterHi guyandkatie,
We are sorry for this support. We don’t customize the code. So you need to hire a developer to fix it.
Thank you!
Theme Horse Support Team
KeymasterThat’s great chriswieser
Thank you!
-
AuthorPosts
