Forum Replies Created
-
AuthorPosts
-
Sanjip Shah
Participant@donna0770 Two header logos (this feature) is not available in both free and pro version. You will need to hire a developer to make this customization.
February 24, 2014 at 6:34 am in reply to: removing whitespace between menu bar and page content #8050Sanjip Shah
Participant@mimeie In the dashboard, go to Appearance->Theme Options->Design Options Tab->Custom CSS. Paste the following css and click on ‘Save all Changes’.
#main { padding-top: 20px; }
Sanjip Shah
Participant@IndiaL Okay. Great!
February 24, 2014 at 6:30 am in reply to: Internal server error is appearing in wordpress dashboard #8048Sanjip Shah
Participant@rnd You could use the ftp programs like filezilla to downlaod that file (functions.php of child theme in this case), undo the unwanted code and reupload the file.
Sanjip Shah
Participant@naturals As you said you have already changed the thumbnail size Settings-Media. Now, try regenerating all the images into new sizes using this plugin http://wordpress.org/plugins/regenerate-thumbnails/. Hope this helps.
Sanjip Shah
Participant@Riou I repeated this and it is working fine. I have pasted the code of functions.php file
<?php add_action( 'init', 'attitude_remove_parent_function' ); /** * Removes parent function attached to hook */ function attitude_remove_parent_function(){ remove_action( 'attitude_header', 'attitude_child_headerdetails', 10 ); } add_action( 'attitude_header', 'attitude_child_headerdetails', 10 ); /** * Shows Header Part Content * * Shows the site logo, title, description, searchbar, social icons etc. */ function attitude_child_headerdetails() { ?> <?php global $attitude_theme_options_settings; $options = $attitude_theme_options_settings; $elements = array(); $elements = array( $options[ 'social_facebook' ], $options[ 'social_twitter' ], $options[ 'social_googleplus' ], $options[ 'social_linkedin' ], $options[ 'social_pinterest' ], $options[ 'social_youtube' ], $options[ 'social_vimeo' ], $options[ 'social_flickr' ], $options[ 'social_tumblr' ], $options[ 'social_myspace' ], $options[ 'social_rss' ] ); $flag = 0; if( !empty( $elements ) ) { foreach( $elements as $option) { if( !empty( $option ) ) { $flag = 1; } else { $flag = 0; } if( 1 == $flag ) { break; } } } ?> <div class="container clearfix"> <div class="hgroup-wrap clearfix"> <a class="telnumber" href="tel:240-415-8323">Call Now: 240-415-8323</a> <?php if( 0 == $options[ 'hide_header_searchform' ] || 1 == $flag ) { ?> <section class="hgroup-right"> <?php attitude_socialnetworks( $flag ); ?> <?php if( 0 == $options[ 'hide_header_searchform' ] ) get_search_form(); ?> </section><!-- .hgroup-right --> <?php } ?> <hgroup id="site-logo" class="clearfix"> <?php if( $options[ 'header_show' ] != 'disable-both' && $options[ 'header_show' ] == 'header-text' ) { ?> <h1 id="site-title"> <a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"> <?php bloginfo( 'name' ); ?> </a> </h1> <h2 id="site-description"><?php bloginfo( 'description' ); ?></h2> <?php } elseif( $options[ 'header_show' ] != 'disable-both' && $options[ 'header_show' ] == 'header-logo' ) { ?> <h1 id="site-title"> <a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"> <img src="<?php echo $options[ 'header_logo' ]; ?>" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>"> </a> </h1> <?php } ?> </hgroup><!-- #site-logo --> </div><!-- .hgroup-wrap --> </div><!-- .container --> <?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; ?> <?php if ( has_nav_menu( 'primary' ) ) { $args = array( 'theme_location' => 'primary', 'container' => '', 'items_wrap' => '<ul class="root">%3$s</ul>' ); echo '<nav id="access" class="clearfix"> <div class="container clearfix">'; wp_nav_menu( $args ); echo '</div><!-- .container --> </nav><!-- #access -->'; } else { echo '<nav id="access" class="clearfix"> <div class="container clearfix">'; wp_page_menu( array( 'menu_class' => 'root' ) ); echo '</div><!-- .container --> </nav><!-- #access -->'; } ?> <?php if( 'above-slider' == $options[ 'slogan_position' ] && ( is_home() || is_front_page() ) ) if( function_exists( 'attitude_home_slogan' ) ) attitude_home_slogan(); if( is_home() || is_front_page() ) { if( "0" == $options[ 'disable_slider' ] ) { if( function_exists( 'attitude_pass_cycle_parameters' ) ) attitude_pass_cycle_parameters(); if( function_exists( 'attitude_featured_post_slider' ) ) attitude_featured_post_slider(); } } else { if( ( '' != attitude_header_title() ) || function_exists( 'bcn_display_list' ) ) { ?> <div class="page-title-wrap"> <div class="container clearfix"> <?php if( function_exists( 'attitude_breadcrumb' ) ) attitude_breadcrumb(); ?> <h3 class="page-title"><?php echo attitude_header_title(); ?></h3><!-- .page-title --> </div> </div> <?php } } if( 'below-slider' == $options[ 'slogan_position' ] && ( is_home() || is_front_page() ) ) if( function_exists( 'attitude_home_slogan' ) ) attitude_home_slogan(); } ?>
Sanjip Shah
Participant@Xiang Do you want to remove the whole Leave a Reply part or just a specific part. If you want to remove the whole part you can visit this instruction https://www.themehorse.com/theme-instruction/attitude-pro/#disablecomment. If you want to remove specific part then please tell which part you want to remove.
Sanjip Shah
Participant@jrob79 Okay. Great!
Sanjip Shah
Participant@Kevin Can you provide a link to the exact page and we will see into it and provide the support.
Sanjip Shah
Participant@Jeff In the dashboard, go to Appearance->Theme Options->Design Options Tab->Custom CSS. Paste the following css and click on ‘Save all Changes’.
#main a:hover { text-decoration: underline; }
Sanjip Shah
Participant@Russell This feature should be from a plugin rather than a theme. There might be a plugin for this so I suggest you searching this in wordpress.org/plugins and see if you find any that would fit to your requirement.
Sanjip Shah
Participant@Russell In the dashboard, go to Appearance->Theme Options Tab->Design Options Tab->Site Layout option. Set the narrow layout there (you need to set the narrow layout to use the background option) and click on ‘Save all Changes’.
After this, go to Appearance->Background and you can set the background image from there. Hope this helps.February 24, 2014 at 5:55 am in reply to: Cannot deactivate revolution slider plugin therefore I cannot do a multisite #8039Sanjip Shah
Participant@Jan Hendrik In our Attitude pro theme, the plugin is just first included within the theme folder and it is not active or installed by default. You could try adjusting the configuration settings first and then only you could install/activate the rev slider. You can see the zip file of the rev slider inside the theme folder->library folder->plugin folder. You can use this also if you want to manually install it.
Sanjip Shah
Participant@saraohora In the Appearance->Theme Options->Design Options Tab-> Color Options (if you are using the pro theme). Try those color options and see if this helps.
Sanjip Shah
Participant@Gregory If you could also provide a link to the exact page where you are trying to adjust this, I could look deeper into it.
-
AuthorPosts