Forum Replies Created
-
AuthorPosts
-
March 3, 2015 at 5:20 am in reply to: Changing Previous/Next post to alphabetical, rather then chronological #22674
Theme Horse Support Team
KeymasterHi Daniel,
We are sorry for this. This feature is not available in our theme. It needs code customization. So you need to hire a developer to fix it.
Thank you!
Theme Horse Support Team
KeymasterHi Lanai,
While uploading image you can set the image (full size) where our theme horse logo size is ( 350 * 80 ). You may use any size of image that will be suitable for your logo.
http://awesomescreenshot.com/0324aucc1b
Thank you!
Theme Horse Support Team
KeymasterHi jcarlos.cortes,
Just add your code in this way
Copyright © [the-year] [site-link] <a href="https://www.distromel.com/proteccion-de-datos-link" title="Distromel"> https://www.distromel.com/proteccion-de-datos-link</a>
Hope this may help you!Thank you!
Theme Horse Support Team
KeymasterHi filipa.martins,
iF you want to add the background image on the next inner page then go to dashboard-> appearance-> theme options-> advance options-> page title background image and change the image for inner page. If you change image here then it will affect to your inner page.
Thank you!
Theme Horse Support Team
KeymasterHi privat,
Did you customize any code? Because its working fine in our demo site so it also must work fine in your site too. If you have not made any theme customization then first of all deactivate all the plugins one by one and check it whether the same problem persuits or not.
Thank you!
Theme Horse Support Team
KeymasterHi Urs,
1st: is it possible to remove that little space at the top via custom css?
==> Which space do you want to remove? Could you make it more clear and also provide site url too.2nd: is it possible to make the full header logo clickable an linked to the main startpage?
==> yes you can but you have to customize the code. The file is inside theme folder(attitude-pro)-> library-> structure-> header-extension.php on line no 205 and you will find this below code.<?php $header_image = get_header_image(); if( !empty( $header_image ) ) :?> <img src="<?php echo esc_url( $header_image ); ?>" class="header-image" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>"> <?php endif; ?>and remove this above code with this below code
<?php $header_image = get_header_image();if( !empty( $header_image ) ) :?> <a href="<?php echo esc_url( home_url( '/' ) ); ?>"><img src="<?php echo esc_url( $header_image ); ?>" class="header-image" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>"> </a> <?php endif; ?>Before making any changes in the code first create a child theme to be safe from you customized code loss while updating to our new version.
Thank you!
Theme Horse Support Team
KeymasterHi t.o.m.a.s.t,
We have designed our theme this way. This feature is not available in our theme. It needs code customization. So you need to hire a developer to fix it.
Thank you!
Theme Horse Support Team
KeymasterHi davidmarryatt,
Could you once send your site url too? Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:
.archive .page-title-wrap { display: none; }
Hope this may help you!Thank you!
Theme Horse Support Team
KeymasterHi emilie.ringwald,
Which button are you talking about? We don’t use any shortcode to create a button in our theme.
Thank you!
Theme Horse Support Team
KeymasterHi alokranjan39,
We have extracted the text from excerpt. So it is not displaying. We have designed our theme this way. If you want to use view in the service widgets then it needs code customization. So you need to hire a developer to fix it.
Thank you!
Theme Horse Support Team
KeymasterHi julie.pett,
You need code customisation for it. You just simply go to the theme folder(interface)-> inc -> structure -> header -extension.php
Can you see this code
if( has_post_thumbnail() ) { $interface_featured_post_slider .= '<figure><a href="' . get_permalink() . '" title="'.the_title('','',false).'">'; $interface_featured_post_slider .= get_the_post_thumbnail( $post->ID, $slider_size, array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ), 'class' => 'pngfix' ) ).'</a></figure>'; } if( $title_attribute != '' || $excerpt !='' ) { $interface_featured_post_slider .= ' <article class="featured-text">'; if( $title_attribute !='' ) { $interface_featured_post_slider .= '<div class="featured-title"><a href="' . get_permalink() . '" title="'.the_title('','',false).'">'. get_the_title() . '</a></div><!-- .featured-title -->'; } if( $excerpt !='' ) { $interface_featured_post_slider .= '<div class="featured-content">'.$excerpt.'</div><!-- .featured-content -->'; } $interface_featured_post_slider .= ' </article><!-- .featured-text -->'; }remove this code and add this code
if( has_post_thumbnail() ) { $interface_featured_post_slider .= '<figure><a href="#" title="'.the_title('','',false).'">'; $attitude_featured_post_slider .= get_the_post_thumbnail( $post->ID, $slider_size, array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ), 'class' => 'pngfix' ) ).'</a></figure>'; } if( $title_attribute != '' || $excerpt !='' ) { $interface_featured_post_slider .= ' <article class="featured-text">'; if( $title_attribute !='' ) { $interface_featured_post_slider .= '<div class="featured-title"><a href="#" title="'.the_title('','',false).'">'. get_the_title() . '</a></div><!-- .featured-title -->'; } if( $excerpt !='' ) { $interface_featured_post_slider .= '<div class="featured-content">'.$excerpt.'</div><!-- .featured-content -->'; } $interface_featured_post_slider .= ' </article><!-- .featured-text -->'; }From here you slider and all content is displayed but 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
Thank you!
Theme Horse Support Team
Keymasterhi Lisa Simone,
Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:.page-title { font-size: 24px; }Do not select the font size of Page Title. Leave it to default 32px
Thank you!
Theme Horse Support Team
KeymasterHi nosprogressus,
We have not even tested our site in multi-language. So we are not sure that it works or not. So you may need code customisation and need to hire a developer to fix it.
Thank you!
Theme Horse Support Team
KeymasterHi astrid,
We have designed our theme this way. It needs code customization. The file is inside theme folder-> library-> structure-> header-extension.php, Before making any changes in the code its highly recommended to make a child theme then only customize the code. So that your content will not be loss while updating to our new version.
Thank you!
Theme Horse Support Team
KeymasterHi Daniel,
The header will display above it navigation menu not below it. If you want below the navigation then it needs code customization. The file is inside theme folder-> inc-> structure-> header-extension.php, Before making any changes in the theme first make a child theme and customize the code. So that your data/ content will not be loss while updating to our new version.
Thank you!
-
AuthorPosts
