Forum Replies Created

Viewing 30 posts - 1,891 through 1,920 (of 23,923 total)
  • Author
    Posts
  • in reply to: Hired Developer – Now I'm Having Several Issues #610700

    Hi,

    Try adding this at the very end of your theme / child theme functions.php file:

    function add_custom_script(){
    ?>
    <script>
    (function($){
        $(window).load(function() {
        	$(this).trigger('resize');
        });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');

    Regards,
    Josue

    in reply to: PNG's in iconlist #610698

    Here you go:

    #top .avia-icon-list > li .iconlist-char:before {
        content: "";
        height: 60px;
        width: 60px;
        background-size: contain;
        display: block;
    }
    
    #top .avia-icon-list > li:nth-child(1) .iconlist-char:before{
        background: url(https://kriesi.at/wp-content/themes/kriesi/images/logo.png) no-repeat top center;    
    }
    #top .avia-icon-list > li:nth-child(2) .iconlist-char:before{
       background: url(https://kriesi.at/wp-content/themes/kriesi/images/logo.png) no-repeat top center;    
    }
    #top .avia-icon-list > li:nth-child(3) .iconlist-char:before {
       background: url(https://kriesi.at/wp-content/themes/kriesi/images/logo.png) no-repeat top center;    
    }
    in reply to: How to Remove Blog title on Each Post #610697

    Hey!

    Try adding this code to the Quick CSS:

    .single-post .title_container{
    display: none;
    }

    Cheers! 
    Josue

    in reply to: Adding Social Profiles – Follow Up #610584

    Hey!

    Some icon codes are wrong, change your code to:

    // Register new icon as a theme icon
    function avia_add_custom_icon($icons) {
    $icons[‘yelp’]	= array( ‘font’ =>’yelp’, ‘icon’ => ‘ue800’);
    $icons[‘foursquare’]	= array( ‘font’ =>’foursquare’, ‘icon’ => ‘ue801’);
    $icons[‘tripadvisor’]	= array( ‘font’ =>’yelp’, ‘icon’ => ‘ue801’);
    $icons[‘houzz’]	= array( ‘font’ =>’houzz’, ‘icon’ => ‘ue801’);
    return $icons;
    }
    add_filter(‘avf_default_icons’,’avia_add_custom_icon’, 10, 1);
    
    // Add new icon as an option for social icons
    function avia_add_custom_social_icon($icons) {
    $icons[‘Yelp’] = ‘yelp’;
    $icons[‘Foursquare’] = ‘foursquare’;
    $icons[‘Tripadvisor’] = ‘tripadvisor’;
    $icons[‘Houzz’] = ‘houzz’;
    return $icons;
    }
    add_filter(‘avf_social_icons_options’,’avia_add_custom_social_icon’, 10, 1);

    Also, i’d suggest using a single font file for all these icons.

    Regards,
    Josue

    in reply to: How to Remove Blog title on Each Post #610580

    Hi,

    Can you post the link to your blog please?

    Regards,
    Josue

    in reply to: Background Image Issue #610579

    Hey!

    Try adding this code to the Quick CSS:

    .flex_cell.avia-full-contain{
        background-size: 100% 100% !important;
    }

    Cheers! 
    Josue

    Hey!

    Try adding this code to the Quick CSS:

    #top .widget_nav_menu .current-menu-item > ul, #top .widget_nav_menu .current_page_item > ul, #top .widget_nav_menu .current_page_ancestor > ul, #top .widget_nav_menu .current-menu-ancestor > ul {
        padding: 0;
    }

    Cheers! 
    Josue

    in reply to: best sizes for image #610572

    Hey!

    Check the images used in the demos, for example for fullscreen elements a good size would be 1500×1000. We’re in multiple timezones so that’s variable.

    Cheers!
    Josue

    in reply to: Can I have the masonry blog layout for the archive page? #610571

    Hey!

    No, but you could create a custom archive page using ALB and then have the default archives redirected to their archives pages respectively.

    Cheers!
    Josue

    in reply to: Linking to filtered portfolio (ajax) #610570

    Hi,

    Can you post the link to your website please?

    Regards,
    Josue

    in reply to: Page split element??? #610569

    Hey!

    Try adding this at the very end of your theme / child theme functions.php file:

    add_theme_support(‘avia_template_builder_page_split_element’);
    

    Cheers!
    Josue

    in reply to: Secondary menu not showing up on some pages #610563

    Hey!

    Can you please enable file editing on theme files or provide me a FTP account too?

    You need to make this file writable before you can save your changes. See the Codex for more information.

    Regards,
    Josue

    in reply to: Hide main menu container on mobile. #610479

    You are welcome Michael, glad to help :)

    Regards,
    Josue

    in reply to: Slideshow not appearing on initial page load #610475

    Hey!

    Please update the theme to the latest version (3.5.1).

    Best regards,
    Josue

    in reply to: Upload image giving http error (theme error) #610471

    Glad to hear it worked, let us know if you need further assistance with anything theme-related :)

    Cheers!
    Josue

    in reply to: icono Search desaparece en el menú #610470

    Hola,

    Prueba con este:

    	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 == 'avia') || (is_string($args) && $args = "fallback_menu")) {			
    	    global $avia_config;
    	    ob_start();
    	    get_search_form();
    	    $form =  htmlspecialchars(ob_get_clean()) ;
    
    	    $items .= '<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown">
    						<a href="?s=" rel="nofollow" data-avia-search-tooltip="'.$form.'" '.av_icon_string('search').'><span class="avia_hidden_link_text">'.__('Search','avia_framework').'</span></a>
    	    		   </li>';
    	    }
    	    return $items;
    	}

    Saludos,
    Josue

    in reply to: Hide main menu container on mobile. #610467

    Hey!

    Check it now, there were some typos in your Quick CSS.

    Regards,
    Josue

    in reply to: Secondary menu not showing up on some pages #610464

    Hi,

    Can you please create me a WordPress administrator account? post it here as a private reply.

    Regards,
    Josue

    in reply to: Possible? #610463

    You are welcome, glad to help :)

    Regards,
    Josue

    in reply to: Portfolio Navigation #610462

    Hey!

    Can you post a screenshot/mockup of what would you want to achieve?

    Best regards,
    Josue

    in reply to: Widget Twitter #610453

    Hi,

    Can you please create us a WordPress administrator account? post it here as a private reply.

    Regards,
    Josue

    in reply to: Possible? #610451

    Hey!

    No, you’d need to run another conditional (in_category):

    		if (is_category('slug_category') || in_category('slug_category'))  $header['header_position'] = 'header_sidebar';
    		if($header['header_position'] != "header_top") return avia_header_setting_sidebar($header, $single_val);
    

    Regards,
    Josue

    in reply to: how to include a new iconbox ICON #610450

    Hi!

    You can set a custom class to certain elements:

    And change the code accordingly:

    #top .custom_icon_class .av-icon-char {
        width: 120px !important;
        height: 120px !important;
        line-height: 120px !important;
        padding:0;
        text-align: center;
        
    }
    
    #top .custom_icon_class .av-icon-char:before{
        font-size: 120px;
    }

    Regards,
    Josue

    in reply to: how to include a new iconbox ICON #610257

    Try this;

    #top .av_font_icon .av-icon-char {
        width: 120px !important;
        height: 120px !important;
        line-height: 120px !important;
        padding:0;
        text-align: center;
        
    }
    
    #top .av_font_icon .av-icon-char:before{
        font-size: 120px;
    }
    in reply to: how to include a new iconbox ICON #610212

    Try with this:

    #top .av_font_icon .av-icon-char {
        width: 120px !important;
        height: 120px !important;
        line-height: 120px !important;
        
    }
    
    #top .av_font_icon .av-icon-char:before{
        font-size: 90px;
    }
    in reply to: Portfolio Navigation #610192

    Hi,

    Can you please create us a WordPress administrator account? post it here as a private reply.

    Regards,
    Josue

    in reply to: Getting Multi Columns using Contact Form 7 #610188

    Hey!

    Try:

    <div class=”flex_column av_one_third first”>[text* Name placeholder “Namn”]</div>
    
    <div class=”flex_column av_one_third second”>[email* email placeholder “Email”]</div>
    
    <div class=”flex_column av_one_third third”>[select* mne include_blank “Produktfrågor” “Betalningar ” “Leveranser” “Återköp ” “Mina Orders” “Mitt Konto” “Presentkort” “Övrigt”]<div>
    
    <div>[textarea* your-message placeholder “Skriv ditt meddelande här”]</div>
    
    <p>[submit “Skicka”]</p>

    Best regards,
    Josue

    in reply to: Page Preloading + Page Transitions only for homepage #610187

    Glad you managed to get it working and thanks for sharing your solution.

    Regards,
    Josue

    in reply to: how to include a new iconbox ICON #610183

    Hey!

    Try adding this code to the Quick CSS:

    #top .iconbox.av-no-box .iconbox_icon {
        width: 120px;
        height: 120px;
        line-height: 120px;
        font-size: 90px;
    }

    Cheers! 
    Josue

    in reply to: Portfolio Pagination – loads new page #610182

    You are welcome, glad to help :)

    Regards,
    Josue

Viewing 30 posts - 1,891 through 1,920 (of 23,923 total)