Viewing 17 posts - 1 through 17 (of 17 total)
  • Author
    Posts
  • #332423

    Hey,

    I just updated to 3.0.1 via FTP and now half of the site is blank. Here is a screenshot: Screenshot

    I already tried deleting the whole enfold folder and re-uploading. I downgraded to 3.0 again, I cleared the cache on the front- and backend, but nothing helped.

    thank you very much!

    kind regards,

    Julian

    • This topic was modified 10 years, 1 month ago by aIVIis.
    #333203

    Hey aIVIis!

    Can you post the link to your website please?
    Please also try to increase the allocated memory to 128M: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
    You can contact your service provider and they can do it for you.

    Regards,
    Yigit

    #333784
    This reply has been marked as private.
    #334002

    Hey!

    Can you please try re-updating the theme via FTP – http://vimeo.com/67209750
    make sure to overwrite all files

    Cheers!
    Yigit

    #334119

    Tried it. Didn’t change anything…

    What else could we do?

    #334294

    Hi!

    Just had a look at your site. The issue seems to be with the fullwidth slider. Everything else works fine. Tried disabling plugins to see if it fixes the issue but to no avail. I have tried to recreate the issue on my local install but couldn’t

    I am creating a bug report to get Kriesi to have look. Please forward us FTP administrative credentials to your site to help us troubleshoot the issue.

    Please check the “Set as private reply (Only you and moderators will see the content of this post)” option before posting any sensitive information.

    Cheers!
    Arvish

    #334399
    This reply has been marked as private.
    #334752

    Hi!

    Please remove the avia_register_frontend_scripts on the child theme’s functions.php. That should fix the issue. Why did you add that code? Note that prettyPhoto is no longer in use on Enfold 3.0.1. Remove browser and plugin cache then reload the page.

    Cheers!
    Ismael

    • This reply was modified 10 years, 1 month ago by Ismael.
    #335134

    Hey,

    I can see everything again, thank you very much!

    I have one remaining problem however. I added the avia_register_frontend_scripts to register some files like base.css in my child theme. After removing it those files aren’t working anymore.

    How can I register files like base.css or avia.js in the child theme without breaking the site again?

    thank you for the top support, I really appreciate it!

    regards,

    Julian

    #336528

    Hey Julian!

    Try with this code:

    function change_shortcodesjs() {
       wp_dequeue_style( 'avia-base' );
       wp_enqueue_style( 'avia-base-child', get_stylesheet_directory_uri().'/css/base.css ', array(), '2', 'all' );
    }
    if(!is_admin()){
    add_action( 'wp_enqueue_scripts', 'change_shortcodesjs', 100 );
    }
    

    Regards,
    Josue

    #336727
    This reply has been marked as private.
    #337134

    Hi!

    You have this code:

    .home_what_we_do_heading h2 {
    font-family: "Open Sans","OpenSans",Helvetica,Arial,Sans-serif;
    }

    Please remove it. Add the css customization on Quick CSS or custom.css file, not on style.css.

    Regards,
    Ismael

    #337314

    Hey Ismael,

    Did it, nothing changed. How is deleting that code supposed to change the font of all headings on the site?

    I am using a child theme. Aren’t I supposed to add the styles to the style.css in the child theme?

    Regards,

    Julian

    #337509

    Hi Julian!

    Here’s your problem – http://screencast.com/t/YYCPLgpUUS

    Cheers!
    Josue

    #337664

    Hey Josue,

    I hate to be a pain in the ass but the headings are still not the right font. I have selected Oswald in the general styling menu but all headings show Open Sans.

    For example the big headline with the class “home_img_headline” on top of the image. This dynamic_avia style should get applied:

    h1 {
    font-family: 'Oswald', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    }

    However, something overwrites it.

    I suspect there is a problem between the base.css and the dynamic_avia files. They both have styles for the headlines specified. Maybe registering the base.css in the child theme caused it to break:

    function change_shortcodesjs() {
       wp_dequeue_style( 'avia-base' );
       wp_enqueue_style( 'avia-base-child', get_stylesheet_directory_uri().'/css/base.css', array(), '2', 'all' );
    }
    if(!is_admin()){
    add_action( 'wp_enqueue_scripts', 'change_shortcodesjs', 100 );
    }

    If that was the problem, am I save to delete the font-family styles from my child-theme’s base.css?

    This is the last problem I am having. Could you please look into that one one more time?

    Sorry again for demanding so much of your valuable time.

    THX!

    Julian

    #337848

    Hi Julian!

    Should look fine now, i added this to style.css (child):

    h1, h2, h3, h4, h5, h6, #top .title_container .main-title, tr.pricing-row td, #top .portfolio-title, .callout .content-area, .avia-big-box .avia-innerbox, .av-special-font, .av-current-sort-title{font-family: 'Oswald', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;}
    

    Cheers!
    Josue

    #337935

    Hey Josue,

    Thx for the help! It works now!

    kind regard,

    Julian

Viewing 17 posts - 1 through 17 (of 17 total)
  • The topic ‘Site broken after update to 3.0.1’ is closed to new replies.