Forum Replies Created
-
AuthorPosts
-
Hey!
The css styles should change if you re-save the Enfold theme options. If it doesn’t work Enfold can’t regenerate the dynamic stylesheet. Please use a ftp client and connect to your server. Navigate to wp-content/uploads/dynamic_avia/ and set the folder permission to 777. Then delete the enfold.css file inside the dynamic_avia folder and go to Enfold > Theme Options to regenerate the dynamic stylesheet (hit the green “Save all changes” button).
Regards,
PeterHi ullastret!
It works now. I had to set a blog & homepage for the Spanish website too.
Best regards,
PeterMay 22, 2014 at 7:05 am in reply to: Masonry Gallery not loading more images on translated pages (WPML) #268445Hi tidusuper91!
Please create us an admin account and post the login credentials as private reply – we’ll check the configuration.
Best regards,
PeterHi!
Yes correct. The filter will be used to manipulate the default data located in meta.php.
Cheers!
PeterHi!
Please try to increase the allocated memory to 128M – insert this code into the wp-config.php file:
define('WP_MEMORY_LIMIT', '128M');
For more information see: http://www.wpbeginner.com/wp-tutorials/fix-wordpress-memory-exhausted-error-increase-php-memory/
If the memory increase does not fix the issue try to follow the troubleshooting guide here: http://www.wpbeginner.com/wp-tutorials/how-to-fix-image-upload-issue-in-wordpress/
Best regards,
PeterHi!
Glad you found the solution ;)
Best regards,
PeterHi IkarusDev!
Please update WP to 3.9.1, the theme to version 2.7.1 (you’re using 2.6.2) and check if the update solves the issue. I recommend to use ftp: https://vimeo.com/channels/aviathemes/67209750 for the update.
Cheers!
PeterHi travtex!
Please refer to https://kriesi.at/support/topic/overriding-functions-in-a-child-theme/
Regards,
PeterHi fjd12265!
No, we’ve not received many reports regarding performance issues. Maybe a handful of users reported problems with the performance (mainly because of the limited server php memory like here: https://kriesi.at/support/topic/memory-usage/ and afaik another user switched the host because the server didn’t support sessions) but given the fact Enfold sold nearly 28,700 times these reports are insignificant. We do our best to make the code as efficient as possible and if we find performance issues we fix them immediately. If your host makes troubles when you use Enfold I recommend to switch to a different (better) hosting provider because at the moment we’re not aware of any performance issues with the theme and we’re not working on a “performance” update.
Best regards,
PeterHey!
Great, glad you found a solution.
Best regards,
PeterMay 21, 2014 at 9:19 am in reply to: Custom Facebook Feed 1.9.8 plugin breaks AVIA layout builder #267857Hey!
Also refer to http://wordpress.org/support/topic/latest-update-seems-to-break-wordpress-image-editing which indicates that other users experience similar problems. I’ll close this thread now as the third party plugin conflict is beyond the scope of our support forum anyway.
Best regards,
PeterMay 21, 2014 at 9:17 am in reply to: Custom Facebook Feed 1.9.8 plugin breaks AVIA layout builder #267856Hi adrianwackernah!
I’m not familiar with this plugin but if it worked before it’s probably a plugin code error. The only suggestion I can give you is to contact the plugin author and to ask him for help.
Best regards,
PeterHey!
It seems to work now. I can see the “OTHER CUSTOMERS” grid.
Cheers!
PeterHey mediadivision!
Right now we don’t have plans to add additional options to the theme options page but you can use filters to change the font configuration. Just place this code into your child theme functions.php file:
add_filter( 'avf_google_heading_font', 'avia_add_heading_font'); function avia_add_heading_font($fonts) { $fonts['Roboto'] = 'Roboto:400,900italic'; return $fonts; } add_filter( 'avf_google_content_font', 'avia_add_content_font'); function avia_add_content_font($fonts) { $fonts['Roboto'] = 'Roboto:400,900italic'; return $fonts; }
and instead of $fonts[‘Roboto’] = ‘Roboto:400,900italic’; insert the font(s) you want to change. You can actually just copy the font code from register-backend-google-fonts.php. The child theme functions.php is update safe and you just need to write the code one time.
Regards,
PeterMay 21, 2014 at 9:04 am in reply to: Making accordion slider blog headings bold and slightly larger #267849Hey!
Open up wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_accordion.php and replace:
$output .= !empty($slide->post_excerpt) && !empty($this->config['excerpt']) ? "<div class='aviaccordion-excerpt' {$markup_content}>".wpautop($slide->post_excerpt)."</div>" : "";
with
!empty($slide->post_excerpt) avia_backend_truncate($slide->post_excerpt, 60, " ", "…", true, ''); $output .= !empty($slide->post_excerpt) && !empty($this->config['excerpt']) ? "<div class='aviaccordion-excerpt' {$markup_content}>".wpautop($slide->post_excerpt)."</div>" : "";
and replace 60 with the number of characters you want to show in the excerpt text.
Best regards,
PeterHey!
Yes, unfortunately color sections are “fullwidth” elements and don’t work with sidebars. If you add a color section (or any other fullwidth element like a fullwidth slider) to the page content the sidebar will be displayed after the last color section/fullwidth element. You can add some other elements (non fullwidth elements like textblocks, etc.) after the last color section – they will be displayed on the left/right side of the sidebar.
Regards,
PeterMay 21, 2014 at 8:52 am in reply to: How to solve problem with pixelated phrase titles in the slider image? #267845Hi!
No, the color section is a different layout element and you can’t use it with the fullsize slider. If you want to use the fullsize slider try to upload the images without text and then use the caption field: http://www.clipular.com/c/4517275432386560.png?k=K1irCtRM5LpYNCfcsjjnoQ7DEB4
Also make sure that the image size option is set to: “No Scaling (Original Width X Original Height)”: http://www.clipular.com/c/5676108074713088.png?k=U4hE-J4f8ArNGy6onVW3VH8m5_8
Best regards,
PeterHey!
The url ( http://192.185.4.114/~castweb/about/leaders/eldersold/ ) gives me a 404 error. I’ll try to reproduce the issue on my local test servers and to debug the code. Please activate the debug mode of the template builder ( http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/ ) and post the template builder data from the debug field here. You can use the “Code” button or backticks ` to mark your text as code.
Cheers!
PeterHi!
Can you please check the login credentials – when I try to use them I get an error message (ERROR: Invalid Email.).
To change the color of the cart link use some css code – insert it tinto the quick css field or child theme style.css file:
#top .header_color .cart_dropdown_first .cart_dropdown_link { color: #333333; }
If you want to change the hover color too you can use this code:
#top .header_color .cart_dropdown_first .cart_dropdown_link:hover { color: #ff0000; }
Regards,
PeterMay 21, 2014 at 8:28 am in reply to: Single Page Menu / Organizing Portfolio Order Display / Shadows on Fonts #267834Hi!
1) For some reason I cant see the new “accordion” slider for posts that was just added or the ability to change the header fonts and mouse over color changes /big menus
Please create us an admin account and post the login credentials as private reply – we need to check the configuration.
2) I got the white background behind the text but cant get it to line up with the person next to it. (under the Team section).
It seems like you use a div inside the textbox with a negative margin-top value ( margin-top: -7px;). Change it to margin-top: 1px; and the textbox should align with the image on the left side.
3) In the portfolio items the images are not showing up properly (cropping is bad as is resolution) – also I want the main image when the ajax portfolio opens to be the video – not on the side where it is currently located and not the picture – how do I set that up?
You can set the thumbnail size on the portfolio grid option screen: http://www.clipular.com/c/6312518410567680.png?k=YmUJBA7SpdYTKS5xx8ur4nIDQXc
If you want more control over the preview content (i.e. to embed a video) you can select the “Don’t show the images at all and display the preview text only” option: http://www.clipular.com/c/6453051829256192.png?k=5TIdSdjsRn87CQytVuQeUU4899A – then use the textbox below to insert the video shortcode, etc. You can also combine the column shortcodes with the video, gallery, etc. shortcodes to build more complex layouts.
4) The text shadow seems to work for me.
5) You can generate a twitter widget here: https://twitter.com/settings/widgets – then copy/paste the code into a textwidget and place this widget into the footer or sidebar.
Cheers!
PeterHi Imburr!
Open up wp-content/themes/enfold/js/prettyPhoto/js/jquery.prettyPhoto.js and try to replace:
http://www.youtube.com/embed/
with
https://www.youtube.com/embed/
Regards,
PeterHi Jorge!
Please give us more details – which error message do you get?
Regards,
PeterHi!
No but you can try to limit the width of the grid with css code – insert it into the child theme style.css file or quick css file:
.main_color .av-masonry { margin: auto; max-width: 1200px; }
You can replace 1200 with any other custom width value – i.e. the width of the page content (1210px).
You can also try the tiled gallery plugin which comes with Jetpack: http://jetpack.me/support/tiled-galleries/ – a standalone version can be found here: https://wordpress.org/plugins/tiled-gallery-carousel-without-jetpack/
Regards,
PeterHey elale82!
No, you can’t use tags to filter portfolio categories without customizing the theme files. Depending on your coding skills you can write a custom version of wp-content/themes/enfold/taxonomy-portfolio_entries.php or hire a developer who can help you.
Cheers!
PeterHi!
You can try to limit the width of the grid with css code – insert it into the child theme style.css file or quick css file:
.main_color .av-masonry { margin: auto; max-width: 1200px; }
You can replace 1200 with any other custom width value.
Cheers!
PeterMay 21, 2014 at 7:46 am in reply to: Error fetching content – please reload the page and try again #267819Hi!
The login credentials you posted here: https://kriesi.at/support/topic/error-fetching-content-please-reload-the-page-and-try-again/#post-266888 don’t work for me. I couldn’t reproduce the issue on my test servers but I’ll ask Kriesi to look into it. For now I recommend to use Chrome or Firefox if these browsers work for you without any problems.
Best regards,
PeterMay 21, 2014 at 7:41 am in reply to: Decrease padding and space between page content elements when using Avia layout #267814Hey!
Insert this code into the quick css field and decrease the margin value if necessary:
.av_promobox { margin: 30px 0; }
Best regards,
PeterHi!
Please try to increase the php execution time. I noticed that the page generation stops at some point and the entire footer area (including the scripts which are normally loaded at the bottom of the html document) are missing. I think it might be a problem of the php execution time because the page stops to load after 30 seconds. Try to increase the time to 60 seconds or 90 seconds and see if this solves the issue. If not I’ll ask Kriesi to contact the LayerSlider plugin author – maybe he can give us some useful hints. If you can’t increase the execution time but you need a quick solution I recommend to use another, alternative slider like Master Slider or Revolution Slider. I provided a shortcode file for the Master Slider here: https://kriesi.at/support/topic/replace-layerslider-with-masterslider-possible/
Cheers!
PeterMay 21, 2014 at 7:10 am in reply to: Shortcodes in Textausschnitten/Fixe Hoehe bei Eintraege Slider #267807Hi!
Um die zweite Frage zu beantworten – ja dies sollte mit CSS Code möglich sein. Füge diesen Code in das Quick CSS Feld ein und passe den min-height Wert deinen Bedürfnissen an:
.avia-content-slider .slide-entry { min-height: 150px; }
Best regards,
PeterHey Nelson!
Since 2.7.1 you can change the position of the icons easily. Go to the “Header Layout” > “Extra Elements” and select “Header Social Icons” – “Display in main header area”. We can then set a margin-top if you want to push the icons down a bit.
Regards,
Peter -
AuthorPosts