Anil Ankola
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: css of selectorsHello @sacconi,
Use this css.sacconi_form select { width: 100%; margin: 0px 0px 10px; padding: 5px; background: #fff; border: none; color: #289dcc; font-weight: 600; } .sacconi_form { padding: 25px; } #block-2 .sacconi_form input[type="submit"] { margin: 0px 0px 10px; width: 100%; }
Forum: Everything else WordPress
In reply to: Homepage is blockedHello @ihresattelanpassung,
Your website SSL Certificate is expired.
Renew SSL Certificate.
Currect SSL Validity
Not Before : Wed, 06 Dec 2023 12:53:42 GMT
Not After : Tue, 05 Mar 2024 12:53:41 GMTForum: Developing with WordPress
In reply to: Remove white space on right side of mobileHello
A horizontal scroll line appears in footer, it seems so.
Please add this code in CSS and remove the horizontal scroll your website..main-wrapper { width: 100%; overflow: hidden; }
Forum: Fixing WordPress
In reply to: Auto Updates Disabled….Hi @binarywc,
add code in config.php
define( 'WP_AUTO_UPDATE_CORE', false );
After putting this code it will not able to automatic updated wordpress
Forum: Fixing WordPress
In reply to: 403 – Forbidden on contactpageHi,
Please first set and save permalink in setting option and then check contact page
Forum: Developing with WordPress
In reply to: submenu items lookHi,
Please add CSS code in your style.css file
.testata ul > li > ul { min-width: 180px; box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.05); padding: 0px; border: 1px solid #289CCB; background: #fff; } .testata ul > li > ul > li { padding: 0px; display: block; width: 100%; text-align: left; } .testata ul > li > ul > li > a { padding: 10px; width: 100%; display: block; border-bottom: 1px solid #289CCB; text-decoration: none; } .testata ul > li > ul > li:last-child > a { border-bottom: none; } .testata ul > li > ul > li > a:hover { text-decoration: none; }
Hi,
Please use ACF plugin and then create option and set rules Taxonomy == Category(product_cat). and select image for product category via custom field option.
Product archive page code :
if(is_product_category()) { $queried_object_term = get_queried_object(); } else { $queried_object_term = wc_get_page_id('shop'); } $banner_image = get_field('banner_image ',$queried_object_term); echo '<img src="'.esc_url($banner_image,'your-text-domain').'" />';
Forum: Fixing WordPress
In reply to: Adjusting image sizesHi,
Please add css in your theme
figure img { width: 100% !important; height: auto !important; border-radius: 0 !important; object-fit: unset !important;}
Forum: Fixing WordPress
In reply to: Fix form fields select bigger than other fieldsHi @mrwolfap,
Please add css in your theme
.elementor-select-wrapper #form-field-interest { padding: 0px 14px !important; }
Thank You
Forum: Everything else WordPress
In reply to: email is in email log but not received by customersHi
install “wp mail smtp” plugin and configure.
Plugin Link : https://www.ads-software.com/plugins/wp-mail-smtp/
Plugin Setting Documentation : https://wpmailsmtp.com/docs/how-to-set-up-the-gmail-mailer-in-wp-mail-smtpThank you,
Forum: Everything else WordPress
In reply to: Can’t change Administration Email Addresshi,
login the database and find the “wp_options” table and change the “option_value” your Administration Email
Forum: Everything else WordPress
In reply to: Change Admin EmailHi @catmhart95
install “wp mail smtp” plugin and configure after changes email send wordpress new admin email
Plugin Link : https://www.ads-software.com/plugins/wp-mail-smtp/
Plugin Setting Documentation : https://wpmailsmtp.com/docs/how-to-set-up-the-gmail-mailer-in-wp-mail-smtpThank you,
Forum: Everything else WordPress
In reply to: feature imagesYour homepage featured image 1200px is fine, but just update the homepage featured image CSS smaller.
body.home #post-23 .post-thumbnail > img { width: 100%; height: auto; }
This CSS code put in CSS file and this code desktop and all mobile devices work.
Forum: Everything else WordPress
In reply to: dropdown menu remove button + –Hi,
Find style.css file in theme folder and put below css code.
CSS File Location : wp-content/themes/twentytwentyone/style.css
CSS Code :header nav ul > li .sub-menu-toggle {
display: none;
}Thank you,
Forum: Developing with WordPress
In reply to: Multi Language WebsiteThankyou @threadi