Karthick
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: I am getting afatal error after upgrading to PHP 8Hi.,
Please check if any mysql_ code is found in your theme or plugins. Else this might be a hosting side issue with the mysql extension.
Forum: Fixing WordPress
In reply to: Error on PagesHi @santoshc682
One of your Elementor addon is using deprecated code.
You need to disable your plugin one-by-one until you find the one that breaks your site.
When you find the plugin / Elementor addons, please contact the addon developers and ask them to update the way the are registering controls. The dev docs have more information about the Elementor deprecation process.
Forum: Fixing WordPress
In reply to: I am getting afatal error after upgrading to PHP 8Hi @brightblackafrica.,
By any chance if you have written any mysql_query in your theme or plugin, kindly update it to mysqli_ extensions. Since mysql_ is removed in php 8. Else you can remove the direct query and try to use WP_Query method which will not be affected by php version upgrades.
Hi Aron
Could you try updating the PHP version to 7.2 or higher to see if that helps?
Forum: Developing with WordPress
In reply to: Footer CSS@shantellel – Hope the following CSS will help you fix the points that you have mentioned.
– Change the footer from dark rose gold to #ba9590
.site-primary-footer-wrap[data-section="section-primary-footer-builder"] { background-color: #ba9590; }
– Change the font to Josefin Sans (normal)
footer .footer-widget-area-inner h2 { font-family: Josefin Sans; }
– Remove the Twitter and Youtube Icons
.ast-footer-social-wrap .ast-twitter, .ast-footer-social-1-wrap.ast-footer-social-wrap .ast-youtube { display: none;}
– Remove “makeup for all skins”
.footer-widget-area-inner.site-info-inner .textwidget p { display: none;}
Forum: Fixing WordPress
In reply to: White overlay on all product images@audrey09 – Happy to help always.
Forum: Fixing WordPress
In reply to: White overlay on all product imagesHi @audrey09,
Yes in your first post, the question was not clear.
I think you have image opacity set to 0.1 in your Elementor global theme styles.
If you inspect the logo image, you can see this CSS:
.elementor-kit-6021 img { opacity: 0.1; }
You can just set the default image opacity to 1 in your global settings or add this CSS:
.elementor-kit-6021 img { opacity: 1!important;}
Let me know if your issue resolves. Thanks.
Forum: Fixing WordPress
In reply to: White overlay on all product imagesHi @audrey09.,
Just paste the following css code by logging into WordPress Dashboard and navigating to Appearance > Customize > Additional CSS > Paste the below css code > Publish.
.home .ast-container article .elementor-background-overlay { display: none; }