saurabh.dhariwal
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Storefront] Remove “Add to Cart” buttonHello javaman1,
Try below css code.
button[name="add-to-cart"] { display: none; }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Checathlon] Hide title in front-pageHello gnujach,
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
.home .page-title { display: none; }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Sela] change hover color of submenu dropdown@jodibug79 If this solution worked, can you please mark it as resolved.
Forum: Fixing WordPress
In reply to: Adding Multiple Shipping Addresses on BackendHello dovroc,
You can use below paid plugins for your requirement.
1) YITH Multiple Shipping Addresses for WooCommerce
2) Shipping Multiple AddressesHope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Sela] change hover color of submenu dropdownTry below css code.
.main-navigation ul ul li a:hover, .main-navigation ul ul li.focus a{ color: #11a49e; }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Vega] Changing the font size in the 4-column sectionHello oleggordeev,
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-icon .icon { font-size: 15px; } .content-icon .title { font-size: 15px; } .content-icon .body p { line-height:20px !important; font-size:13px !important; }
Hope this will helps you.
Thanks.
Forum: Fixing WordPress
In reply to: Display HTML at specific URL via my own pluginHello speedy_snail,
WordPress provide shortcode functionality. You can create your own shortcode and put it any page to show you shortcode content.
Check below example for creating shortcode :
/** Html Code **/ function my_html_code_fun( $atts ) { $html = '<div>'; $html .= '<p>Hello World</p>'; $html = '</div>'; return $html; } /** Create Shortcode **/ add_shortcode( 'my_html_code', 'my_html_code_fun' );
Now you have to add
[my_html_code]
shortcode in page’s/post’s editor & save page/post.You can add above code in your plugin.
Check link for other info about shortcode.
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Bootstrap Blog] Child Themes DO NOT workHello @webbva,
This issue is occurs because class-demo.php & demo.php files not found in child theme. To solve this copy inc folder from parent theme to child theme. class-demo.php & demo.php files located into inc/demo directory, so you need only demo directory in inc directory.
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Fukasawa] Set number of postsHello jeroen76,
Follow below steps:
1. Login as admin and navigate to Dashboard >> Settings >> Reading
2. Set number in Blog pages show at most option.Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [OceanWP] Change The Continue Reading TextHello marv2,
Add below php code into your current active child theme’s functions.php file or you can use Code Snippets plugin for use below php code.
add_filter( 'ocean_post_readmore_link_text', 'change_read_more_text' ); function change_read_more_text() { return __( 'Read More', 'oceanwp' ); }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Sela] change hover color of submenu dropdownHello jodibug79,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
.main-navigation ul ul li:hover, .main-navigation ul ul li.focus { background: #54ffe1; }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Twenty Seventeen] Menu bar on mobileHello karlglenn,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
.has-header-image.twentyseventeen-front-page .custom-header { height: 40vh; }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Versal] How to custom css fileHello @dovanson1991,
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 .eightcol { width: 60% } .single-post .fourcol { width: 40% }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Avior] Change header image fadeHello webmastir,
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-main { background: transparent; }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Argent] Standardize Header Image SizesHello tknofile,
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-branding { padding: 7.75em 0; }
Hope this will helps you.
Thanks.