crawfocl
Forum Replies Created
-
Forum: Plugins
In reply to: [Max Mega Menu] Change order of grid items in mobile?Thanks. I ended up making a duplicate menu and used the responsive settings in Elementor to show/hide the right menu at different breakpoints.
Actually, both goals seem to be achievable with the custom callback function option. That lets me pull the options automatically from ACF, with their numerical values. I think that does the trick.
Thank you. We are using Elementor and Elementor Pro, as well as Elementor Header & Footer Builder. The PHP version is 8.0.28. WordPress core is up to date, as well as all plugins and the theme.
Additional update: when I roll back to version 2.9.39, the conflict goes away. It appears in versions 3.0.0 and later. I believe that something was introduced in 3.0.0 that causes a conflict with Elementor and Elementor Pro when the user is logged in as an admin. Again, this happens on the default WP theme with all other plugins disabled. Thanks.
Update: the error only occurs when I’m logged in to the WordPress site. If I’m logged out and viewing as a regular visitor, the conflict doesn’t occur.
Forum: Plugins
In reply to: [Quiz Maker] “See Result” button appears before answer feedbackThanks for the quick response. I find it to be a very strange display choice for quizzes with multiple questions on one page, since the feedback displays right under all the rest of the questions, and only for the last one does it get interrupted by the button (since the others don’t have buttons). It seems disruptive. But I appreciate you letting me know that it was designed that way on purpose. It’s just too bad it can’t be changed.
Forum: Plugins
In reply to: [Quiz Maker] “See Result” button appears before answer feedbackThank you. The page is https://pfas-exchange.org/sample-quiz/, the Quiz Maker version is 6.4.0.8, and a screenshot is at https://imgur.com/2TpsRLq.
Thanks for the quick response. It would be great if this could be added as a capability for this plugin. Thanks.
Forum: Plugins
In reply to: [Quiz Maker] Answer feedback for Checkbox (Multiple) questionsThanks for the quick response. It’s too bad that this isn’t possible, as not having feedback for those kinds of questions really interrupts the flow of the quiz for the user. I hope this will be added in a future version of the plugin.
Never mind, I was able to achieve this with CSS.
Forum: Plugins
In reply to: [The Events Calendar Shortcode & Block] PaginationThanks for the quick response. I had seen that as part of the pro version, but I was looking for a solution that would let you page through multiple pages, not just previous and next. In the end I ended up writing my own shortcodes to do it and included WP PageNavi in the shortcodes.
Forum: Plugins
In reply to: [WP-PageNavi] Usage with The Events Calendar v2For anyone else who is trying to do this, I got this to work more or less for me. Put this in your appropriate v2 nav.php template file. This example would be for past events but you can edit as needed.
$my_query = new WP_Query( array( 'post_type' => 'tribe_events',//Display only event post types 'eventDisplay' => 'custom',//Needed to override tribe's modifications to the WP_Query 'order' => 'ASC',//Order events by the ones closest to today first 'orderby' => '_EventStartDate',//Order events using their start date 'paged' => get_query_var('paged'), 'meta_query' => array( array( 'key' => '_EventStartDate',//Compare using the event's start date 'value' => date('Y-m-d H:i:s'),//Compare against today's date 'compare' => '<=',//Get events that are set to the value's date or in the future 'type' => 'DATE'//This is a date query ) ) ) ); if(function_exists('wp_pagenavi')) { wp_pagenavi( array( 'query' => $my_query ) ); } wp_reset_postdata();
Forum: Plugins
In reply to: [WP Video Lightbox] Auto-thumbnail won’t updateThanks for the reply. As I said, I already cleared the browser cache and it did not help. There is no cache plugin installed on the site.
It actually may be a YouTube problem. I can switch to a custom thumbnail, and I thought they saved, but they are not showing up correctly in the YouTube Video Manager. I guess there’s nothing I can do if YouTube doesn’t manage the thumbnails correctly.
I would use a custom anchor image through the plugin, but I would like to keep the red YouTube play button overlay, and the plugin doesn’t seem to use that.
- This reply was modified 5 years, 11 months ago by crawfocl.
Thanks so much.
Forum: Plugins
In reply to: [BuddyPress Pending Activations] Send e-mail to user upon approval?Actually, I found this code snippet which solves the problem, in conjunction with this plugin: