Okay
  Public Ticket #1484673
all inner page displays blank unless we scroll down
Closed

Comments

  •  2
    mo started the conversation

    Hi,

    Our EPIC theme install requires to scroll down before any content on pages is loaded otherwise it displays a blank page – We need to remove this feature but couldn’t find any setting through the wordpress settings

    Every page other than homepage we need to trigger a scroll action to reveal the content

    can you please help us to deactivate this feature as its not suitable for thin content pages – we want the content to load immediately without an scroll down action.

  •  840
    Jelly replied

    Hello,

    Unfortunately, there is no a built-in option to do that.

    But you can go to /themes/epic-jellythemes/js/default.js:117 and comment $('.jt_row').bind(. Then add this at the end style.css or to Appearance > Customize > Additional CSS:

    .jt_row { opacity: 1 !important; }

    Best Regards,
    Jelly Team

  •  2
    mo replied

    Ok so to confirm we need to comment out the entire row 117 in default.js or the entire statement ? If entire statement then please paste here th full statement to comment out.


    And then add the following CSS ?

    .jt_row { opacity: 1 !important; }
  •  840
    Jelly replied

    Comment this one:

    $('.jt_row').bind('inview', function(event, visible) {
                if (visible === true) {
                    $(this).addClass('visible');
                }
            });

    Yes.

    Best Regards,
    Jelly Team

  •   mo replied privately
  •   mo replied privately
  •  840
    Jelly replied

    Hello,

    Could you please provide wp-admin login/password as a private message?

    Best Regards,
    Jelly Team

  •   mo replied privately
  •  840
    Jelly replied

    I've made some changes. Please check.

    Best Regards,
    Jelly Team