webaissance
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Appointments] Appointmnet not workingThank you! The update fixed it! Thank you so much!! ??
Forum: Plugins
In reply to: [Easy Appointments] Appointmnet not workingOh – good to know! Thanks.
Let me know if you have any suggestions to fix the Javascript issue above
Forum: Plugins
In reply to: [Easy Appointments] Appointmnet not workingAlso – in the ea_appointments table – shouldn’t name, email and phone have values? They are all showing null. Thanks for your help.
Forum: Plugins
In reply to: [Easy Appointments] Appointmnet not workingYes – and it does seem related to this page.
Uncaught TypeError: Cannot read properties of undefined (reading ‘name’)
at n.eval (eval at template (underscore.min.js?ver=1.13.4:2:15198), :8:56)
at n.e (underscore.min.js?ver=1.13.4:2:15271)
at n.render (settings.prod.js?ver=3.12.5:703:40)
at settings.prod.js?ver=3.12.5:353:33
at Function.N (underscore.min.js?ver=1.13.4:2:9374)
at n.each (backbone.min.js?ver=1.5.0:2:1129)
at n.showRows (settings.prod.js?ver=3.12.5:342:29)
at p (backbone.min.js?ver=1.5.0:2:3758)
at f (backbone.min.js?ver=1.5.0:2:3497)
at a (backbone.min.js?ver=1.5.0:2:692)Forum: Plugins
In reply to: [Easy Appointments] Appointmnet not workingI am having the same issue – no appointments are showing – even though there should be several. Also – in the ea_appointments table – name, email and phone are all blank for all appointments. ??
Forum: Fixing WordPress
In reply to: WP 5.83 – 5.9 update – websites showing critical error@zanton THANK YOU! That did the trick!
Thank you!you need to copy wp-settings.php from WordPress.zip to your project
Thank you @tom5940 !!!
https://www.ads-software.com/plugins/enable-jquery-migrate-helper/ did the trick!
This will be very helpful until it is fixed.emranemranx – yes – the css can be added via the custom css section or via style.css of the child theme.
Other people have tried to change the default thumb image via code but were not successful. I had success using CSS and wanted to share so others can benefit.
Forum: Plugins
In reply to: [Portfolio Slideshow] Captions not showing upI’m glad to see this plugin being updated again!
But it is still broken in a number of places.
Here’s what I did to fix the captions issue:At the bottom of portfolio-slideshow\src\views\slides.php
before the last three lines at the bottom
</div>
<?php endforeach; ?>
</div>add this – and the title, excerpt and description will appear:
` <?php
$attachment = get_post( $slide[‘image’] );
$title = $attachment->post_title;
$exerpt = $attachment->post_excerpt;
$content = $attachment->post_content;
?>
<div class=”slideshow-meta”>
<p class=”slideshow-title”>
<?php echo sanitize_text_field( $title ); ?>
</p>
<p class=”slideshow-caption”>
<?php echo sanitize_text_field( $exerpt ); ?>
</p>
<div class=”slideshow-description”>
<?php echo sanitize_text_field( $content ); ?>
</div>
</div>