Forum Replies Created

Viewing 15 replies - 451 through 465 (of 595 total)
  • Theme Author TT Themes

    (@tomastoman)

    Please delete the conditions for displaying the header image in your code to make it work:

    <?php } ?>
    <?php if ( is_home() || is_front_page() ) { ?>
        <div class="header-image"><?php do_action('slideshow_deploy', '17'); ?></div>
    <?php } else { ?>
        <div class="header-image"><?php do_action('slideshow_deploy', '17'); ?></div>
    <?php } ?>

    If you would like to replace the header search form with a phone number, please follow this guide.

    Best regards,
    Tomas Toman

    Theme Author TT Themes

    (@tomastoman)

    Hi,

    the slideshow feature is available in the Premium version of this theme by default. If you would like to implement a header slideshow into the Free version, you will need to create a child theme.

    For creating a slideshow, I can recommend you to use the Cyclone Slider 2 plugin. Once you create a slideshow, please copy the original “header.php” template from the “brickyard” directory to your child theme’s directory, search here for the following code:

    <?php if ( get_header_image() != '' ) { ?>
        <div class="header-image"><img src="<?php header_image(); ?>" alt="<?php bloginfo( 'name' ); ?>" /></div>
    <?php } ?>

    and modify it in this way (just replace the “slideshow-id” with the real slideshow ID):

    <div class="header-image"><?php if( function_exists('cyclone_slider') ) cyclone_slider('slideshow-id'); ?></div>

    I hope that my answer will be helpful for you.

    Best regards,
    Tomas Toman

    Theme Author TT Themes

    (@tomastoman)

    Hi,

    the “Full Text” option located in “Settings > Reading” is used only for the RSS feeds. As you have probably found, the option for setting the post summaries on the blog page is located in “Theme Options > General Settings > Content/Excerpt Displaying”.

    Best regards,
    Tomas Toman

    Theme Author TT Themes

    (@tomastoman)

    Hi,

    I’m sorry, but this support forum can be used only for the Free version of the MineZine theme which is hosted here. For any questions relating to the Premium version, feel free to use its dedicated support forum (please see this topic where is described how to set the logo to cover the whole header area using a custom CSS).

    Best regards,
    Tomas Toman

    Theme Author TT Themes

    (@tomastoman)

    Hi,

    I just have displayed the source code of your website and it seems that the problem is caused by the fact that the post navigation (prev/next links) was moved outside the main content container. Have you please modified the “single.php” template in some way?

    If not, there might be a plugin conflict. Please try to deactivate all your installed plugins (one after another) to see whether it could help. Or, just hide the post navigation in “Theme Options > Posts/Pages Settings > Next/Previous Post Navigation”.

    I hope that my answer will be helpful for you.

    Best regards,
    Tomas Toman

    Theme Author TT Themes

    (@tomastoman)

    I am glad that I could help you!

    Best regards,
    Tomas Toman

    Theme Author TT Themes

    (@tomastoman)

    Hi,

    I can see that you are using a child theme. Have you please modified the original “footer.php” template in some way or added some custom widget areas in “functions.php”?
    There also might be a plugin issue – please try to deactivate all your installed plugins (one after another) to see whether it could help.

    Best regards,
    Tomas Toman

    Theme Author TT Themes

    (@tomastoman)

    Hi,

    to change the font size font size of the menus, please use the following CSS (you can insert it into “Theme Options > Other Settings > Custom CSS”):

    #wrapper .menu-box a {font-size: 16px;} (for the Main Menu)

    #wrapper .top-navigation a {font-size: 16px;} (for the Top Menu)

    Best regards,
    Tomas Toman

    Theme Author TT Themes

    (@tomastoman)

    Hi,

    if the slider works well for you without the custom CSS, you can completely delete it. I posted it to show you how it could be possible to move the slideshow at the desired place in case that you are not satisfied how it is displayed by default. Or, please try to delete only the z-index: -1; declaration.

    Best regards,
    Tomas Toman

    Theme Author TT Themes

    (@tomastoman)

    The easiest way how to achieve it is to set your header image as a “logo” in “Theme Options > Header Settings > Logo URL” (instead of setting it in “Appearance > Header”). If you set a header logo through Theme Options, it will automatically refer to your homepage.

    By default, there is a white padding around the logo image. To remove it (so the logo will be displayed in the same way as the header image – across the entire width of the page), please use the following Custom CSS:

    html #wrapper .header-content {padding: 0; width: 100%;}

    Also, if you have used it, please delete the following Custom CSS which I have posted above (otherwise the logo can’t be displayed):

    #wrapper .header-content {display: none;}

    Best regards,
    Tomas Toman

    Theme Author TT Themes

    (@tomastoman)

    Hi,

    you can hide the header search form through “Theme Options > Header Settings > Display Search Form”. If you would like to hide the whole area above the menu box, please insert the following CSS code into “Theme Options > Other Settings > Custom CSS”:

    #wrapper .header-content {display: none;}

    Then, you can set your custom header image in “Appearance > Header” panel.

    To hide the home button within the menu bar, please use the following Custom CSS:

    #wrapper .link-home {display: none;}

    Or, use this CSS to hide the whole menu bar:

    #wrapper .menu-box {display: none;}

    I hope that my answer will be helpful for you.

    Best regards,
    Tomas Toman

    Theme Author TT Themes

    (@tomastoman)

    Dear Erik,

    1. The 1.1.4 update contains the following changes (these are only a minor changes which will not affect the layout):

    – added Polish translation
    – mentioned the Text Domain in style.css
    – set the priority of excerpt_length filter from 999 to 20

    Once you update the theme, all your previously set options (Header Image, Background, Menus, Theme Options, Widgets, etc.) will stay preserved. But if you made some modifications in the source files (like header.php, functions.php, etc.), these changes would be overwritten by installing an update. The only way how to prevent it is to create a child theme in case of any custom changes.

    2. Here you can view all the differences between the Free and Premium versions. The most notable Premium features are the following: ability to set custom colors through Theme Options, in-built support for the social share buttons, 11 custom widgets and support for the drag-and-drop Page Builder.

    3. You can prevent cutting-off the Site Title using the word-wrap CSS property:

    body .site-title {word-wrap: normal;}

    Best regards,
    Tomas Toman

    Theme Author TT Themes

    (@tomastoman)

    The background, menus and header image settings are saved separately for each theme, so once you activate a child theme, then you will need to set them again for the child theme.

    To check for the page ID, please follow these steps.

    To display the header slideshow next to the logo, please search for the following code in “header.php”:

    <div class="header-content">

    Just under it, place the following:

    <div class="header-slider"><?php echo do_shortcode('[metaslider id=67]'); ?></div>

    Then, you will need to add some custom CSS to style the slideshow:

    .header-slider {position: absolute; top: 0; left: 0; z-index: -1;}

    (change the values “top” and “left” to get the slideshow to the desired location – maybe you will need to add also some additional CSS properties to style it according to your needs).

    Best regards,
    Tomas Toman

    Theme Author TT Themes

    (@tomastoman)

    If you have edited only the first appearance of the <div class="header-image"> element, the slideshow will be displayed only on your homepage. Just under it, there is also the code which generates the header image on all other pages:

    <?php if ( get_header_image() != '' && $maidenhair_options_db['maidenhair_display_header_image'] != 'Only on Homepage' ) { ?>
        <div class="header-image"><img src="<?php header_image(); ?>" alt="<?php bloginfo( 'name' ); ?>" /></div>
    <?php } ?>

    Just edit this code in the same way to display the slideshow on all pages.

    Best regards,
    Tomas Toman

    Theme Author TT Themes

    (@tomastoman)

    Please check the settings panel of the plugin which you use for displaying the contact widget. If there is no such option, the following CSS should hide it on all pages except your “Contact us” page:

    #vc_control, #vc_widget {display: none !important;}
    html .page-id-105 #vc_control, html .page-id-105 #vc_widget {display: block !important;}

    Best regards,
    Tomas Toman

Viewing 15 replies - 451 through 465 (of 595 total)