echobrin
Forum Replies Created
-
Thanks for this suggestion — deleting and reinstalling seems to have worked!
I found the setting to load scripts only on specific pages and so far this seems to have fixed the issue. I was worried this would cause PMS not to recognize whether a logged in person has permissions to buy certain tickets in Event Espresso if it’s not running scripts on the EE pages, but it seems to be working.
Here is the list of installed plugins and an entry from the error log. This was the only error that I found in the log from when the issue occurred.
https://snipboard.io/40bYMk.jpg
https://snipboard.io/LqQA3k.jpg
https://snipboard.io/BLgY7G.jpg
https://snipboard.io/TGRghl.jpg
https://snipboard.io/qtmX31.jpg
https://snipboard.io/lVugFX.jpg[13-Oct-2025 12:07:39 UTC] WordPress database error Not unique table/alias: ‘wp_esp_datetime’ for query SELECT SQL_CALC_FOUND_ROWS wp_posts., wp_esp_datetime. , MIN( wp_esp_datetime.DTT_EVT_start ) as event_start_date
FROM wp_posts INNER JOIN wp_esp_datetime ON ( wp_posts.ID = wp_esp_datetime.EVT_ID ) INNER JOIN wp_esp_datetime_ticket AS Datetime_Ticket ON ( Datetime_Ticket.DTT_ID = wp_esp_datetime.DTT_ID ) INNER JOIN wp_esp_ticket AS Ticket ON ( Datetime_Ticket.TKT_ID=Ticket.TKT_ID ) INNER JOIN wp_esp_datetime ON ( wp_posts.ID = wp_esp_datetime.EVT_ID ) INNER JOIN wp_esp_datetime_ticket AS Datetime_Ticket ON ( Datetime_Ticket.DTT_ID=wp_esp_datetime.DTT_ID ) INNER JOIN wp_esp_ticket AS Ticket ON ( Datetime_Ticket.TKT_ID=Ticket.TKT_ID )
WHERE 1=1 AND ((wp_posts.post_type = ‘espresso_events’ AND (wp_posts.post_status = ‘publish’ OR wp_posts.post_status = ‘cancelled’ OR wp_posts.post_status = ‘postponed’ OR wp_posts.post_status = ‘sold_out’ OR wp_posts.post_status = ‘active’ OR wp_posts.post_status = ‘inactive’ OR wp_posts.post_status = ‘expired’
OR wp_posts.post_status = ‘private’))) AND wp_esp_datetime.DTT_EVT_end > ‘2025-10-13 12:07:39’ AND wp_esp_datetime.DTT_deleted = 0 AND Ticket.TKT_end_date > “2025-10-13 12:07:39” AND Ticket.TKT_deleted=0
GROUP BY wp_posts.ID
ORDER BY event_start_date ASC
LIMIT 0, 10 made by require(‘wp-blog-header.php’), require_once(‘wp-includes/template-loader.php’), include(‘/themes/empowerwp-pro/page.php’), get_template_part, locate_template, load_template, require(‘/themes/empowerwp-pro/template-parts/content-page.php’), the_content, apply_filters(‘the_content’), WP_Hook->apply_filters, do_shortcode, preg_replace_callback, do_shortcode_tag, EventEspresso\core\services\shortcodes\EspressoShortcode->processShortcodeCallback, EventEspresso\core\services\shortcodes\EspressoShortcode->shortcodeContent, EventEspresso\core\services\cache\BasicCacheManager->get, EventEspresso\core\services\shortcodes\EspressoShortcode->EventEspresso\core\services\shortcodes{closure}, EventEspresso\core\domain\entities\shortcodes\EspressoEvents->processShortcode, EventEspresso\core\domain\services\wp_queries\EventListQuery->__construct, WP_Query->__construct, WP_Query->query, WP_Query->get_postsThanks. I’m just not sure how the person uploaded an image without having it associated to their listing. I tried adding a test listing with an image, and it worked as expected for me. For this person, there was no image on their listing, yet somehow there was an image in the media library that they had uploaded. There’s no other way for them to access the media library other than uploading through their listing.
This has only happened once so I’m hoping it was just a one-time glitch.
Thanks for your reply. I figured out what I did. Apparently at some point in the past I hid that option with CSS. I undid that and it’s working fine now.
Thank you, I did contact Petfinder about that. I also found Petfinder’s new responsive embeddable pet list which actually would work fine for our purposes.
Thanks for your reply. I turned on debug and got the rate limit exceeded error. The timing I guess was coincidental that it happened right after I switched the site to use https. I changed the count to 50 and also enabled caching. After my daily usage reset, pets are displaying again.
Forum: Plugins
In reply to: [Qyrr - simply and modern QR-Code creation] Doesn’t workJust a follow up in case it helps someone else — you have to type something into the size field even though it looks like it is already set to 400px.
Forum: Plugins
In reply to: [Qyrr - simply and modern QR-Code creation] Doesn’t workThis is marked as resolved — can you share what the resolution was? I’m also not seeing an image. Or if you can direct me to a tutorial, maybe I’m missing something simple.
Forum: Plugins
In reply to: [Quick Paypal Payments] change “from” emailThanks. I changed the WordPress admin email to one that uses the site domain and now the payment notifications are being delivered.
Forum: Themes and Templates
In reply to: [Poseidon] use full width template for custom post typesForgot to mention – replace wpdmpro with the name of your custom post type (example is for WordPress Download Manager).
Forum: Themes and Templates
In reply to: [Poseidon] use full width template for custom post typesI figured this out — hope it helps someone.
1. Copy single.php to your child theme
2. Rename it single-wpdmpro.php
3. Add fullwidth-content-area class
4. Remove the line that calls the sidebar.Here’s the code.
<?php /** * The template for displaying all single posts. * * @package Poseidon */ get_header(); ?> <section id="primary" class="fullwidth-content-area content-area"> <main id="main" class="site-main" role="main"> <?php while ( have_posts() ) : the_post(); get_template_part( 'template-parts/content', 'single' ); poseidon_related_posts(); comments_template(); endwhile; ?> </main><!-- #main --> </section><!-- #primary --> <?php get_footer(); ?>Solved – I found the Labels Edit add-on.
Forum: Plugins
In reply to: [Event List] strip html tags from detailsThanks for your reply. The details output appears in sc_event-list.php but I couldn’t figure out where to apply the strip_tags function. We ended up using collapse details instead, and that seems to have solved our particular problem.