-
AuthorPosts
-
October 8, 2014 at 2:32 pm #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.
October 9, 2014 at 1:53 pm #333203Hey 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,
YigitOctober 10, 2014 at 10:45 am #333784This reply has been marked as private.October 10, 2014 at 6:13 pm #334002Hey!
Can you please try re-updating the theme via FTP – http://vimeo.com/67209750
make sure to overwrite all filesCheers!
YigitOctober 11, 2014 at 12:08 am #334119Tried it. Didn’t change anything…
What else could we do?
October 11, 2014 at 12:22 pm #334294Hi!
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!
ArvishOctober 11, 2014 at 9:59 pm #334399This reply has been marked as private.October 13, 2014 at 10:06 am #334752Hi!
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.
October 13, 2014 at 7:41 pm #335134Hey,
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
October 16, 2014 at 5:30 am #336528Hey 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,
JosueOctober 16, 2014 at 12:44 pm #336727This reply has been marked as private.October 17, 2014 at 4:59 am #337134Hi!
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,
IsmaelOctober 17, 2014 at 2:01 pm #337314Hey 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
October 17, 2014 at 8:12 pm #337509October 18, 2014 at 11:28 am #337664Hey 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
October 19, 2014 at 5:09 am #337848Hi 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!
JosueOctober 19, 2014 at 11:47 am #337935Hey Josue,
Thx for the help! It works now!
kind regard,
Julian
-
AuthorPosts
- The topic ‘Site broken after update to 3.0.1’ is closed to new replies.