Forum Replies Created
-
AuthorPosts
-
Hey!
Thanks for the update.
There’s a few syntax errors in the code. I adjusted it a bit. Please try it again. :)
Best regards,
IsmaelJuly 26, 2018 at 7:26 am in reply to: Avia Layout builder not loading after using TAB or accordion element #990082Hi,
There are special characters (¿) in the paragraphs. Remove those first or replace them with something different and then try to add it again in the page.
Best regards,
IsmaelHi,
That was actually intended. Remove the “.page-id-IDHERE” selector from the script to make it work for every page.
Best regards,
IsmaelHi,
Create a backup of the site or a restore point first, just in case something went wrong.
Edit the functions.php file from the Appearance > Editor panel and then copy the modifications or filters directly from this forum.
Let us know if you need more help.Best regards,
IsmaelHi,
Thanks for the update.
1.) Add this css code instead of changing the header option.
.single .title_container .main-title { display: none; }2.) Where did you add the code? It should be added on the functions.php file. Please provide the login details in the private field so that we could test the filter.
Best regards,
IsmaelJuly 26, 2018 at 7:17 am in reply to: Sticky Header, but hide the centered logo when scrolling down #990078Hi,
Where are those pages again? I’m sorry but I don’t know their respective IDs. Please provide the actual links to these pages.
Best regards,
IsmaelJuly 26, 2018 at 7:16 am in reply to: Enfold – CSS & Javascript Merging and Compression not working #990076Hi,
Thanks for the info.
I’m currently on another thread with exact same issue as this one. Please delete the “dynamic_avia” folder and then look for the “aviaAsset_avia-merged-styles” and “aviaAsset_avia-head-scripts” entries in your database. It’s in the “_options” table. Delete those entries and then toggle the theme options again to regenerate the merged scripts and stylesheets. Let us know if it helps.
Related thread: https://kriesi.at/support/topic/performance-compression-not-working/#post-990073
Temporarily, you can install the Autoptimize or the BWP Minify plugin to compress the scripts and stylesheets while we debug the issue.
Best regards,
IsmaelHi,
i can help you, but for me the question is: where enfold told wordpress to use the compressed and merged files instead of the normal?
It’s in the config-templatebuilder > avia-template-builder > asset-manager.class.php > “try_minifying_scripts” function. It fails to generate the merged file. You can use the Autoptimize or the BWP Minify plugins temporarily while we debug the issue.
In the database > _options table, please search for and delete the “aviaAsset_avia-merged-styles” and “aviaAsset_avia-head-scripts” entries. Toggle the theme options again to regenerate the merged scripts and stylesheets. Let us know if it helps.
Best regards,
IsmaelHi,
You’re welcome! That css will set the width of the masonry items to 100%, so it prevents the items from creating the specified columns. You should remove that. Please feel free to open a new thread if you need anything else. :)
Best regards,
IsmaelJuly 25, 2018 at 11:40 am in reply to: Page elements still not loading after upgrade to 4.4.1 #989635Hi,
Sorry for the late response. A script on a code block creates a script error causing the theme’s native scripts to fail. We removed the script temporarily.
<script type="text/javascript" src="//downloads.mailchimp.com/js/signup-forms/popup/embed.js" data-dojo-config="usePlainJson: true, isDebug: false"></script><script type="text/javascript">require(["mojo/signup-forms/Loader"], function(L) { L.start({"baseUrl":"mc.us6.list-manage.com","uuid":"6600b613be1a3973cc6e733c3","lid":"df24608fa3"}) })</script>I’m not sure why it creates the error though. Please contact the script or plugin authors.
Best regards,
IsmaelJuly 25, 2018 at 11:32 am in reply to: Fullwidth slider caption fading in instead of sliding in sidewards #989633Hi,
Thank you for the update.
The css codes have been replaced with this one.
/* fade in of caption front page */ .avia_transform .av_slideshow_full .active-slide .avia-caption-title, .avia_transform .av_fullscreen .active-slide .avia-caption-title, .avia_transform .av_slideshow_full .active-slide .avia-caption-content, .avia_transform .av_fullscreen .active-slide .avia-caption-content { visibility: visible; -webkit-animation: avia_appear_fade 3s 1 cubic-bezier(0.985, 0.005, 0.265, 1); animation: avia_appear_fade 3s 1 cubic-bezier(0.985, 0.005, 0.265, 1); } @-webkit-keyframes avia_appear_fade { 0% { opacity: 0.1; } 100% { opacity: 1; } } @keyframes avia_appear_fade { 0% { opacity: 0.1; } 100% { opacity: 1; } }Remove the browser cache prior to checking the page.
Best regards,
IsmaelHi,
I’m sorry for the late response. I adjusted the script a bit and it seems to be working as expected. It’s inside the functions.php file, right after line 17.
Best regards,
IsmaelHey thatryan,
Thank you for using Enfold.
Did you try the suggested filter? That filter will add a link tag with the rel next or prev attribute plus their corresponding URLs.
// https://kriesi.at/support/topic/paginated-pages-not-showing-relnext-and-relprev/#post-873990
Best regards,
IsmaelHey worleytm,
Thank you for using Enfold.
That is possible. You can try this script in the functions.php file.
add_action('wp_footer', 'ava_burger_toggle_on_scroll'); function ava_burger_toggle_on_scroll(){ ?> <script type="text/javascript"> (function($) { function avia_scroll_top_menu() { var win = $(window), menu = $('.responsive #top .av-main-nav .menu-item'), burger = $('.responsive #top .av-main-nav .menu-item-avia-special, .responsive .av-burger-menu-main'), set_status = function() { var st = win.scrollTop(); if(st < 200) { menu.addClass('hide_menu_show_burger'); menu.removeClass('hide_burger_show_menu'); burger.removeClass('hide_menu_show_burger'); } else if(menu.is('.hide_menu_show_burger')) { burger.addClass('hide_menu_show_burger'); menu.removeClass('hide_menu_show_burger'); menu.addClass('hide_burger_show_menu'); } }; win.on( 'scroll', function(){ window.requestAnimationFrame( set_status )} ); set_status(); } avia_scroll_top_menu(); })(jQuery); </script> <?php }And then add this css code on the Quick CSS field.
.responsive #top .av-main-nav .menu-item { display: none; } .responsive #top .av-main-nav .menu-item-avia-special { display: block; } .responsive .av-burger-menu-main { display: block; } .hide_menu_show_burger { display: none !important; } .hide_burger_show_menu { display: block !important; }Best regards,
IsmaelHey Wouter,
Thank you for using Enfold.
You can find the shortcode introduction in the theme documentation under the “CONTENT ELEMENTS” section.
// https://kriesi.at/documentation/enfold/
Best regards,
IsmaelHey Stefano,
Thank you for using Enfold.
The slider images are displaying when I checked the page. Is this fixed? Did you try to re-select the images?
Best regards,
IsmaelJuly 25, 2018 at 10:41 am in reply to: Avia Layout builder not loading after using TAB or accordion element #989604Hi,
Thanks for the update. We can’t access the site though. Is it down? Where is it hosted?
Best regards,
IsmaelHey Jason,
Thank you for using Enfold.
1.) Add this script to move the date after the title.
add_action('wp_footer', 'ava_move_date_after_title'); function ava_move_date_after_title(){ ?> <script type="text/javascript"> (function($) { $('.av-magazine-entry').each( function() { var date = $(this).find('.av-magazine-time'); var title = $(this).find('.av-magazine-title'); date.insertAfter(title); }); })(jQuery); </script> <?php }2.) Add this css code to create space below the excerpt.
.av-magazine-content.entry-content { padding-bottom: 20px; }3.) Use this to adjust the size of the thumbnail.
.av-magazine-thumbnail { width: 120px; min-height: 120px; } .av-magazine-thumbnail img { width: 100%; }4.) And this css code to move the border below the thumbnail.
.av-magazine-entry { border-bottom: 1px solid; padding-bottom: 20px; } .av-magazine-content-wrap { border-bottom: 0; }We don’t usually entertain multiple questions on a single page, so it’s better if you create a single thread for each inquiry.
Best regards,
IsmaelHey calnettech2,
Thank you for using Enfold.
The “page-attribute” feature is not supported by the portfolio post type by default so you have to enable it. Add this filter in the functions.php file.
/* Change portfolio post type settings */ add_filter('avf_portfolio_cpt_args', 'avf_portfolio_cpt_args_mod'); function avf_portfolio_cpt_args_mod($args) { $args['supports'][] = 'page-attributes'; return $args; }Best regards,
IsmaelHey asapevictions,
Thank you for using Enfold.
You have to upload the yelp icon in the Enfold > Import / Export > Iconfont Manager. Have you done that?
Here’s how: https://kriesi.at/documentation/enfold/icon/#adding-your-own-fontello-or-flaticon-icons-
Best regards,
IsmaelJuly 25, 2018 at 9:11 am in reply to: Bigger Gallery were additional images are available via lightbox #989559Hey mcmoya,
Thank you for using Enfold.
Add a Gallery element and then set the “Gallery Style” to the third option. Make sure that the Enfold > Theme Options > Lightbox Modal Window is enabled.
Best regards,
IsmaelHi,
Upload the screenshots on imgur or dropbox so that we can see it. The current ones are not loading.
Best regards,
IsmaelHey Rafíyel,
Thank you for using Enfold.
Build the menu as you normally would. You can then manually inspect the items within the burger menu and add the necessary css codes to make it look like the mockup. Unfortunately, this is beyond the scope of support. Please hire a freelance developer or contact our partner, Codeable, if you need additional help.
// https://kriesi.at/contact/customization
Best regards,
IsmaelHey NicomIT,
Thank you for using Enfold.
You can use the “wp_nav_menu_items” filter in the functions.php file to append the search icon to the secondary menu.
add_filter( 'wp_nav_menu_items', 'avia_append_search_nav', 10, 2 ); add_filter( 'avf_fallback_menu_items', 'avia_append_search_nav', 10, 2 ); function avia_append_search_nav ( $items, $args ) { if ((is_object($args) && $args->theme_location == 'avia2') || (is_string($args) && $args = "fallback_menu")) { global $avia_config; ob_start(); get_search_form(); $form = htmlspecialchars(ob_get_clean()) ; $items .= '<li id="menu-item-search2" class="noMobile menu-item menu-item-search-dropdown">'.$form.'</span> '; } return $items; }Best regards,
IsmaelHey Rustybucket,
Thank you for using Enfold.
Did you create categories with the same name as those pages? You may need to remove or rename the categories or the pages.
Best regards,
IsmaelHi,
Thank you for using Enfold.
You have to compile the content first. There’s an available function for that.
$post = get_post(120); $content = Avia_Builder()->compile_post_content( $post ); echo $content;Best regards,
IsmaelHey newki75,
Thank you for using Enfold.
You can’t use a transform property on a content element. There is a reversed phone icon on fontello.com — just look for “phone” in the search field. You can use that to replace the default phone icon.
Best regards,
IsmaelHey Paolo,
Thank you for using Enfold.
I am on another thread with exactly the same issue but I’m not sure why it’s not using the merged file. Have you tried to remove the “dynamic_avia” folder manually before? Where is the site hosted?
Best regards,
IsmaelHey fumsel,
Thank you for using Enfold.
The background video is loading fairly fast on my end.
Screenshot: https://imgur.com/a/uiGDkEU
Unfortunately, you can’t add another video and have the actual video play only after it fully loads.
Best regards,
IsmaelJuly 25, 2018 at 8:02 am in reply to: How to add the advanced layout builder to new custom post types #989534Hey DROR,
Thank you for using Enfold.
This should help you with that.
// https://kriesi.at/documentation/enfold/intro-to-advanced-layout-builder/#alb-for-any-post-type`
Just add the filter and specify the name of the post type.
Best regards,
Ismael -
AuthorPosts
