Home › Forums › Themes Support › General › How remove ranking and views, change the film label words?
- This topic has 1 reply, 2 voices, and was last updated 3 years, 2 months ago by
admin.
-
AuthorPosts
-
March 24, 2020 at 4:59 pm #5233
Hi there,
am new here. I really love your theme. The beautiful design and the mega menu are really cool. The many possibilities are great too. Now I have a few questions where I need your help.
How can I remove ranking and views? (Pic1)
How can I change the film label words? (Pic2)
How can I edit the two buttons? I want to Link to Amazon Prime Video, Netflix,… (Pic3)
I don’t need Top View, Top Rated, Popular Tags. How can I remove it or hide it in the background? (Pic4)Attachments:
You must be logged in to view attached files.March 30, 2020 at 1:58 pm #5280Hi,
Thanks for contacting us and choosing our product!
About your questions we can answer as below:
1. You can go to Appearance -> Customize -> Additional CSS and add this code:.film-rating { display: none; }
2. About Film Label if you translate to other language you can use this plugin to translate Circle theme and Haru Circle Core plugin:
If you still use English you can find these string in:
wp-content/plugins/haru-circle-core/templates/circle/film-ajax-search.php (line 109 to 119)
wp-content/plugins/haru-circle-core/templates/circle/film-ajax-search.php (line 106 to 116)
wp-content/plugins/haru-circle-core/templates/posttypes/film/film-style/style_1.php (from line 24 to 34)
wp-content/plugins/haru-circle-core/templates/posttypes/film/film-style/style_2.php (from line 24 to 34)
From theme:
wp-content/themes/haru-circle/templates/archive/content-haru-film.php (from line 53 to 63)
wp-content/themes/haru-circle/templates/single/content-film.php
You can customize via child theme follow this topic tutorial: https://harutheme.com/forums/topic/customize-wordpress-theme-using-child-theme/
3. In this case we don’t support to link to other server. However you can do it follow this topic: https://harutheme.com/forums/topic/add-new-metabox-circle-single-video-film-actor-director/
4. About Single Film Sidebar now it use same setting as Theme Options -> Single Settings. You can set layout don’t have sidebar here.
Or you can customize via child theme with this file:
wp-content/themes/haru-circle/templates/single-haru-film.php
Use this code:<?php /** * @package HaruTheme * @version 1.0.0 * @author Administrator <admin@harutheme.com> * @copyright Copyright (c) 2017, HaruTheme * @license http://opensource.org/licenses/gpl-2.0.php GPL v2 or later * @link http://harutheme.com */ // Process single blog layout $single_blog_layout = isset($_GET['layout']) ? $_GET['layout'] : ''; if ( !in_array($single_blog_layout, array('full', 'container')) ) { $single_blog_layout = get_post_meta( get_the_ID(), 'haru_' . 'page_layout', true); if ( ($single_blog_layout == '') || ($single_blog_layout == '-1') ) { $single_blog_layout = haru_get_option('single_blog_layout'); } } // Set Default if ( empty($single_blog_layout) ) { $single_blog_layout = 'container'; } ?> <?php /** * @hooked - haru_page_heading - 5 **/ do_action('haru_before_page'); ?> <div class="haru-single-blog"> <div class="<?php echo esc_attr($single_blog_layout); ?> clearfix"> <div class="row clearfix"> <!-- Single content --> <div class="single-content col-md-12 col-sm-12 col-xs-12"> <div class="single-wrapper"> <?php if( have_posts() ): // Start the Loop. while( have_posts() ) : the_post(); /* * Include the post format-specific template for the content. If you want to * use this in a child theme, then include a file called called content-___.php * (where ___ is the post format) and that will be used instead. */ get_template_part( 'templates/single/content' , 'film' ); endwhile; else: // If no content, include the "No posts found" template. get_template_part( 'templates/archive/content-none'); endif; ?> <?php comments_template(); ?> </div> </div> </div> </div> </div>
Hope this help!
****
Regards,
HaruTheme -
AuthorPosts
You must be logged in to reply to this topic.