Forum Replies Created

Viewing 15 replies - 466 through 480 (of 595 total)
  • Theme Author TT Themes

    (@tomastoman)

    The header slideshow is supported only in the Premium version.

    In the Free version, I can recommend you to install the Meta Slider plugin and create a child theme. Just copy the original “header.php” template into your child theme’s folder, search here for the following code:

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

    and modify it in this way to display a slideshow at the place of the header image:

    <div class="header-image"><?php echo do_shortcode('[metaslider id=123]'); // replace 123 with your slideshow ID ?></div>

    Best regards,
    Tomas Toman

    Theme Author TT Themes

    (@tomastoman)

    @fitzerland: Hi, to change the position of the pop up contact form, please insert the following CSS into “Theme Options > Other Settings > Custom CSS”:

    #wrapper #vc_control {right: 200px;}

    #wrapper #vc_widget {right: 100px;}

    The first line is for the “Contact” button, the second one for the pop up form (just change both values according to your needs).

    To reduce the height of the header area, please use the following Custom CSS:

    body .header-content {padding-top: 0; padding-bottom: 0;}

    Best regards,
    Tomas Toman

    Theme Author TT Themes

    (@tomastoman)

    @fitzerland: Hi, could you please post here a link to your website so I could view it to help you? The 1.1.0 update contains only some changes in the translation files (added Italian translation and made some changes in the German translation), so if you can see some error, most probably it is a server issue not relating with the theme.

    Best regards,
    Tomas Toman

    Theme Author TT Themes

    (@tomastoman)

    @angel2014: Hi, please use the following custom CSS:

    body p, body ul, body ol, body li, body dl, body address, body table { font-size: 14px; }

    More advanced font size settings are available in the Premium version.

    Best regards,
    Tomas Toman

    Theme Author TT Themes

    (@tomastoman)

    Dear Lars Bertelsen,

    to change the default comments settings for all the new posts or pages, please go to “Settings > Discussion” and uncheck here the options “Allow people to post comments on new articles” and “Allow link notifications from other blogs (pingbacks and trackbacks)”.

    To remove comments on already published pages and posts, please follow this guide.

    Best regards,
    Tomas Toman

    Theme Author TT Themes

    (@tomastoman)

    Hi,

    I had never noticed this problem. Please try to deactivate all your plugins (one after another) to check if it is not caused by a plugin conflict.

    If the “Display Meta Box on posts” option is still not working properly for you, you can alternatively use the following Custom CSS to hide the Meta Box:

    #wrapper .post-info, #wrapper .post-meta {display: none;}

    The code posted above will hide the Meta Box also on the post entries on your homepage and other archive pages. To hide it only on the single posts, please use this CSS:

    .single .post-info, .single .post-meta {display: none;}

    Best regards,
    Tomas Toman

    Theme Author TT Themes

    (@tomastoman)

    I am glad that I could help you! To replace the Site Title with your custom logo, please go to “Theme Options > Header Settings > Logo URL”. Click here on the button “Upload Image” and select a previously uploaded image or upload a new image which will automatically replace the Site Title.

    Best regards,
    Tomas Toman

    Theme Author TT Themes

    (@tomastoman)

    @kalulo: Hello, to hide the featured images in the single post view, please go to “Theme Options > Posts/Pages Settings > Display Featured Image on single posts” and set here the value “Hide”.

    To remove the author and date information, please insert the following CSS into “Theme Options > Other Settings > Custom CSS”:

    .single .post-meta {display: none;}

    Best regards,
    Tomas Toman

    Theme Author TT Themes

    (@tomastoman)

    @wpct: I have tested the WooCommerce Cart in all the most popular browsers, but it seems that it is displayed correctly in the default way (without any custom modifications). Please try to paste the following CSS into “Theme Options > Other Settings > Custom CSS” to ensure the cart table to be floated correctly:

    #wrapper .shop_table {float: left !important;}

    Best regards,
    Tomas Toman

    Theme Author TT Themes

    (@tomastoman)

    Dear Natalie,

    sometimes it happens that the security system evaluate a question as a spam and automatically trash it (this can happen especially if you attach more than 2 links to your question or if the nickname or e-mail which you have filled out does not look real).

    Please try to re-post your question. If your problems continue, feel free to contact me through the Contact form and I will respond directly to your e-mail.

    Best regards,
    Tomas Toman

    Theme Author TT Themes

    (@tomastoman)

    I’m sorry, the Free version unfortunately does not support the SeaSun Posts-Column widget.

    Best regards,
    Tomas Toman

    Theme Author TT Themes

    (@tomastoman)

    @mancitygifts: Yes, it is possible using the Page Builder feature and the SeaSun Posts-Column custom widget. Here is a live demo (this page uses the “Full Width” page template, but it is also possible to use the Default page template with the right sidebar).

    For another questions regarding to the Premium version, please use rather the support forum on my website than this forum, because this forum should be used only for questions about the Free version.

    Best regards,
    Tomas Toman

    Theme Author TT Themes

    (@tomastoman)

    Dear Natalie,

    as I can see, you are running the RestImpo Premium theme. Unfortunately, this forum can be used only for the Free version. For questions regarding to the Premium theme, feel free to use the dedicated support forum on my website: http://www.tomastoman.cz/forums/forum/restimpo/.

    Because I already have responded to the similar question in the support forum, I have created a child theme which allows you to use the “boxed” layout (with a fixed width). Please check this post, it is probably what you’re looking for.

    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)

    By default, it is not possible to display both the title and the logo. The easiest way how to achieve it is to include the title into your logo image in a graphic editor.

    But if you would like to display the title as a text above the logo image, please open the “header.php” template, search here for the following code:

    <?php if ( $seasun_options_db['seasun_logo_url'] == '' ) { ?>
            <p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a></p>
    <?php } else { ?>
            <a href="<?php echo esc_url( home_url( '/' ) ); ?>"><img class="header-logo" src="<?php echo esc_url($seasun_options_db['seasun_logo_url']); ?>" alt="<?php bloginfo( 'name' ); ?>" /></a>
    <?php } ?>

    and modify it in this way (remove the PHP conditions):

    <p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a></p>
    <a href="<?php echo esc_url( home_url( '/' ) ); ?>"><img class="header-logo" src="<?php echo esc_url($seasun_options_db['seasun_logo_url']); ?>" alt="<?php bloginfo( 'name' ); ?>" /></a>

    Best regards,
    Tomas Toman

Viewing 15 replies - 466 through 480 (of 595 total)