tenzinchoenyi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: updating PluginsHello,
you can try to contact the WordPress team directly: [ deleted, don’t do that again please ]
they will help you out with your problem.- This reply was modified 4 years, 9 months ago by Jan Dembowski.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Force Sells ExtensionHello @jmccrone,
You can add this following CSS code to display the message below the add to cart button.
.wc-force-sells{ position: absolute; top: 60px; }
Forum: Fixing WordPress
In reply to: How to Change Logo Size for Mobile OnlyHello
I am using media queries for the responsive website on any device such as a mobile, tablet, etc.
/* It means on screens that are 640px or less, set logo image width 50% and margin and padding auto means on center.*/ @media screen and (max-width: 640px){ .header-logo img { width:50%!important; margin:auto; padding:auto; } }
You can check on following links more about media queries.
https://www.w3schools.com/css/css_rwd_mediaqueries.asp
https://www.w3schools.com/css/css3_mediaqueries_ex.aspForum: Fixing WordPress
In reply to: How to Change Logo Size for Mobile OnlyHello, @mylifesaholiday
You can add this following CSS code to change your logo size on mobile.
@media screen and (max-width: 640px){ .header-logo img { width:50%!important; margin:auto; padding:auto; } }
- This reply was modified 5 years, 2 months ago by tenzinchoenyi.
Forum: Fixing WordPress
In reply to: Override/remove bottom margin – Google custom search boxtable .gstl_50 .gsc-input { margin: 0!important; }
- This reply was modified 5 years, 2 months ago by tenzinchoenyi.
- This reply was modified 5 years, 2 months ago by tenzinchoenyi.
Forum: Fixing WordPress
In reply to: Override/remove bottom margin – Google custom search boxHello @matsp
So you want to remove the bottom margin on that google search.
You can add the following CSS code.
table.gstl_50.gsc-input { margin: 0!important; }
- This reply was modified 5 years, 2 months ago by tenzinchoenyi.
Forum: Fixing WordPress
In reply to: how I can make a link in head section of header.php?Hello @johannes999
You can add this code in functions.php
function my_theme_enqueue_styles(){ wp_enqueue_style( 'foundation-css', get_template_directory_uri() . '/foundation.css', array(), "6.4.1", 'all' ); } add_action('wp_enqueue_scripts','my_theme_enqueue_styles');
Forum: Fixing WordPress
In reply to: How do I remove category and tag in woocommerce product page?Yes, there is a way to make images in same size but can you share me your website link to change the size.
Forum: Fixing WordPress
In reply to: How do I remove category and tag in woocommerce product page?If you want to remove category and tag in woocommerce product page then you use this following code in CSS
.product_meta{ display: none !important; }
Forum: Fixing WordPress
In reply to: How do I remove category and tag in woocommerce product page?Hello
Can you add the code below to your functions.php
/* Remove Categories from Single Products */ remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_meta', 40 );
or there is an alternative way to hide Category from WooCommerce Product Page.
Here is the code you can add in Customizer > Additional CSS:
.product_meta .posted_in {display: none !important;}
I think you are using the Ultimate Member Contact Form plugin. I don’t know about this plugin but I will share documentation link. plusplugins.com/ultimate-member-contact-form-documentation/
What theme are you using for this website?
Can you share a screenshot of your contact form setting?Forum: Fixing WordPress
In reply to: website URLHello
you need to buy domain otherwise you have to use their domain yoursitename-username.easywp.com- https://avigopaul-3a43ed.easywp.com/
I have share you link here in detail.
hope that help for you.