saurabh.dhariwal
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Dara] Shopping Cart Drop Down Menu ColorHello mattjallday,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
.site-header-cart .widget_shopping_cart { background: #0EBFE9; }
Hope this will helps you.
Thanks !
Forum: Themes and Templates
In reply to: [Kenza] Remove About Admin at bottom of postsHello dressthebump,
You can hide it with css. Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
#single-post-author-info { display: none; }
Hope this will helps you.
Thanks !
Forum: Themes and Templates
In reply to: [Amadeus] How do I get the tagline on the homepage onlyHello christopherramirez,
You can achive this with css. Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
h2.site-description { display: none; } body.home h2.site-description { display: inline-block; }
Hope this will helps you.
Thanks !
Forum: Themes and Templates
In reply to: [GeneratePress] Remove CategoriesHello hairyp,
You can hide them by css. Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
.entry-meta { display: none; }
Hope this will helps you.
Thanks !
Forum: Themes and Templates
In reply to: [Photo Perfect] Google analytics code – where to enter itHello secretfocus,
You have to add that google analystics into header.php file between <head> tag.
Example.
<head> <?php /** * Hook - photo_perfect_action_head. * * @hooked photo_perfect_head - 10 */ do_action( 'photo_perfect_action_head' ); ?> <?php wp_head(); ?> <meta name=”google etc…… </head>
or
Add below code into your current active theme’s functions.php file
function google_analytics_code() { ?> <meta name=”google etc…… <?php } add_action('photo_perfect_action_head', 'google_analytics_code');
Note : All Changes you done in funtions.php or header.php or other file are gone when you update theme. So prefer Child Theme
Hope this will helps you.
Thanks !
Forum: Themes and Templates
In reply to: [GivingPress Lite] Make the footer in full witdhHello awmand,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
.content { max-width: 100%; }
Hope this will helps you.
Thanks !
Forum: Themes and Templates
In reply to: [Consulting] Read More button…Hello qskk,
Add below code into your current active child theme’s functions.php file or you can create custom plugin for it.
function new_excerpt_more($more) { global $post; return '…<p class="more-link"><a href="' . esc_url( get_permalink($post->ID) ) . '" class="themebutton2">' . esc_html__( 'Voir plus', 'consulting') . '</a></p>'; } add_filter('excerpt_more', 'new_excerpt_more');
Hope this will helps you.
Thanks !
Forum: Themes and Templates
In reply to: [evolve] Responsive header sizeHello jidy,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
@media(max-width:768px) { .header { height : 160px; } }
Hope this will helps you.
Thanks !
Forum: Themes and Templates
In reply to: [Storefront] Add image below copyright footerHello chilliwax,
Add below code into your current active child theme’s functions.php file or you can create custom plugin for it.
add_action( 'storefront_footer', 'storefront_custom_image', 30); function storefront_custom_image() { echo '<img src="your_image_url" />'; }
Hope this will helps you.
Thanks !
Forum: Themes and Templates
In reply to: [Twenty Seventeen] Can I disable the HUGE image on the 1st pageHello dajad,
You can hide image from theme customization.Navigate theme customization from Dashboard >> Appearance >> Customize.
Then click on Header Media option and click on Hide image button in Header Image option.Hope this will helps you.
Forum: Themes and Templates
In reply to: [Fruitful] Dynamic copyright year in custom footerHello deeveedee,
Find
if (!function_exists('fruitful_get_footer_text'))
into your current theme’s functions.php file and replace that whole function with below code.
if (!function_exists('fruitful_get_footer_text')) {
function fruitful_get_footer_text () {
echo '© '.date('Y').' MySite - All Rights Reserved';
}
}
Note : All Changes you done in funtions.php or other file are gone when you update theme. So prefer Child Theme
Hope this will helps you.
Forum: Themes and Templates
In reply to: [Hemingway] Removing TITLE from Static Front PageHello haddron,
Try below css.
body.home .post-content {
margin-top: -124px;
}
@media only screen and (max-width: 768px) {
body.home .post-content {
margin-top: -50px;
}
}
Hope this will helps you.
Forum: Themes and Templates
In reply to: [Storefront] Remove space between Top Bar and MenuHello pcukseller,
=> Put below css code into Additional CSS textarea (Dashboard >> Apperance >> Customize) then click on Save & Publish button.
=> If there is no Additional CSS option then put below css code into your current theme’s style.css file located at wp-content/themes/your_current_theme/ folder.
.site-header {
height: 77px;
}
.col-full {
top: -84px;
}
@media only screen and (max-width: 640px) {
.site-header {
height: auto;
}
.col-full {
top: 0;
}
}
Hope this will helps you
Forum: Themes and Templates
In reply to: [Hemingway] Removing TITLE from Static Front PageHello haddron,
=> Put below css code into Additional CSS textarea (Dashboard >> Apperance >> Customize) then click on Save & Publish button.
=> If there is no Additional CSS option then put below css code into your current theme’s style.css file located at wp-content/themes/your_current_theme/ folder.
body.home .post-header h1.post-title {
display: none;
}
Hope this will helps you.
Forum: Networking WordPress
In reply to: Invite friendsHello pcasciaro,
You can use Invite Friends to Register plugin ,and invite the friends.And below link to you can create multisite.
Hope this will helps you.