Md Imon Hossain
Forum Replies Created
-
Yes, Elementor don’t have option to make it the checkbox required. But if your using for “Acceptance” work like “I agree to terms and condition” like the you can use “Acceptance” one. For other work you can add this code website function file to make that field required. Make sure you took backup before do that action or do on Stage site. Better use Code Snippet or WPCode to add the code.
<?php function form_checkboxes_validation(){ ?> <script type="text/javascript"> (function($){ $("#send-request").click(function() { if(! $('input[name="form_fields[suite][]"]').is(':checked')) { alert("Please select at least one suite!"); return false; } }); })(jQuery); </script> <?php } add_action('wp_footer', 'form_checkboxes_validation');
Another solution: https://github.com/elementor/elementor/issues/1693#issuecomment-1482443352
Hello @renovomotors
PayPal “Pay Later” (Type: Loan) option will be available where PayPal support the geo-location/country. This button will work for all of those country where PayPal support “Pay Later”
For more details follow the link: https://developer.paypal.com/docs/checkout/payment-methods/
Forum: Themes and Templates
In reply to: [Astra] REMOVE THIS PAYMENT PICTURE? ADD NEWHello @renovomotors
You can “Disable Astra Payment Banner” from Astra customizer (might be in “Single Product WooCommerce”) or add this CSS line to your theme customizer custom CSS part.
.ast-single-product-payments { display: none; }
Thanks!
Please confirm that you selected this option under Elementor form:
“Collect Submission” – from “Action After Submit” in Elementor Form widget.
Hello @rubenmkda
First at all, you need to resize and compress all of your images. Do it manually & replace existing. Don’t reply on WordPress media editor to resize them. As of now I can see all the images on website can be compress up to 41% at least.
Optimization Result: https://prnt.sc/3tepiHVRDlxy
Use lazy-load to load image on viewpoint instead of loading them all without actually viewing the image part. Suggestion: Use Viewpoint Cons/Lazy Load
Second, you may saw that most of the bigger JS files are coming from google reCaptcha. I know you might be using that for spam protection but use any assets manager plugin to load specific plugin CSS & JS on specific page to reduce un-necessary CSS & JS load on pages where that plugin that used or have 0 usages. Example: Contact Page need reCaptcha JS to load but other page don’t.
Lighthouse Treemap: https://prnt.sc/XACM0cAUMwUN
Don’t combine all CSS and JS files if your website plugin have bigger size CSS & JS. If they small you can but if they big in size better don’t combine them into one as HTTP/2 can handle multiple request at same time unlike HTTP/1.
Reduce un-used CSS and JS. Same comment as mentioned for reCaptcha.
Use CDN like cloudflare, cloudfront or bunny to load website faster from cache.
Try to use LiteSpeed plugin instead of WP-Rocket as your web-hosting might be running on LiteSpeed Server.
Use OMGF / Host Google Font Locally to load font from locally instead of requesting Google to load font. Directly loading fonts from Google take time and load resources from 3rd party (Google Font).
Thanks!
- This reply was modified 1 year, 1 month ago by Md Imon Hossain. Reason: Forgot to add result screenshot
Hello @sergiu147
By looking at your design, I’m sure you will not find any plugin to make exact or similar to the design but you can do one thing you can create the design using the line image as background. But you will see the image alignment is not right no smaller device.
You have to set the image on background using object-fit or you can use Cover as position.
Thanks!
Hello @sdibakoane
As Elementor loading all the Icons from “Font Awesome” Icon pack and Font Awesome is free up to Font Awesome Version 4 and they don’t have Twitter -> “??” Logo in their Icon pack yet. So it’s like to not possible to add them but Elementor might get that logo added on their Icon repo using custom Icon in future.
In the mean time you can add Twitter new Logo “??” as custom SVG upload and you can download the “??” icon from flaticon.com (Simple) or you can add your own Font Awesome 5 CDN link to your website and use to show the “??” Icon.
<i class="fa-brands fa-x-twitter"></i>
Or you can add custom Icon to Elementor but you need Elementor Pro version to do that.
Thanks!
If you created Page Template the you can add those template on the page using Elementor Editor Mood.
Regardless you can use that template wherever you want. On Elementor Free plugin you can create those type of templates: Container, Landing Page, Section & saved section from Elementor Editor.
Add the templates on the page/post from here: https://prnt.sc/_wx359dkTp9w
- This reply was modified 1 year, 1 month ago by Md Imon Hossain.
Hello @renovomotors
Look like your website not able to send email notification from your hosting/server.
My suggestion will be use “WP Mail SMTP” plugin to configure your SMTP details and save changes.
The do a Test email SEND from “WP Mail SMTP” plugin. If you received correctly then you will receive contact form submission notification.
Thanks!
You can follow those step to fix this isse.
- Deactivate Elementor and reactivate
- Clean cache from your hosting file manager (wp-content>cache)
- Goto Elementor > Tools > “Regenerate CSS & Data” and Save changes
Forum: Plugins
In reply to: [Elementor Website Builder - More Than Just a Page Builder] Footer SpaceLook like your button are so left aligned. Most probably you have used a Position: Absolute. To fix this open Navigation > Mobile View > Select Button >
- Horizontal Orientation: Offset > Set to 0 or your prefer value
- Vertical Orientation: Offset > Set to 0 or your prefer value
All plugin comes with some update in terms of features, security improvement and fixing old bugs. And updating plugins & theme updates are helpful
So, it will be better if you take backup before you do update elementor as every websites don’t have same plugin and Elementor can conflict with other plugins. So it will better to keep backup then update.
Thank you!