TT Themes
Forum Replies Created
-
Dear Frédéric,
for questions regarding the Premium version, next time please use the dedicated Support Forum on TT Themes website, because this forum should be used only for questions regarding the Free version hosted here. 🙂
To translate the FB Share and Like buttons, please create a child theme of MineZine Premium and just insert the following code into your child theme’s “functions.php”:
<?php function minezine_child_dequeue_script() { wp_dequeue_script( 'minezine_js_facebook' ); } add_action( 'wp_print_scripts', 'minezine_child_dequeue_script', 100 ); function minezine_child_scripts_styles() { wp_enqueue_script('minezine_child_js_facebook', 'http://connect.facebook.net/fr_FR/all.js#xfbml=1', '', '', 'footer'); } add_action( 'wp_enqueue_scripts', 'minezine_child_scripts_styles' ); ?>You also can place this code directly at the end of “functions.php” in the original MineZine Premium, but after updating the theme, all your custom modifications will be lost.
I hope that my answer will be helpful for you.
Best regards
Tomas TomanForum: Themes and Templates
In reply to: [MineZine] incompatibility with Plugin WP tweet Button ?I am glad that I could help you!
Best regards
Tomas TomanForum: Themes and Templates
In reply to: [MineZine] incompatibility with Plugin WP tweet Button ?Dear Frédéric,
I just have tested the compatibility with the WP Tweet Button plugin and everything seems to be fine. Please go to “Settings > WP Tweet Button” and check whether somewhere here is not mistakenly placed the “Tweet” text (most probably in the “Tweet link text” option field).
I hope that my answer will be helpful for you.
Best regards
Tomas TomanForum: Themes and Templates
In reply to: [BrickYard] comment and contact formsDear Robert,
BrickYard Premium version offers in-built slideshow feature which allows you to create unlimited number of slideshows and display them on the individual pages/posts (see the live demo).
You also can try the NextGEN Gallery plugin for managing galleries/slideshows.
Best regards
Tomas Toman – TT ThemesForum: Themes and Templates
In reply to: [BrickYard] comment and contact formsDear Robert,
if you would like to try another system than WordPress, it will be best to inquire directly its provider. Unfortunately, I specialize only in WordPress and have no extensive experience with another systems.
Best regards
Tomas TomanForum: Themes and Templates
In reply to: [BrickYard] comment and contact formsDear Robert,
for my projects, I always use some local web hosts (I am from the Czech Republic) so I have no personal experience with the foreign web host providers, but I have seen many websites with my themes hosted on Bluehost without any problems. Before you purchase a new web host, you should ensure that it meets all the WordPress minimum requirements.
Best regards
Tomas TomanForum: Themes and Templates
In reply to: [BrickYard] comment and contact formsDear Robert,
you can try to switch to the default Twenty Fourteen theme (or another default themes) and check whether you also run into the same problems with it. If so, there is some problem with your web hosting.
If you are unable to upload large pictures, it is most probably caused by a too low “upload_max_filesize” set on your web server.Best regards
Tomas TomanForum: Themes and Templates
In reply to: [BrickYard] comment and contact formsDear Robert,
if both JetPack contact form and Contact Form 7 plugins are not working for you, most probably it is a web host issue. Here is a list of recommended web hosting providers for WordPress.
Here is a video tutorial how to downgrade WordPress to an earlier version. You will need to connect via FTP to your web server and manually upload the earlier version of WordPress. Before doing it, you should completely back up your website (all the files on your web server and also the MySQL database).
Best regards
Tomas Toman – TT ThemesForum: Themes and Templates
In reply to: [BrickYard] comment and contact formsDear Robert,
you also can download the background image (bricks) directly from the BrickYard Premium demo site: http://brickyard.tomastoman.cz/wp-content/uploads/2014/06/background.jpg (2000 x 1300 px). To set the background image to cover the whole screen, please use the following Custom CSS:
body {background-size: cover;}BrickYard theme is compatible with the JetPack plugin, so if your problems continue, please try to contact your web host provider. You also can try the Contact Form 7 plugin, which also works well with BrickYard theme.
Best regards
Tomas TomanForum: Themes and Templates
In reply to: [BrickYard] comment and contact formsDear Robert,
1.) You can edit the comment form in the “comments.php” theme file. For getting more information about the comment_form function, you can visit the following Codex page.
Instead of editing the original “comments.php”, I can recommend you to create a child theme.2.) If you would like to insert a contact form shortcode into a widget area (probably using a Text widget), you will need to add the following code just before the closing
?>tag in “functions.php”:
add_filter( 'widget_text', 'do_shortcode');By default, all themes hosted at wordpress.org are allowed to use shortcodes only within the page/post content (in Visual Editor), not in the widget areas or anywhere else.
3.) To put a photo into your right sidebar, I can recommend you to install the following plugin: https://wordpress.org/plugins/black-studio-tinymce-widget/. It allows you to work with the Visual Editor also within the widget areas. For inserting a date block, you also will need to search for an appropriate plugin as this is not a core WordPress feature.
If you would like to use the background image which you can see in the theme screenshot, you can download it here: http://unsplash.com/post/71804718364/download-by-martin-wessely.
I hope that my answers will be helpful for you.
Best regards
Tomas TomanForum: Themes and Templates
In reply to: [PaperCuts] Adding image to headerDear Halo Diehard,
please try to insert the URL address of your background image without the quotation marks as they are not necessary and may cause some problems with encoding.
Best regards
Tomas Toman – TT ThemesForum: Themes and Templates
In reply to: [PhotoStory] Blogpost thumbnailsDear Sean,
to set the post thumbnail for a post, you will need to set it in the “Featured Image” panel (you can find it on the right side when you are editing a post) instead of inserting it to the post content. Simply click on the link “Set featured image” and upload/choose the desired image.
Best regards
Tomas TomanForum: Themes and Templates
In reply to: [PhotoStory] Tags to the bottomDear Incogniteaux,
to move the post meta data, you will need to edit the “single.php” theme file. The best way how to do it is by creating a child theme, but you also can edit the code directly in the original theme in “Appearance > Editor” panel, where you will need to open the “Single Post (single.php)” template (choose it from the right side panel). The code for displaying the post meta is the following:
<?php if ( $photostory_options_db['photostory_display_meta_post'] != 'Hide' ) { ?> <p class="post-meta"> <span class="post-info-author"><?php _e( 'Author: ', 'photostory' ); ?><?php the_author_posts_link(); ?></span> <span class="post-info-date"><?php echo get_the_date(); ?></span> <?php if ( comments_open() ) : ?> <span class="post-info-comments"><a href="<?php comments_link(); ?>"><?php printf( _n( '1 Comment', '%1$s Comments', get_comments_number(), 'photostory' ), number_format_i18n( get_comments_number() ), get_the_title() ); ?></a></span> <?php endif; ?> </p> <div class="post-info"> <p class="post-category"><span class="post-info-category"><?php the_category(', '); ?></span></p> <p class="post-tags"><?php the_tags( '<span class="post-info-tags">', ', ', '</span>' ); ?></p> </div> <?php } ?>You will need to move this code just above the
<?php edit_post_link( __( 'Edit', 'photostory' ), '<p>', '</p>' ); ?>code. Here is how your single.php file should look after moving the code:<?php /** * The post template file. * @package PhotoStory * @since PhotoStory 1.0.0 */ get_header(); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div id="content"> <div class="content-headline"> <h1 class="entry-headline"><?php the_title(); ?></h1> <?php photostory_get_breadcrumb(); ?> </div> <?php photostory_get_display_image_post(); ?> <div class="entry-content"> <?php the_content(); ?> <?php wp_link_pages( array( 'before' => '<p class="page-link"><span>' . __( 'Pages:', 'photostory' ) . '</span>', 'after' => '</p>' ) ); ?> <?php if ( $photostory_options_db['photostory_display_meta_post'] != 'Hide' ) { ?> <p class="post-meta"> <span class="post-info-author"><?php _e( 'Author: ', 'photostory' ); ?><?php the_author_posts_link(); ?></span> <span class="post-info-date"><?php echo get_the_date(); ?></span> <?php if ( comments_open() ) : ?> <span class="post-info-comments"><a href="<?php comments_link(); ?>"><?php printf( _n( '1 Comment', '%1$s Comments', get_comments_number(), 'photostory' ), number_format_i18n( get_comments_number() ), get_the_title() ); ?></a></span> <?php endif; ?> </p> <div class="post-info"> <p class="post-category"><span class="post-info-category"><?php the_category(', '); ?></span></p> <p class="post-tags"><?php the_tags( '<span class="post-info-tags">', ', ', '</span>' ); ?></p> </div> <?php } ?> <?php edit_post_link( __( 'Edit', 'photostory' ), '<p>', '</p>' ); ?> <?php endwhile; endif; ?> <?php if ( $photostory_options_db['photostory_next_preview_post'] != 'Hide' ) { ?> <?php photostory_prev_next('photostory-post-nav'); ?> <?php } ?> <?php comments_template( '', true ); ?> </div> </div> <!-- end of content --> <?php get_sidebar(); ?> <?php get_footer(); ?>I hope that my guide will be helpful for you.
Best regards
Tomas TomanDear Photard26,
you can insert the CSS posted above into “Theme Options > Other Settings > Custom CSS”. If you would like to make more color customizations, you can upgrade to the PhotoStory Premium version where you can set your custom colors using the color pickers directly in Theme Options panel.
Best regards
Tomas TomanForum: Themes and Templates
In reply to: [StairWay] Error msg when Uploading PDFsDear Michaelyn,
this error is caused by a low memory limit set on your web server. To fix it, please contact your web host provider with the requirement to increase the memory limit for uploading files (upload_max_filesize).
Also verify that there are no special symbols in the name of your PDF file as this also could cause some problems.Best regards
Tomas Toman