Forum Replies Created

Viewing 30 posts - 3,121 through 3,150 (of 3,715 total)
  • Author
    Posts
  • in reply to: Kann ich im child theme elemente von plugins einfügen? #387626

    Hi adrianwackernah!

    Danke, dass Sie das Forum benutzen.

    Man kann alle CSS Änderungen entweder im der Datei enfold-child\style.css eintragen oder auch in Enfold-Child->General Styling->QuickCSS.

    Best regards,
    Günter

    in reply to: Random post slider #387622

    Hey!

    Thank you for coming back.

    There is only a workaround:

    In functions.php at the bottom activate custom css for the ALB:

    
    /*
     * add option to edit elements via css class
     */
     add_theme_support('avia_template_builder_custom_css');
    

    This adds a field Custom Css Class at the bottom of the post slider popup.
    Enter there a name to the slider(s) you want to change, e.g. my_random_sliders

    Replace the code above with the following:

    
    add_filter('avia_post_slide_query', 'my_avia_post_slide_query', 10, 2);
     
     function my_avia_post_slide_query($query, $params)
     {
    	 $needle = 'my_random_sliders';
    	 if( isset($params['class']) && ( stripos( $params['class'], $needle ) !== false) )
    	 {
    		$query['orderby'] = 'rand';
    	 }
    	 
    	 return $query;
     }
    

    Cheers!
    Günter

    in reply to: How do i make the excerpt longer? #387253

    Hi!

    Thank you for coming back.

    Try to replace the code above with the following:

    
    	add_filter( 'excerpt_length', 'new_excerpt_length' );
    	function new_excerpt_length( $more ) 
    	{
    		if(is_home())
    		{
    			return 550;
    		}
    		else 
    		{
    			return 50;
    		}
    	}
    

    If it does not work, can you give us an admin access to your site pls?

    Cheers!
    Günter

    in reply to: Search results: random order #387244

    Hey!

    Glad you found a solution. Thank you for this update.

    Enjoy the theme.

    Best regards,
    Günter

    in reply to: Remove blog grid title #386982

    Hi!

    Great I could help you. Enjoy the theme.

    Best regards,
    Günter

    in reply to: Random post slider #386980

    Hi reddishpinkmedia!

    Thank you for coming back.

    There is a filter hook, where you can manipulate the query parameters.

    In functions.php use code like:

    
     add_filter('avia_post_slide_query', 'my_avia_post_slide_query', 10, 2);
     
     function my_avia_post_slide_query($query, $params)
     {
    	 
    	 $query['orderby'] = 'rand';
    	 
    	 return $query;
     }
    

    More info about $param you find at: enfold\config-templatebuilder\avia-shortcodes\postslider.php line 452 – 510.

    Cheers!
    Günter

    Hi!

    I implemented it and posted the update request to Kriesi.
    Enjoy the theme.

    Best regards,
    Günter

    Hi!

    Thank you for coming back.

    If you have only few pages that need the title you can modify the filter hook:

    
    add_filter('avf_title_args', 'my_avf_title_args', 10, 2 );
    
    function my_avf_title_args ($args, $id)
    {
    		//	enter all the ID's of the pages that need a title seperated by ,
    	$pages_titles = array(
    			150, 200, 210
    			);
    	if ( ! in_array( $id, $pages_titles ) )
    	{
    		$args['title'] = '';
    	}
    	
    	return $args;
    }
    

    I will try to implement this feature, so it will be in the core in one of the next updates.

    Cheers!
    Günter

    in reply to: How do i make the excerpt longer? #386938

    Hey donbaek!

    Thank you for using our theme.

    In functions.php put something like the following code:

    
    	add_filter( 'excerpt_length', 'new_excerpt_length' );
    	function new_excerpt_length( $more ) 
    	{
    		if(is_front_page())
    		{
    			return 150;
    		}
    		else 
    		{
    			return 50;
    		}
    	}
    

    Also see the following post:

    http://wordpress.stackexchange.com/questions/6310/how-to-control-manual-excerpt-length

    Cheers!
    Günter

    in reply to: Remove date from search #386928

    Hi!

    @wingman

    Thank you for using the forum.

    Try the following:

    
    .ajax_search_excerpt {
        display: none !important;
    }
    

    If it does not help, can you send us a link to your page so we can have a look?

    Regards,
    Günter

    in reply to: Search filter for Holiday Business #386924

    Hi!

    Thank you for visiting the forum. Enjoy the theme.

    Regards,
    Günter

    in reply to: Remove post title #386921

    Hey!

    Glad I could help you. Enjoy the theme.

    Best regards,
    Günter

    in reply to: Remove blog grid title #386919

    Hey!

    Thank you for coming back.

    Check again in your setup of the contact form, that all opening <div> have a closing </div> – I think there is one missing.

    To get access to your WP Backend we need an admin account: Add a username and password and give that user admin rights. You can post this data in the private section and after we are finished delete this user.

    Best regards,
    Günter

    in reply to: Change color of Strikethrough text #386914

    Hi buellfire!

    Thank you for using our theme.

    To change the color of all del elements you can use:

    
    del {
        color: red !important;
    }
    

    To limit it to a special page, e.g :

    
    .page-id-2632 del {
        color: red !important;
    }
    

    Regards,
    Günter

    in reply to: Remove post title #386911

    Hey!

    Thank you for coming back.

    For the given link the code is:

    
    .home .entry-content-header {
        display: none !important;
    }
    

    Regards,
    Günter

    in reply to: "Title Bar Settings": how to set this to "only breadcrumbs"? #386906

    Hey COLORIT!

    Thank you for using our theme.

    Currently the easiest way is with CSS and limiting the code to the pages, where you want to hide the title like:

    
    
    .page-id-2630 .title_container .main-title,
    .page-id-2632 .title_container .main-title {
        display: none !important;
    }
    

    Alternative you can use a filter hook. Add the following to functions.php at the end:

    
    add_filter('avf_title_args', 'my_avf_title_args', 10, 2 );
    
    function my_avf_title_args ($args, $id)
    {
    		//	enter all the ID's of the pages with no title seperated by ,
    	$no_titles = array(
    			150, 200, 210
    			);
    	if (  in_array( $id, $no_titles ) )
    	{
    		$args['title'] = '';
    	}
    	
    	return $args;
    }
    

    Best regards,
    Günter

    in reply to: How to change the "You are here:" text in breadcrumbs #386898

    Hey!

    Glad we could help you. Enjoy the theme.

    Best regards,
    Günter

    in reply to: Can't seem to bold my body text #386491

    Hi ShortieD!

    Thank you for coming back.

    It looks fine for me on FF. Did you clear your browser cache and reload the page?

    Cheers!
    Günter

    in reply to: Auto-update current year in footer copyright notice #386478

    Hi!

    Glad we could help you. Enjoy the theme.

    Best regards,
    Günter

    in reply to: How to increase the text size inside an accordion element? #386474

    Hi DROR!

    Use the following:

    
    .single_toggle .toggler {
        font-size: 20px !important;
    }
    
    .single_toggle .toggle_content > p {
        font-size: 20px !important;
    }
    

    Best regards,
    Günter

    in reply to: Remove blog grid title #386460

    Hey!

    Thank you for coming back.

    Something seems to break the HTML structure, because the container containing the single blog post stretches over the complete width of the screen and pushes the sidebar down. But I cannot figure out, what is the problem.

    Maybe you can create a new post with only simple text in it, check if it is displayed correctly with the sidebar to the right and then add step by step the elements you used in this post and see, when the design breaks.

    You also should try to deactivate all plugins and reactivate them one by one.- this might also be a reason.

    If you still have problems, can you make us an admin account so we can have a look, pls.

    Cheers!
    Günter

    in reply to: How to increase text size in a pricing table? #386406

    Hey!

    Glad I could help you. Enjoy the theme.

    Cheers!
    Günter

    in reply to: "Button" element with NO LINK not possible? #386403

    Hi!

    Glad we could help you. Enjoy the theme.

    Regards,
    Günter

    in reply to: Do not show sidebar homepage #386401

    Hi dekoff!

    Thank you for coming back.

    If you open the homepage from the WP Dashboard->pages for editing you find a section “Layout” with a select box “Layout”, where you can select “No Sidebar”.

    Best regards,
    Günter

    in reply to: How to increase text size in a pricing table? #386368

    Hi!

    Try the following:

    
    .pricing-table .avia-button {
        font-size: 20px !important;
    }
    

    Cheers!
    Günter

    in reply to: How to change the "You are here:" text in breadcrumbs #386349

    Hey!


    @mediax2014

    You find this string on 2 places: at line 26 and 186. Change both occurrencies.

    Best regards,
    Günter

    in reply to: Custom CSS Class dont work in quick Css #386344

    Hi!

    Glad I could help you. Enjoy the theme.

    Regards,
    Günter

    in reply to: "Button" element with NO LINK not possible? #386338

    Hi COLORIT!

    Thank you for coming back.

    It is actually not possible to use this element without a link.
    Even if you set href = “” in HTML code this link is set to the current page by the browser by default.

    If you want to remove the “manually” from the link you have to change the core code of enfold\config-templatebuilder\avia-shortcodes\buttons.php line 277:

    Find:

    
    $link  = $link == "http://"  ? "" : $link;
    

    and replace with:

    
    $link  = ($link == "http://" || $link == "manually") ? "" : $link;
    

    I suggested this change to Kriesi – probably it will be in the core in future releases.

    Cheers!
    Günter

    in reply to: Custom CSS Class dont work in quick Css #386315

    Hi!

    It is working now.

    You forgot the closing } from the media query and also for the code above.

    Cheers!
    Günter

    in reply to: How to increase text size in a pricing table? #386304

    Hey DROR!

    Thank you for coming back.

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

    
    .pricing-table .first-table-item {
        font-size: 20px !important;
    }
    
    .pricing-table > li {
        font-size: 20px !important;
    }
    
    .pricing-table li.avia-pricing-row {
        font-size: 60px !important;
    }
    

    Cheers!
    Günter

Viewing 30 posts - 3,121 through 3,150 (of 3,715 total)