Sanjog
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Lingonberry] Home page header Title not Displaying?Hey mrkichu
I think your title is missing then.
Go to setting -> General Setting and write your Site Title and then Save Changes.Thanks
Forum: Themes and Templates
In reply to: [Kerinci Lite] Want to remove excerpt from homepageHi
First you need to create child theme.
Now in functions.php file of child theme you need to copy and paste below code as a whole.<?php add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' ); function theme_enqueue_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); } function replace_content( $excerpt ) { if(is_front_page()){ return the_content(); } } add_filter( 'the_excerpt', 'replace_content' );Best Regards!!1
Forum: Themes and Templates
In reply to: [Customizr] Removing Page title in pagesHi Shawn Ritch
OK
You need to copy and paste the following code in sytle.css in child theme./** * Theme Name: Customizr Child * Theme URI: http://presscustomizr.com/customizr * Description: Customizr is a versatile and easy to customize WordPress theme, instantly giving a professional look to your online presence. Designed with visitor engagement in mind, it allows anyone to create a beautiful, fast and mobile friendly website compatible with all browsers and devices. Customizr works fine with major WordPress plugins like WooCommerce, bbPress, JetPack and many others. Top rated by hundreds and with a very active community of users and developers, the Customizr theme is a safe and reliable design option to publish your WordPress content. * Version: 3.4.16 * Author: nikeo * Author URI: http://presscustomizr.com/ * Template: customizr * Tags: gray, white, light, blue, red, yellow, green, purple, orange, black, one-column, two-columns, three-columns, left-sidebar, right-sidebar, fluid-layout, responsive-layout, buddypress, custom-menu, custom-colors, featured-images, full-width-template, theme-options, threaded-comments, translation-ready, sticky-post, post-formats, rtl-language-support, editor-style * Text Domain: customizr * Copyright: (c) 2015 Nicolas GUILLAUME (nikeo), Nice, France * License: GNU General Public License v2.0 or later * License URI: http://www.gnu.org/licenses/gpl-2.0.html */ /** * The styleheets of Customizr are located in inc/assets/css. Each skin has its own stylesheet : blue.css, green.css, ... * The current stylesheet is loaded after the main skin stylesheet. * * IMPORTANT : If you write your CSS code below, it will be deleted when you'll update the theme. * If you want to make quick style test / changes, consider using the Custom CSS section in appearance > customize > advanced options > Custom CSS, it will persist on update since it is saved in your database. * To make important CSS customizations, you'll want to use a child theme and add your css code in the style.css file of it. */Thanks!!!
Forum: Themes and Templates
In reply to: [University] strange symbolsHi fellerk
Can you please check your header.php file.It might contain that bit of strange symbols.
Thanks!!
Forum: Fixing WordPress
In reply to: Find sidebar ID to unregister?Hi jpurdy647
Very happy to hear that your problem was solved.
Now please mark this thread as resolved cause it will be easy for other member with similar issue to fix their problem.Thanks and CHEERS!!!!
Forum: Themes and Templates
In reply to: [Customizr] Removing Page title in pagesHi Shawn Ritch
The term activate refer to as similar as how do you activate the main theme.
After you have created child theme now in admin pannel -> Appearance -> Themes.
In theme section you will find a child theme just created.
Now you need to activate that child theme.Thank You!!!
Forum: Themes and Templates
In reply to: [Lingonberry] Home page header Title not Displaying?Hi mrkichu
I am sorry to inform you that line is for the title not the logo.
Try keeping those lines of code and see the change.Thank You!!!
Forum: Themes and Templates
In reply to: [Theme: Customizr] Misplaced menu barHi smartIt
If your problem is solved now please mark this thread as resolved.
It will be easy for other with same issue to be fixed.Thanks and CHEERS!!!
Forum: Themes and Templates
In reply to: [Virtue] bold the font of the Header Menu (Primary Menu)Hi wpanduka314
First of all Go to your Dashboard ->Appearance -> Customize -> Advanced Setting -> Custom CSS Box.
In this section try adding this bit of code and Save and Publish.#nav-main ul.sf-menu a{ font-weight: bold !important; }Thank You!!
Forum: Themes and Templates
In reply to: [Kerinci Lite] Want to remove excerpt from homepageHi nishagarg
I am a bit confused by your question.
Do you wish to pull whole content or show only title??Thanks!!
Forum: Themes and Templates
In reply to: [Theme: Customizr] Misplaced menu barHi smartIt
First Go to Dashboard -> Appearance -> Customize -> Advanced Options -> Custom CSS.
In this Custom CSS section add the following CSS code:.nav-collapse.collapse.tc-hover-menu-wrapper { float: left; }Thanks!!
Forum: Themes and Templates
In reply to: [Sydney] Sydney theme – add 2 or more menusHi Angfoti175
It seems that you know how to create child theme.
Now if you want to add more menus then follow the steps:
In main themes folder functions.php file you will find the below code which is registering your menu:register_nav_menus( array( 'primary' => __( 'Primary Menu', 'sydney' ), ) );Now if you want more menus then you can create child theme and in functions.php file in child theme you can add below code:
register_nav_menus( array( 'secondary' =>__('Secondary Menu','sydney'), //similaryly add as much as you want ) );Note: Please customize files of child theme, so your changes will not overwrite on theme update.
Thanks!!
Forum: Themes and Templates
In reply to: [Lingonberry] Home page header Title not Displaying?Hi mrkichu
Copy and paste following code it seems your code has been modified.
<!DOCTYPE html> <html class="no-js" <?php language_attributes(); ?>> <head profile="http://gmpg.org/xfn/11"> <meta charset="<?php bloginfo( 'charset' ); ?>"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" > <title><?php wp_title('|', true, 'right'); ?></title> <?php if ( is_singular() ) wp_enqueue_script( "comment-reply" ); ?> <?php wp_head(); ?> </head> <body <?php body_class(); ?>> <div class="navigation"> <div class="navigation-inner section-inner"> <ul class="blog-menu"> <?php if ( has_nav_menu( 'primary' ) ) { wp_nav_menu( array( 'container' => '', 'items_wrap' => '%3$s', 'theme_location' => 'primary', 'walker' => new lingonberry_nav_walker ) ); } else { wp_list_pages( array( 'container' => '', 'title_li' => '' )); } ?> </ul> <?php get_search_form(); ?> <div class="clear"></div> </div> <!-- /navigation-inner --> </div> <!-- /navigation --> <div class="header section"> <div class="header-inner section-inner"> <?php if (get_header_image() != '') : ?> <a href="<?php echo esc_url( home_url() ); ?>/" title="<?php echo esc_attr( get_bloginfo( 'title' ) ); ?> | <?php echo esc_attr( get_bloginfo( 'description' ) ); ?>" rel="home" class="logo"> <img src="<?php header_image(); ?>" alt="<?php echo esc_attr( get_bloginfo( 'name' ) ); ?>"> </a> <?php else : ?> <a href="<?php echo esc_url( home_url() ); ?>/" title="<?php echo esc_attr( get_bloginfo( 'title' ) ); ?> — <?php echo esc_attr( get_bloginfo( 'description' ) ); ?>" rel="home" class="logo noimg"></a> <?php endif; ?> <h1 class="blog-title"> <a href="<?php echo esc_url( home_url() ); ?>/" title="<?php echo esc_attr( get_bloginfo( 'title' ) ); ?> — <?php echo esc_attr( get_bloginfo( 'description' ) ); ?>" rel="home"><?php echo esc_attr( get_bloginfo( 'title' ) ); ?></a> </h1> <div class="nav-toggle"> <div class="bar"></div> <div class="bar"></div> <div class="bar"></div> <div class="clear"></div> </div> <div class="clear"></div> </div> <!-- /header section --> </div> <!-- /header-inner section-inner -->Feel free to post if problem continues.
Thanks !!!
Forum: Themes and Templates
In reply to: Hide Page Title on Newspaper ThemeHi charellstar
The theme you are using right now seems to be premium so full support is only given by theme author.
However you can create Child theme and paste this code in child theme style.css.
Or Else you may (or may not) find some area inside customize section as Custom CSS you can paste it there.Thank You!!
Forum: Themes and Templates
In reply to: Theme: Storefront Remove search on top of pageHi stillmo
You can try adding the following CSS if you have plugin for adding CSS:
.site-search { visibility: hidden; }Thanks and CHEERS!!