Forum Replies Created

Viewing 30 posts - 3,241 through 3,270 (of 3,751 total)
  • Author
    Posts
  • in reply to: question regarding: "Hide Header on this page" #368257

    Hi tvlleaders!

    You can identyfy the pages with the unique ID and then use the following code to hide the header, replace the ID with your values:

    
    .page-id-2503 #header,
    .page-id-2504 #header {
        display: none !important;
    }
    .page-id-2503 #main
    .page-id-2504 #main {
        padding-top: 0px !important;
    }
    
    

    Cheers!
    Günter

    in reply to: Ajax Search not found text #368243

    Hey MathiasVie!

    Thank you for using our theme.

    You can change it with a filter. In functions,php at the end put the following:

    
    function my_search_text( $search_messages )
    {
    
    // modify the array here
    
    return $search_messages;
    }
    add_filter( 'avf_ajax_search_messages', 'my_search_text', 10, 1);
    
    

    The possible values to change you find at

    enfold\functions-enfold.php line 105:

    
    	    $search_messages = array(
    	            'no_criteria_matched' => __("Sorry, no posts matched your criteria", 'avia_framework'),
    	            'another_search_term' => __("Please try another search term", 'avia_framework'),
    	            'time_format'         => get_option('date_format'),
    	            'all_results_query'   => http_build_query($_REQUEST),
    	            'all_results_link'    => home_url('?' . http_build_query($_REQUEST)),
    	            'view_all_results'    => __('View all results','avia_framework')
                );
    

    Cheers!
    Günter

    in reply to: Tab content alignment #368239

    Hey bebetoblu!

    Thank you for using our theme.

    In custom.css or Enfold->Styles->QuickCSS put the following CSS Code. You have 2 divs you can style:

    
    .av_tab_section .tab_content {
    
    }
    
    .av_tab_section .tab_content .tab_inner_content {
    
    }
    

    Don’t forget to add !important to each CSS style.

    Cheers!
    Günter

    in reply to: override font heading color #368236

    Hi Moniek!

    Thank you for using our theme.

    Try the following:

    
    h4 {
    color: #ff5100 !important;
    }
    

    Best regards,
    Günter

    in reply to: Need to remove title showing when mouse over images #368233

    Hey!

    Glad we could help you. Enjoy the theme.

    Best regards,
    Günter

    in reply to: Text editor doesn't work #367698

    Hey!

    Glad we could help you. Enjoy the theme.

    Cheers!
    Günter

    in reply to: Move Image closer to slider #367689

    Hey Nelson!

    Thank you for coming back.

    In custom.css or Enfold->Styles->QuickCSS put the following:

    
    .page-id-10 #after_layer_slider_1 .template-page {
        padding-top: 0 !important;
    }
    

    To remove the white line:

    
    #after_layer_slider_1 .template-page {
        padding-top: 0 !important;
        margin-top: -1px !important;
    }
    
    

    Cheers!
    Günter

    in reply to: Remove Author Link #367685

    Hi Hanson!

    Thank you for coming back.

    Did you uncheck the box “Blog Post Author” in Enfold->BlogLayout in the section “Blog meta elements” ?

    Regards,
    Günter

    in reply to: Use archive.php for tags #366615

    Hi!

    Thank you for coming back.

    Try to put the following in styles.css of the child theme or Enfold->Styles->QuickCSS field:

    
    .tag-page-post-type-title{
    display: none !important;
    }
    

    Cheers!
    Günter

    in reply to: Mysterious error due to power lost when I saved page #365987

    Hi Effektid!

    Thank you for using our theme.

    Are you using a cache plugin? I changed the order of the CSS Code, but I still get the same output.

    Did you already try to deactivate all plugins?

    You can also try to put the CSS code in styles.css of the childtheme and remove it from QuickCSS.

    Regards,
    Günter

    in reply to: WPML Customization #365976

    Hey!

    Glad we could help you.

    Enjoy the theme.

    Best regards,
    Günter

    in reply to: Blockquote #365972

    Hey Carsten!

    Thank you for using our theme.

    You have to put the code in styles.css of the child theme.

    Have a look at this:

    http://www.wpbeginner.com/wp-themes/how-to-customize-blockquotes-style-in-wordpress-themes/

    It will help you to start.

    If you still have problems, feel free to come back and give us a link to the pages, so we can assist you.

    Best regards,
    Günter

    in reply to: Hide date from Enfold Latest Portfolio widget #365966

    Hey iamconsultingsrl!

    Thank you for using our theme.

    In custom.css or Enfold->Styles->QUICK-CSS field put the following:

    
    .widget.newsbox .news-time {
        display: none !important;
    }
    

    For the image:

    
    .widget.newsbox .news-thumb {
        display: none !important;
    }
    

    Cheers!
    Günter

    in reply to: Hidden or delete Date on article under a "Magazine box" #365289

    Hi MICHAEL!

    Thank you for using our theme.

    In custom.css or Enfold->Styles->QuickCSS try to pu the following:

    
    ´
    .av-magazine .av-magazine-time {
        display: none !important;
    }
    

    If this does not work, can you post us a link to the page pls.

    Regards,
    Günter

    in reply to: Random order for Partner/Logo Element #365281

    Hi!

    I hope, you enjoy the theme.

    Feel free to come back with further inquiries.

    Regards,
    Günter

    in reply to: Random order for Partner/Logo Element #365254

    Hey!

    Thank you for coming back.

    I’m sorry to tell you that it is not possible to find a quick solution for your request.

    I found out, that it needs a huge modification in the logic of several functions in this file.

    It is possible to implement, but this is customization and bejond the scope of support.

    Regards,
    Günter

    in reply to: Random order for Partner/Logo Element #364717

    Hey!

    I give you the full code for a quick solution:

    Replace the original code

    
    $this->slides = get_posts(array(
    				'include' => $ids,
    				'post_status' => 'inherit',
    				'post_type' => 'attachment',
    				'post_mime_type' => 'image',
    				'order' => 'ASC',
    				'orderby' => 'post__in')
    				);
    
    //resort slides so the id of each slide matches the post id
    			$new_slides = array();
    			foreach($this->slides as $slide)
    			{
    				$new_slides[$slide->ID] = $slide;
    			}
    
    

    with:

    
    $this->slides = get_posts(array(
    				'include' => $ids,
    				'post_status' => 'inherit',
    				'post_type' => 'attachment',
    				'post_mime_type' => 'image',
    				'order' => 'ASC',
    				'orderby' => 'rand')
    				);
    
                            $resort = false;
    			$new_slides = $this->slides;
    
    			//resort slides so the id of each slide matches the post id
    			if($resort)
    			{
    				$new_slides = array();
    				foreach($this->slides as $slide)
    				{
    					$new_slides[$slide->ID] = $slide;
    				}
    			}
    

    Cheers!
    Günter

    in reply to: Random order for Partner/Logo Element #364651

    Hi!

    Sorry, I missed that a resorting is taking place a couple of lines below.

    Locate the following just below:

    
    //resort slides so the id of each slide matches the post id
    			$new_slides = array();
    			foreach($this->slides as $slide)
    			{
    				$new_slides[$slide->ID] = $slide;
    			}
    

    and replace with:

    
                            $resort = apply_filters( 'avf_logoslider_resort_slides', true);
    			$new_slides = $this->slides;
    
    			//resort slides so the id of each slide matches the post id
    			if($resort)
    			{
    				$new_slides = array();
    				foreach($this->slides as $slide)
    				{
    					$new_slides[$slide->ID] = $slide;
    				}
    			}
    
    

    In functions.php add the following:

    
    add_filter('avf_logoslider_resort_slides', 'my_logoslider_resort');
    function my_logoslider_resort($resort)
    {
          return false;
    }
    

    As a quick fix replace:

    
     $resort = apply_filters( 'avf_logoslider_resort_slides', true);
    

    with

    
     $resort = false;
    

    Regards,
    Günter

    in reply to: Random order for Partner/Logo Element #364614

    Hey Siracher!

    Thank you for using our theme.

    Currently it is not possible out of the box. You have to modify the folllowing core file:

    enfold\config-templatebuilder\avia-shortcodes\logoslider.php

    Locate line 350:

    
    $this->slides = get_posts(array(
    				'include' => $ids,
    				'post_status' => 'inherit',
    				'post_type' => 'attachment',
    				'post_mime_type' => 'image',
    				'order' => 'ASC',
    				'orderby' => 'post__in')
    				);
    

    and replace with:

    
    $this->slides = get_posts(array(
    				'include' => $ids,
    				'post_status' => 'inherit',
    				'post_type' => 'attachment',
    				'post_mime_type' => 'image',
    				'order' => 'ASC',
    				'orderby' => 'rand')
    				);
    

    This is a quick fix.

    I post a filter hook to kriesi, maybe in the next releases it will be integrated:

    Replace the code above with:

    
    $args = apply_filters( 'avf_logoslider_select_args', 
    					array(	'include' => $ids,
    							'post_status' => 'inherit',
    							'post_type' => 'attachment',
    							'post_mime_type' => 'image',
    							'order' => 'ASC',
    							'orderby' => 'post__in' )
    					);
    			
    $this->slides = get_posts( $args );
    

    In functions.php of the theme or childtheme put the following:

    
    add_filter('avf_logoslider_select_args', 'my_logoslider_select_args');
    
    function my_logoslider_select_args ($args)
    		{
    			$args['orderby'] = 'rand';
    			return $args;
    		}
    
    

    If this hook is integrated, you just have to make sure, that you put the code in functions.php.

    Regards,
    Günter

    in reply to: Icon Box, icon and icons list #364606

    Hey!

    Glad we could help you. Enjoy the theme.

    Regards,
    Günter

    in reply to: Socket Issues – stretching to fill page #364587

    Hey tjswarbs78!

    Thank you for using our theme.

    I think, there is a plugin causing the problem.

    Try to deactivate all plugins and check the page.

    Then reactivate the plugins one by one.

    Regards,
    Günter

    in reply to: Woocommerce errors #364580

    Hi!

    Glad we could help you. Enjoy the theme.

    Cheers!
    Günter

    in reply to: Make content area same width as header menu #364578

    Hey nigellim68!

    Thank you for using our theme.

    In custom.css or Enfold.->Styles->QuickCSS put the following:

    
    .container {
        padding: 0 !important;
    }
    

    Best regards,
    Günter

    in reply to: Less white space #364575

    Hi!

    Glad we could help you. Enjoy the theme.

    Best regards,
    Günter

    in reply to: Reduce height of breadcrumb container #364565

    Hi!

    Glad I could help you.
    Enjoy the theme.

    Regards,
    Günter

    in reply to: [SOLVED] Social icon have disappear #364564

    Hey!

    Thank you for using our theme and thanks for your feedback.

    Feel free to come back with any further inquiries.

    Enjoy the theme.
    Regards,
    Günter

    in reply to: Enable Sticky posts #364041

    Hey kristenangel!

    Thank you for coming back.

    Sticky posts are a bit weird in WP and this is a known problem.

    Maybe this can help you:

    https://kriesi.at/support/topic/sticky-posts-not-working/
    https://kriesi.at/support/topic/functions-php-error/

    Cheers!
    Günter

    in reply to: Ich habe so viele Probleme – Sidebar #364039

    Hey mistral2!

    Danke für die Benützung des Forums.

    Versuche einmal ein leeres Textwidget in das Blog Sidebar widget zu geben, um die Anzeige von Defaults bei leeren Widgets zu unterdrücken.

    Sollte das nichts helfen, wäre ein Link zu der Seite hilfreich.

    Danke.

    Regards,
    Günter

    in reply to: Change font colour on menu button #364037

    Hey makeitbritish!

    Thank you for coming back.

    The menu ID changed.

    Use the following code:

    
    #menu-item-2752 a span{
    color: white;
    }
    

    Regards,
    Günter

    in reply to: How to add margin -top for only large screen. #364033

    Hi idpokute!

    Thank you for using our theme.

    You have to wrap your CSS in a media query like:

    
    @media only screen and (min-width: 1030px) {
         .your_class{
              margin-top:  20px !important;
            }
    }
    

    Put this AFTER the CSS code without media query and adjust the width.

    Regards,
    Günter

Viewing 30 posts - 3,241 through 3,270 (of 3,751 total)