Forum Replies Created
-
AuthorPosts
-
Theme Horse Support Team
Keymasterhi Daniel,
Yes you can but it needs code customization. The file is inside theme folder-> inc-> structure->content-extension.php on line no 759 and 783 you will find the following code
add_action( 'attitude_after_loop_content', 'attitude_next_previous', 5 ); /** * Shows the next or previous posts */ function attitude_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', 'attitude' ) ); ?></li> <li class="next"><?php previous_posts_link( __( 'Next »', 'attitude' ) ); ?></li> </ul> <?php endif; endif; } }Replace Previous and Next as you want. We recommended you to create a child theme before making any changes on it. First unhook the function and then only customize the code. We have already replied how to unhook the functions too in forum.
Thank you!
Theme Horse Support Team
KeymasterHi Michael,
Is your problem solved? If not then email us at our Email, Our sales Team will help you
Thank you!
Theme Horse Support Team
KeymasterHi andrea1,
This is the WordPress default widgets. Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:
ul.children { margin-left: 10px; }Hope this may help you.
Thank you!
Theme Horse Support Team
KeymasterHi Rouchaud,
View this instruction page how to set up gallery
https://www.themehorse.com/theme-instruction/clean-retina-pro/#galleryDid you customize any code? If no then first of all deactivate all the plugins too that you have installed in your dashboard. Then only follow this instruction:
Go to Galleries->Add New in your dashboard.
Add Title which will be Image title.
Add featured image for this post.
Click on Publish.
If you have multiple images(other images too) to be shown. Repeat the first four steps again.
After you are done with adding the posts in Galleries.
Create a Page, give it title.
On the right hand-side, click on template dropdown.
From the dropdow, select any of from three template ( Gallery four column template, Gallery three column template, Gallery two column template )
Click Publish button.
Now choose this page as menu.Thank you!
February 23, 2015 at 5:47 am in reply to: Page ( which is set as business ) content doesn't show on business page template #22387Theme Horse Support Team
KeymasterHi nuruddinctg1990,
Example to unhook the page 404:unhook functions // Unhook default Thematic functions function unhook_thematic_functions() { // Don't forget the position number if the original function has one remove_action( 'interface_404_content', 'interface_display_404_page_content', 10 ); } add_action('init','unhook_thematic_functions'); // removes the header content by using hook interface_header add_action( 'interface_404_content', 'interface_child_display_404_page_content', 10 ); /** * function to show the footer info, copyright information */ function interface_child_display_404_page_content() { ?> <div id="content"> <header class="entry-header"> <h1 class="entry-title"><?php _e( 'Error 404-Page NOT Found', 'interface' ); ?></h1> </header> <div class="entry-content clearfix" > <p>Thank you</p> </div><!-- .entry-content --> </div><!-- #content --> <?php }You may also search in forum how to unhook the parent code.
For example:-
https://www.themehorse.com/support-forum/topic/child-theme-404-page-and-search-page-styling/
If you are still unable then you may hire a developer to fix it.This below code must be defined under business page Template. If you want to display it in your own style/ design then you need to hire a developer
<?php the_content();?>Thank you!
Theme Horse Support Team
KeymasterHi cynthia.lovely,
You have changed the font fomaily, so your phone icon is not displaying.
Yes in mobile device we have made it hidden. If you want to display in mobile device then
Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:.info-bar .info ul li:before { font-family: 'Genericons'; }@media only screen and (max-width: 767px){ #branding .info-bar { display: block; } }Thank you!
Theme Horse Support Team
KeymasterHi wendy.hanlan,
Could you make it more clear? Please create a new forum and post it as a new topic because all the user under this forum will get notified which may be unwanted for theme. Also could you please send the site url too?
Thank you!
Theme Horse Support Team
KeymasterHi YAN,
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
The font is enqueued form theme folder-> inc-> functions-> functions.php on line no 67. You can see this below code
wp_register_style( 'interface_google_font', '//fonts.googleapis.com/css?family='.$interface_google_font_load .':400,700italic,700,400italic');Thank you!
Theme Horse Support Team
Keymasterhi Adam,
We have designed our theme this way. To add hyperlink you need code customization for it. Before making any changes in code first create a child theme then only customize the code to be safe from data loss while updating to our new version.
Thank you!
Theme Horse Support Team
Keymasterhi raden,
Did you customize any code? If no then first deactivate all the plugins that you have installed in the dashboard. The margin may come from plugins. This unwanted div is available in your site.
<div id="undefined-sticky-wrapper" class="sticky-wrapper" style="height: 101px; margin-bottom: 101px;">So deactivate all the plugins and test whether same problem exists or not.Thank you!
Theme Horse Support Team
Keymasterok that’s great Serkan
Thank you!
Theme Horse Support Team
KeymasterHi Gale,
This is not the theme issue, it related to the plugins. https://wordpress.org/plugins/eventbrite-api/. (https://github.com/Automattic/eventbrite-api). You may contact to the plugins developer to fix the issue. We cannot guarantee our themes will function with all 3rd party components and plugins. You need to hire a developer to fix this issue.
Thank you!
Theme Horse Support Team
KeymasterHi serkan,
Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:#site-generator .copyright { width: 70.64%; }Thank you!
Theme Horse Support Team
KeymasterHi beth,
Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:
#controllers { display: none; }Hope this may help you
Thank you!
Theme Horse Support Team
KeymasterHi Birch Studio,
Once you remove the code that you have installed in theme and check whether the same problem persuits or not. If not then deactivate all the plugins one by one that you have installed in your dashboard. There may be some jquery conflict so that you are getting this issue. You may check it in our demo site that its working fine.
Thank you!
-
AuthorPosts
