• Resolved xaviwp

    (@xaviwp)


    Hello, I need support for an error in the plugin, I have configured a divi page with the flipcard module of the plugin, from the backend it displays correctly, but from the frontend it displays badly.
    The error; sections and flipcards are stepped on from top to bottom.
    Sol managed to solve the display error after loading the page with the error and modifying the screen size or refreshing the screen with f5, but of course this is not presentable for users.
    Please give me support to solve this problem.,
    Thank you very much for your help.

    The page I need help with: [log in to see the link]

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author learnhowwp.com

    (@themeythemes)

    Hi,

    Can you please clarify what is the issue. The flip cards look fine.

    https://prntscr.com/13ptn9j

    Thread Starter xaviwp

    (@xaviwp)

    Hi,thanks for your support,
    I attach an image of the error on the front-end with google chrome incognito session,
    https://prnt.sc/13ptz9b

    In backend it is visualized well

    Thanks
    Xavier

    Plugin Author learnhowwp.com

    (@themeythemes)

    Can you please export the layout and share a link to download it.

    Thread Starter xaviwp

    (@xaviwp)

    Hi learnhowwp.com, thanks for your support,

    Ok, the url for download desing layout is:
    https://drive.google.com/file/d/1icYv-pe015xncteIeCB8jRvH9mBanewJ/view?usp=sharing

    this is a temporary url to manage this incident,

    I await your reply,

    Thank you very much for your help
    Xavier

    Plugin Author learnhowwp.com

    (@themeythemes)

    Add a new code module after all flip card modules on the page and then add the following code in the code module.

    <script>
     
      $(".lwp_divi_flipbox img").each(function(){
        $(this).on('load', function() {
          			//console.log($(this).attr('src'));
                let $flip_box_front = $(this).parents(".flip_box_front");
                $flip_box_front.height('auto');
                let $front_height = $flip_box_front.height();
                let $flip_box_back = $(this).parents(".flip_box_back");
                $flip_box_back.height('auto');
                let $back_height = $flip_box_back.height();
                let $front_outer_height = $flip_box_front.outerHeight();
                let $back_outer_height = $flip_box_back.outerHeight();
    
                if ($front_height > $back_height) {
                    $(this).parents(".flip_box").height($front_outer_height);
                    $flip_box_back.height($front_height);
                    $flip_box_front.height($front_height);
                } else {
                    $(this).parents(".flip_box").height($back_outer_height);
                    $flip_box_back.height($back_height);
                    $flip_box_front.height($back_height);
                }
        });
      });
      
    });
    	
    </script>
    Thread Starter xaviwp

    (@xaviwp)

    Hello, thank you very much,
    I have inserted code modules after each inverted card module, then I have entered the code in these code modules.
    Upon entering I found a different display than the previous one but still with some errors,
    I have updated the background color of the page and now it seems that it works well in private session, thank you very much for your help.

    Plugin Author learnhowwp.com

    (@themeythemes)

    The issue is fixed in the latest update of the plugin. You can update the plugin and remove the codes.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Flipcards display error on frontend’ is closed to new replies.