Forum Replies Created

Viewing 30 posts - 28,201 through 28,230 (of 67,565 total)
  • Author
    Posts
  • in reply to: Adding Search to the Header Secondary Menu #990084

    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,
    Ismael

    Hi,

    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,
    Ismael

    in reply to: How to make videos responsive? #990081

    Hi,

    That was actually intended. Remove the “.page-id-IDHERE” selector from the script to make it work for every page.

    Best regards,
    Ismael

    in reply to: Search function in/on mobile menu #990080

    Hi,

    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,
    Ismael

    in reply to: Breadcrumb – Replace Sample Page #990079

    Hi,

    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,
    Ismael

    Hi,

    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,
    Ismael

    Hi,

    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,
    Ismael

    in reply to: performance compression not working #990073

    Hi,

    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,
    Ismael

    in reply to: Visualization of the articles, portfolio and gallery #990069

    Hi,

    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,
    Ismael

    in reply to: Page elements still not loading after upgrade to 4.4.1 #989635

    Hi,

    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,
    Ismael

    Hi,

    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,
    Ismael

    in reply to: How to make videos responsive? #989631

    Hi,

    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,
    Ismael

    in reply to: Rel = next and prev not working #989625

    Hey 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,
    Ismael

    in reply to: Can Main Menu be replaced by Burger on Scroll? #989616

    Hey 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,
    Ismael

    in reply to: Avia modules example #989607

    Hey 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,
    Ismael

    in reply to: Fullwith easy slider do not show in IT language #989605

    Hey 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,
    Ismael

    Hi,

    Thanks for the update. We can’t access the site though. Is it down? Where is it hosted?

    Best regards,
    Ismael

    in reply to: Magazine Element Customizations #989601

    Hey 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,
    Ismael

    in reply to: Add menu order to portfolio item #989593

    Hey 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,
    Ismael

    in reply to: New Header Icon not Working #989592

    Hey 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,
    Ismael

    Hey 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,
    Ismael

    in reply to: Blog post entry gallery #989551

    Hi,

    Upload the screenshots on imgur or dropbox so that we can see it. The current ones are not loading.

    Best regards,
    Ismael

    in reply to: Adding custom Mobilemenu #989550

    Hey 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,
    Ismael

    in reply to: Adding Search to the Header Secondary Menu #989545

    Hey 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,
    Ismael

    in reply to: Blog posts content element displaying pages #989543

    Hey 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,
    Ismael

    in reply to: do_shortcode issue on visual builder #989539

    Hi,

    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,
    Ismael

    in reply to: New icon : phone other way #989538

    Hey 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,
    Ismael

    in reply to: performance compression not working #989537

    Hey 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,
    Ismael

    in reply to: Video mit Standbild einfügen #989536

    Hey 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,
    Ismael

    Hey 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

Viewing 30 posts - 28,201 through 28,230 (of 67,565 total)