Forum Replies Created
-
AuthorPosts
-
Hey!
You didn’t do anything wrong. The codes in the documentation should work on a parent theme. For child themes, we called all filters inside an INIT HOOK as opposed to calling it directly on functions.php.
http://codex.wordpress.org/Plugin_API/Action_Reference/init
http://codex.wordpress.org/Plugin_API/Action_Reference/after_setup_themeYou can see the code on functions.php.
Cheers!
IsmaelHey!
The masonry can open images via lightbox but you need to set the Overwrite Portfolio Link setting of the portfolio item to define a custom link. Add the url of the image or video. For post with only single images, you can do this then for those with multiple or series, you can let masonry to open it on its actual post page.
Best regards,
IsmaelHey!
The [/av_slideshow_full] is duplicated. I tested the full screen slider on my installation and it works fine:
echo do_shortcode("[av_fullscreen size='extra_large' animation='slide' autoplay='false' interval='5' control_layout='' custom_class=''] [av_fullscreen_slide id='43'][/av_fullscreen_slide] [av_fullscreen_slide id='44'][/av_fullscreen_slide] [/av_fullscreen]");
Please post the login details here. We would like to check it.
Best regards,
IsmaelHey!
It is the same accordion slider but the images are much larger, 1500x430px.
Cheers!
IsmaelHey!
Sorry for the delay. Please check it now: http://www.soapoperasoap.com/product/the-romantic-group/
Best regards,
IsmaelHey!
Try to use this instead:
.avia-msie img, .avia-msie a img { max-width: 100%; height: auto; width: auto; }
Cheers!
IsmaelMarch 11, 2015 at 6:45 am in reply to: Margin/Spacing between Grid Rows with Background styling #409686Hey!
You can try to do it with the grid layout. Note that you will have issues with cell height control specially when each cells have different content. First, you need to enable the custom css class field: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
We’ll try to do the first row, add a grid layout element, set the cell size to 2/3 – 1/3. Apply a unique id attribute in the For Developers: Section ID field. Use “custom-grid” for example. Apply the background in the Quick CSS field:
#custom-grid { background: -webkit-radial-gradient(circle, #176991, #053d60); background-position: center center; }
Edit the 2/3 cell. Set the padding to 0px then add a custom css class. Use “flex-cell-1” for example. Add this to the Quick CSS field to add a custom cell background:
#custom-grid .flex-cell-1 .flex_cell_inner { background: red !important; }
Edit the second cell(1/3), do the same but on the custom css class, use “flex-cell-2”. Add this to the Quick CSS field:
#custom-grid .flex-cell-2 .flex_cell_inner { background: green !important; }
Add this code to create gaps between the cells:
#custom-grid .flex_cell { padding: 5px; } #custom-grid .flex_cell_inner padding: 5px 15px; }
Best regards,
IsmaelHey!
Replace the code with this:
#header_main > .container { background: #abc103 url(//kulturlandschaft-erleben.de.maschinenhalle.eu/cms/wp-content/uploads/2015/03/header1.jpg) top center no-repeat scroll; background-size: cover; padding: 0 !important; margin: 0 !important; width: 100% !important; max-width: 100% !important; }
IMO, you should remove the background image on mobile device or use another background image.
Best regards,
IsmaelHi hotspot!
Thank you for using Enfold.
Did you create the portfolio items using the advance layout builder? If yes, then you need to include the custom footer on the template-builder.php file. Use the is_singular(‘portfolio’) conditional function.
Regards,
IsmaelHi!
You can try the solution provided on the previous thread: http://codepen.io/anon/pen/XJxXXw
Create a layer on the layer slider panel, switch it to HTML then add something like this:
<div class="custom_layer"> <img src="http://www.iq.poquoson.org/3socst/continents_oceans/continentmap2.gif" class="first" /> <img src="http://www.countrycallingcodes.com/graphics/continentsmap.jpg" class="last" /> </div>
Add this css code to the Quick CSS field:
.custom_layer img{ position: absolute; } .custom_layer{ position: relative; } .custom_layer:hover .first{ z-index: 2; }
Best regards,
IsmaelHi!
Add this to the Quick CSS field:
@media only screen and (max-width: 767px) { .responsive #top #main .sidebar { display: block; }}
Cheers!
IsmaelHey jruizmatrix!
Thank you for using Enfold.
Make sure that you have the latest version of the theme. Did you add any minify or cache plugins? Try to disable them. The WordPress and WooCommerce plugin are not updated. Please update those as well.
Cheers!
IsmaelHi!
I think you have to resize the image to at least 1210px before uploading to WordPress. Or install this plugin: https://wordpress.org/plugins/simple-image-sizes/
Go to Settings > Media then set the Cropping parameter of the entry_with_sidebar and entry_without_sidebar thumbnail size to “No”. Update then save changes. Upload the images again or regenerate the thumbnails.
Cheers!
IsmaelHi!
There’s a conflict between the theme editor and the CKEditor for WordPress plugin. Please disable it then test the editor again. If you really want to use the plugin, please contact the plugin author.
Best regards,
IsmaelHi joeberlin!
Thank you for using Enfold.
Replace it with this:
add_filter('avf_masonry_loop_prepare','avia_change_default_link', 10, 2); function avia_change_default_link($loop, $entries) { foreach($entries->posts as $key => $entry) { if($entry->post_type == "post") { $more = "<br /><span class='masonry-more-link-arrow'>".__('Read more','avia_framework')."</span>"; $loop[$key]['content'] = avia_backend_truncate($entry->post_content, apply_filters( 'avf_masonry_excerpt_length' , 60) , apply_filters( 'avf_masonry_excerpt_delimiter' , " "), "…", true, '') . $more; } } return $loop; }
Cheers!
IsmaelHi!
Is the German theme options translated to German? Some of the language files are not complete and it breaks the theme options. Try to disable the theme options translation. Add this to the functions.php file:
if(!function_exists('avia_lang_setup')) { add_action('after_setup_theme', 'avia_lang_setup'); function avia_lang_setup() { if(!is_admin()) { $lang = apply_filters('ava_theme_textdomain_path', get_template_directory() . '/lang'); load_theme_textdomain('avia_framework', $lang); } } }
Set the blog page for the german version afterwards.
Regards,
IsmaelHi!
Thank you for using Enfold.
I checked the site and I saw 4 slides with different text ( training, teach, kay, journal). Is there anything missing?
Best regards,
IsmaelMarch 11, 2015 at 4:29 am in reply to: Automaticaly retrive Page name on a form field in the page #409649Hi!
Can you please provide a screenshot instead? A link to the actual page will help.
Cheers!
IsmaelHey!
Glad it is finally fixed. If you still have questions, let us know. :)
Cheers!
IsmaelHey emilcobussen!
Thank you for using Enfold.
Can you please provide a link to the actual single post and blog page? Revert the modifications done on loop-index.php then try the solution provided here: https://kriesi.at/support/topic/blog-category-frontpage-view/#post-386022
Regards,
IsmaelHey DHsolutions!
Thank you for using Enfold.
1.) Unfortunately, the translation is partial and is not complete. You need to translate the missing strings yourself. Please use this plugin: https://wordpress.org/plugins/codestyling-localization/
2.) Add this to the Quick CSS field:
#footer span.av_font_icon:hover a { color: blue !important; }
Cheers!
IsmaelHey!
Can you please create a test page with multiple slides? Right now, the slider on the frontpage only have one slide. Is that correct?
Cheers!
IsmaelHey!
It seems to happen only on first load. Please try to purge the plugin cache then test the site again. Try to add this to the functions.php file:
add_action('wp_footer', 'ava_auto_resize'); function ava_auto_resize(){ ?> <script> (function($){ $(window).on("resize", function (event) { if (event.originalEvent === undefined) { var alien = 'alien'; console.log(alien); } else { var human = 'human'; console.log(human); } }).resize(); })(jQuery); </script> <?php }
Best regards,
IsmaelMarch 11, 2015 at 4:07 am in reply to: Fullscreen slider got flickr in chrome, opera, safari while scroll in mouse. #409638Hey rajivnetra!
Thank you for using Enfold.
Unfortunately, that is the default browser behaviour. That is why they created third party extensions for it (https://chrome.google.com/webstore/detail/chromium-wheel-smooth-scr/khpcanbeojalbkpgpmjpdkjnkfcgfkhb/related?hl=en). I’m sorry but we can’t do anything about it.
Best regards,
IsmaelHey!
Please ask your hosting provider to increase the php values for you. I’m sure they can help. You can also increase it in the .htaccess file located in the wp root directory: https://wordpress.org/support/topic/increase-max_input_vars-value-and-htaccess
Best regards,
IsmaelHey!
The font looks fine on chrome except for the text inside the strong tags because the font doesn’t support bold font weights. Install the bold version of the font: http://www.cufonfonts.com/en/font/13217/avenir-next-lt-pro
Best regards,
IsmaelHey!
I think the german translation is not complete. Try to disable the translation and use the default language for the advance layout builder. Add this to the functions.php:
if(!function_exists('avia_lang_setup')) { add_action('after_setup_theme', 'avia_lang_setup'); function avia_lang_setup() { if(!is_admin()) { $lang = apply_filters('ava_theme_textdomain_path', get_template_directory() . '/lang'); load_theme_textdomain('avia_framework', $lang); } } }
Cheers!
IsmaelHi jancecile!
Thank you for using Enfold.
I’m sorry but there is no option to add links automatically inside the table element’s editor same as the default editor. You need to add the html links manually. Request for that feature here: https://kriesi.at/support/enfold-feature-requests
Regards,
Ismael -
AuthorPosts