gorgamel
Forum Replies Created
-
I have provided 2 images illustrating the “Cube” problem.
The taller object has the “Flip” effect set and seems to be redrawing correctly. The lower “Cube” has problems. This is most likely related to shadow rendering.
After changing the browser size from wide to narrow, for example, the navigation dots disappear because the shadow is generated too high (inside the image).
After forcing a refresh, the object redraws correctly.
Now I change the browser size from narrow to full screen.
“Flip” redraws correctly, and “Cube” is too high because the shadow is generated too low.Link:
View post on imgur.com
Good job
Some info from log (PHP):
PHP: 2025-06-06 18:21:15 [error X 26][/home/blabla/www/wp-content/plugins/elementor/includes/managers/elements.php::70] Uncaught TypeError: Elementor\Elements_Manager::create_element_instance(): Argument #1 ($element_data) must be of type array, bool given, called in /home/blabla/www/wp-content/plugins/responsive-addons-for-elementor/includes/widgets-manager/modules/query-control/class-module.php on line 598 and defined in /home/blabla/www/wp-content/plugins/elementor/includes/managers/elements.php:70
Stack trace:0 /home/blabla/www/wp-content/plugins/responsive-addons-for-elementor/includes/widgets-manager/modules/query-control/class-module.php(598): Elementor\Elements_Manager->create_element_instance(false)
1 /home/blabla/www/wp-includes/class-wp-hook.php(324): Responsive_Addons_For_Elementor\WidgetsManager\Modules\QueryControl\Module->rael_get_posts_by_terms(”)
2 /home/blabla/www/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(”, Array)
3 /home/blabla/www/wp-includes/plugin.php(517): WP_Hook->do_action(Array)
4 /home/blabla/www/wp-admin/admin-ajax.php(192): do_action(‘wp_ajax_rael_ge…’) 5 {main}
thrown [array (‘trace’ => ‘ 0: Elementor\Core\Logger\Manager -> shutdown()’,)]
And JS:
JS: 2025-06-06 16:42:52 [error X 2][https://blabla/wp-content/plugins/responsive-addons-for-elementor/assets/js/frontend/rael-frontend.js?ver=1.7.1:1:79064] t.find(…).offset() is undefined JS: 2025-06-06 17:16:55 [error X 1][https://blabla/wp-content/plugins/responsive-addons-for-elementor/assets/js/frontend/rael-frontend.js?ver=1.7.1:1:79072] Cannot read properties of undefined (reading ‘top’)
- This reply was modified 10 months, 3 weeks ago by gorgamel.
The “Media carousel” widget also behaves strangely. Especially when placed in a container with a specific width
I’ve found the problem: incorrect condition in render() function in class-responsive-addons-for-elementor-theme-post-navigation.php module
it is:
if ( isset( $settings[ ‘rael_’ . $post_type . ‘_taxonomy‘ ] ) )it should be:
if ( isset( $settings[ ‘rael_pn_’ . $post_type . ‘_taxonomy’ ] ) )
- This reply was modified 11 months, 1 week ago by gorgamel. Reason: missing char