Mahafuz
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: move top bar menuHey geront,
I think I can help, could you please mention the site link? So I can write the css for you.Forum: Fixing WordPress
In reply to: Add a border IF there are products inside of wishlistHey jazzu,
You can add a few lines of jquery to check if the span tag contains any number inside of it and if there is no number then add a class border-none.
You can simply use this jquery codes to check and add the class.
var wishList = $('.wishlist_products_counter_number'); if ( wishList.text() === '' ) { wishList.addClass( 'no-border' ) }
After that, you can simply add this one of line CSS code to hide the border for an empty span.
.wishlist_products_counter_number.no-border { border: 0px solid; }
You can just simply add the codes that I’ve mentioned above. Hopefully, this will give you the solution you want.
Thanks Best
MahafuzForum: Fixing WordPress
In reply to: How to stop duplicate Email addys in WPFormsHey jamesgster,
I’m not sure if this is gonna help you but I think you can try enabling the email confirmation in your form? So hopefully It’ll need user email confirmation for each entry.See the screenshot If you can’t find the setting https://prnt.sc/1zoenuw
Again sorry If I didn’t understand your actual problem but tried to help you out.
Thanks best.
Forum: Fixing WordPress
In reply to: Forbidden error cant access my admin panelHi qasimyousaf57,
Did you check that your site didn’t go to the maintenance mode?
Since you’ve said that the error caused while you were updating plugins.Hi @wordpresser001
Add this CSS, this should work.elementor-975 .elementor-element.elementor-element-94ced69 .eael-contact-form {
margin: 10px auto !important;
}Forum: Plugins
In reply to: [Contact Form 7] ‘messages’ Tab how to change colour of text?My pleasure!! ??
Forum: Plugins
In reply to: [Contact Form 7] ‘messages’ Tab how to change colour of text?Do you want to change the color of those invalid messages? which shows up when the required field submit with the empty value?
If it is then you can use these lines of CSS codes. It’s going to change those invalid messages color into white.
form.wpcf7-form span.wpcf7-not-valid-tip {
color: #fff;
margin-bottom: 10px;
padding: 5px;
}