Forum Replies Created
-
AuthorPosts
-
Theme Horse Support Team
KeymasterThat’s great aris
Thank you!
Theme Horse Support Team
KeymasterThat’s great aris
Thank you!
Theme Horse Support Team
KeymasterHi lillianduggan,
This is not the theme relating issue. Its the server relating issue. For more info visit below link
http://www.wpbeginner.com/wp-tutorials/how-to-fix-the-internal-server-error-in-wordpress/
https://www.prestashop.com/blog/en/the-500-internal-server-error-explained-solved/Thank you!
Theme Horse Support Team
KeymasterHi meg,
Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:
.hgroup-wrap { padding-bottom: 0px; }Thank you!
Theme Horse Support Team
KeymasterHi mauro.designer,
This is responsive design. The slider height is automatically controlled from the javascript file. We have designed our theme this way. IF you like changing the slider size then you need to hire a developer to fix it.
Thank you!
March 13, 2015 at 5:52 am in reply to: template_blog_image_large next and previous by category? #23047Theme Horse Support Team
KeymasterYou welcome nshimer
Thank you!
Theme Horse Support Team
KeymasterHi filipa.martins,
If you have not made any changes in code then you are safe. You will not lose any content and information structure that you currently have.
Thank you!
Theme Horse Support Team
KeymasterHi Lisa Simone,
This feature is not available in our theme. If you activate header logo then your header text will not be displayed. So you either use header logo or header text. To have it you have to customize the code or hire a developer to fix it.
Thank you!
Theme Horse Support Team
KeymasterOk that’s great Martin
Thank you!
Theme Horse Support Team
KeymasterHi aris,
Could you please upload the recommended image size. Because it’s for retina ready display. Once please send your site url too. Recommended size for the image is 400px (width) and 150px (height). Did you made any changes in CSS, otherwise it must work fine too.
Thank you!
Theme Horse Support Team
KeymasterHi Michal,
There is only one options to do this. First of all go to dashboard-> apperance-> theme options-> layout options-> content layout and select the no-sidebar full width. View this screen shot.
http://awesomescreenshot.com/0344m55dcdIf you link right side bar on the particular page/ Post then edit that page/ post and at the bottom of the editor you will see the layout options and select it to right side. This will effect only for particular page. And for rest of the page it will display no-sidebar full width except templates. View this screenshot.
http://awesomescreenshot.com/0bd4m567bbHope you got it.
Thank you!
Theme Horse Support Team
KeymasterHi lillianduggan ,
If you deactivate the jet pack plugins, then you have to connect again with wordpress.com
Thank you!
Theme Horse Support Team
KeymasterHi guitaristforhim,
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 -->'; }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
KeymasterThat’s great wordsmith04
Thank You!
March 11, 2015 at 5:40 am in reply to: Page title not appearing within the main Gallery page. #22984Theme Horse Support Team
KeymasterHi Adria,
You need to install the plugins to get the breadcrumbs effect. We have not added the gallery title in gallery page. We have designed our theme this way.Suppose if you are using two column gallery then to display gallery title goto theme folder-> library-> structure-> content-extension.php on line no 1042 and add this below code.
<?php if(is_home() || is_front_page()){?> <h2 class="entry-title"> <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute();?>"><?php the_title(); ?></a> </h2><!-- .entry-title --> <?php }else{ ?> <h1 class="entry-title"> <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute();?>"><?php the_title(); ?></a> </h1><!-- .entry-title --> <?php } ?>Before making any changes first of all create a child theme and then only customize the code to be safe from data loss while updating to our new version.
Thank you!
-
AuthorPosts
