Forum Replies Created
-
AuthorPosts
-
Hey!
@matcho: There is no Enfold installation when I checked the dashboard. Please install Enfold again then we’ll check it.@jeffh: Please make sure that you have the latest version of the theme, 3.1.3.
Cheers!
IsmaelHey!
Maybe, this will work:
add_action('wp_footer', 'ava_auto_resize'); function ava_auto_resize(){ ?> <script> (function($){ var int = window.setInterval(function(){ $(window).trigger('resize'); }, 1500); $(window).load(function () { setTimeout(function() { clearInterval(int); }, 3000); }); })(jQuery); </script> <?php }
Remove browser cache then reload the page.
Best regards,
IsmaelHey!
Like I said, it’s not integrated in the theme. It will require major modification, one that we can’t provide here. Please try the css media query solution. Refer to the links above.
Regards,
IsmaelHi!
I checked the page but it’s blank. Please refer to this link: https://en.support.wordpress.com/splitting-content/nextpage/
Best regards,
IsmaelApril 29, 2015 at 1:51 pm in reply to: wordpress 4.2 update broken enfold theme register_sidebar #436647Hi!
You should ignore those errors for now. Adding a sidebar id will reset the widget area settings. You can disable debug mode to hide the errors:
define('WP_DEBUG', false);
https://codex.wordpress.org/Debugging_in_WordPress
Best regards,
IsmaelHi!
Edit includes > related-posts.php. Look for these codes:
'image_size' => 'square',
Replace ‘square’ with a different thumbnail size. The name of the thumbnail size is located on functions.php:
$avia_config['imgSize']['widget'] = array('width'=>36, 'height'=>36); // small preview pics eg sidebar news $avia_config['imgSize']['square'] = array('width'=>180, 'height'=>180); // small image for blogs $avia_config['imgSize']['featured'] = array('width'=>1500, 'height'=>430 ); // images for fullsize pages and fullsize slider $avia_config['imgSize']['featured_large'] = array('width'=>1500, 'height'=>630 ); // images for fullsize pages and fullsize slider $avia_config['imgSize']['extra_large'] = array('width'=>1500, 'height'=>1500 , 'crop' => false); // images for fullscrren slider $avia_config['imgSize']['portfolio'] = array('width'=>495, 'height'=>400 ); // images for portfolio entries (2,3 column) $avia_config['imgSize']['portfolio_small'] = array('width'=>260, 'height'=>185 ); // images for portfolio 4 columns $avia_config['imgSize']['gallery'] = array('width'=>845, 'height'=>684 ); // images for portfolio entries (2,3 column) $avia_config['imgSize']['magazine'] = array('width'=>710, 'height'=>375 ); // images for magazines $avia_config['imgSize']['masonry'] = array('width'=>705, 'height'=>705 , 'crop' => false); // images for fullscreen masonry $avia_config['imgSize']['entry_with_sidebar'] = array('width'=>845, 'height'=>321); // big images for blog and page entries $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 ); // images for fullsize pages and fullsize slider
Best regards,
IsmaelHey Jon!
Thank you for using Enfold.
Add this in the functions.php file:
add_action('wp_footer', 'ava_custom_script', 10); function ava_custom_script(){ ?> <script> (function($){ $('.avia_datepicker').attr('readonly','readonly'); }(jQuery)); </script> <?php }
Cheers!
IsmaelHi!
Please refer to this link for a possible fix: https://kriesi.at/support/topic/replace-bullets-with-icon-font/#post-429401
Regards,
IsmaelHi!
Works fine on our installation. Please post the login details here and set it as a private reply.
Regards,
IsmaelHey!
For example, if you use the “custom-tabs” css class attribute for the tab elements and the “custom-toggles” for the toggle elements, the css code will look like this:
@media only screen and (min-width: 768px) { .custom-toggles { display: none; } } @media only screen and (max-width: 767px) { .custom-tabs { display: none; } .custom-toggles { display: block; } }
Regards,
IsmaelApril 29, 2015 at 11:11 am in reply to: Fullscreen Slider caption title, content & buttons animation inconsistency… #436579Hi!
Add the prefix webkit:
.avia-caption-title, .avia-caption-content, .avia-slideshow-button { -webkit-animation: 0s ease 0s normal none 1 running none !important; animation: 0s ease 0s normal none 1 running none !important; visibility: visible !important; }
Cheers!
IsmaelApril 29, 2015 at 11:03 am in reply to: How to change position of WPML langs on the right of my secondary menu #436577Hey!
You can contact the Avada support. :)
Kidding aside, if you want to remove the Enfold theme’s default flag configuration, add this in the functions.php file:
add_action('after_setup_theme','avia_remove_main_menu_flags'); function avia_remove_main_menu_flags(){ remove_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 20, 2 ); remove_filter( 'avf_fallback_menu_items', 'avia_append_lang_flags', 20, 2 ); remove_action( 'avia_meta_header', 'avia_wpml_language_switch', 10); }
You can then use the wpml language flag code to render the language switcher anywhere you want. For example, you can edit includes > helper-main-menu.php, use this code:
do_action('icl_language_selector');
Or add something like this in the functions.php file to insert the language switcher inside the top bar of the header:
add_action('avia_meta_header', 'add_custom_content_to_header'); function add_custom_content_to_header() { do_action('icl_language_selector'); }
Cheers!
IsmaelHi!
Thank you for using Enfold.
You can enable the order and orderby settings in the blog posts element. Refer to this link: http://kriesi.at/documentation/enfold/how-to-add-an-orderorderby-option-to-the-blogpost-sliderportfoliomasonry-grid-element/
Cheers!
IsmaelHi!
How can you go to this page (http://maintecx.com/whats-new/?portfolio=financing)? From the menu, which menu items did you click? I clicked the Services page and the items inside display as a portfolio item, not as a default post.
Cheers!
IsmaelHi!
I’m not saying you shouldn’t use php, it’s just not advisable to use php inside the wp editor because it is meant to be use as normal text and html editor. And what if you change themes or decided to migrate to a different cms, what will happen to the multiple pages with multiple php codes? Maybe, it’s better if you use custom fields. Refer to this link: https://codex.wordpress.org/Custom_Fields
You can add the modifications directly in the the template files like page.php, single.php or if you built the page with the advance layout builder, modify the template-builder.php file.
Best regards,
IsmaelHey!
When you replaced the code… did you flush or re-save the permalink settings? The previous one is wrong because the Permalinks > Portfolio Entry Settings will be useless. I tested the code on my installation and it works fine. Please try it again or just use the previous code if it works.
Don’t forget to refresh the portfolio overview page before going to the actual portfolio item page.
Cheers!
IsmaelHey!
Issue seems random and unique to few installations. Is this happening when the testimonial element is the only content inside a page? Please create a test page with only the testimonial element. Let us know if the issue is still happening.
Regards,
IsmaelHi djshortkut!
Thank you for using Enfold.
Use this in the Quick CSS field:
.avia-datepicker-div.ui-datepicker .ui-datepicker-buttonpane button:hover { background: red; border: 1px solid black; color: pink; }
Adjust the values.
Cheers!
IsmaelHey!
Yes, please. Post the login details here as a private reply. Check the code, make sure that all symbols, apostrophe etc are not converted to character codes.
Cheers!
IsmaelHey!
Unfortunately, mp4 video format isn’t supported by the lightbox plugin. You can still add the url as portfolio item custom link but it will open the video player in another page.
Regards,
IsmaelHi!
Issue seems to be happening only on specific pages(About Us for example). I created a test page and the default editor is working fine (visual and text mode): http://www.saddlecreekllc.com/test-page/
Please try to deactivate all plugins, remove browser cache then test it again.
Regards,
IsmaelHi!
Is this happening when you switch to a default theme? Please refer to this link for a possible fix: https://kriesi.at/support/topic/menu-creation-disappear-when-activating-enfold-v2/#post-433916
Best regards,
IsmaelApril 28, 2015 at 1:25 pm in reply to: Product sub – categories shown instead of individual products on Product Grid el #435999Hi!
Did you add a code wrapper element? It doesn’t look like that in our installation. Use a text block instead. Make sure to switch to html or text mode before adding the shortcode.
Looks like you
Cheers!
IsmaelHey!
Go to the Appearance > Menus panel. Edit the Nuestras Ventanas menu item, disable the “Use as Mega Menu” option. You might need to recreate the sub menus.
Best regards,
IsmaelHey!
Thank you for the info. We have reported the issue to Kriesi. It might take a while before we can fix it.
Regards,
IsmaelHey!
The Enfold theme is deactivated when I checked the dashboard. We enabled it back: http://plasticar.pt/wp-admin/admin.php?avia_welcome=true&page=avia
Please update the theme to 3.1.3.
Best regards,
IsmaelHey!
I don’t see any minified files when I checked the page. Do you have a cache plugin? Please purge the cache. I just noticed that you’re using a very old version of the theme, 2.7. Please update the theme to version 3.1.3 then we’ll check it again.
After the update, try this plugin: https://wordpress.org/plugins/ssl-insecure-content-fixer/
Best regards,
IsmaelHi!
It is a unique class. You can edit includes > loop-index.php if you want to change it.
//echo preview image if(strpos($blog_style, 'big') !== false) { if($slider) $slider = '<a href="'.$link.'" title="'.$featured_img_desc.'">'.$slider.'</a>'; if($slider) echo '<div class="big-preview '.$blog_style.'">'.$slider.'</div>'; } if(!empty($before_content)) echo '<div class="big-preview '.$blog_style.'">'.$before_content.'</div>';
Cheers!
Ismael -
AuthorPosts