Forum Replies Created

Viewing 30 posts - 3,391 through 3,420 (of 3,713 total)
  • Author
    Posts
  • in reply to: What happens when plugins are deactivated? #306189

    Hey LepsienArtFoundation!

    Thank you for using our theme.

    What you could try first: increase the size of php memory for the admin. Put in wp-config.php before the line

    
    require_once(ABSPATH . 'wp-settings.php');
    

    the following:

    
    define( 'WP_MAX_MEMORY_LIMIT', '256M' );
    

    The normal behaviour of plugins on deactivation should be to keep all settings, but of course we cannot guarantee and do not know what any third party extensions does. This remains on your risk.

    Our theme keeps its settings when changing to another theme.

    Regards,
    Günter

    in reply to: Team Member Customizations #306179

    Hey lightmerger!

    Thank you for using our theme.

    Your request is not possible with the theme out of the box. It requires some costumization, which is beyond the scope of support.

    You will have to put some additional php code in

    enfold\config-templatebuilder\avia-shortcodes\team.php line 232 ff, after:

    
    	$output .= "<div class='team-social'>";
    		$output .= "<div class='team-social-inner'>";
    

    Regards,
    Günter

    in reply to: testimonials grid changing Name and Quote sequence #306170

    Hey capuchin!

    Thank you for using our theme.

    Add the following code in functions.php at the end:

    
    function add_custom_script(){
    ?>
    <script>
    jQuery(function() {
    	jQuery(".avia-testimonial-meta").each(function(){
    		jQuery(this).closest('.avia-testimonial_inner').find(".avia-testimonial-content").prepend(jQuery(this));
    	});
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');
    

    You will porbably need some CSS adjustments.

    Regards,
    Günter

    • This reply was modified 10 years, 6 months ago by Günter.
    in reply to: Blog, Small image, single author, image size #306150

    Hi!

    Glad I could help you.

    Enjoy the theme.

    Cheers!
    Günter

    in reply to: Incorrect page titles #305814

    Hi!

    Thank you for your feedback.

    I now pasted the code in functions.php of your child theme, which you are using.

    if I now open http://www.eltjob.com/job/torino-1/, I find the headline with ESL English teachers in Torino, same as the post headline.

    Maybe you forgot to clear the browser cache or something went wrong with copy/paste.

    Regards,
    Günter

    in reply to: Widget display: blog, pages, everywhere #305714

    Hi!

    No, you can only delete/remove the lines in the parent theme. There is currently no possibility to supress these lines from the child theme.

    Regards,
    Günter

    in reply to: Incorrect page titles #305697

    Hey!

    I fixed the code. Replace all the above with:

    
    add_filter('avf_title_args', 'fix_single_post_title', 50, 2);
    function fix_single_post_title($args,$id)
    {
    		if ( is_category() )
    		{
    			$output = __('','avia_framework')." ".single_cat_title('',false);
    		}
    		elseif (is_day())
    		{
    			$output = __('','avia_framework')." ".get_the_time( __('F jS, Y','avia_framework') );
    		}
    		elseif (is_month())
    		{
    			$output = __('','avia_framework')." ".get_the_time( __('F, Y','avia_framework') );
    		}
    		elseif (is_year())
    		{
    			$output = __('','avia_framework')." ".get_the_time( __('Y','avia_framework') );
    		}
    
    		if(!empty($output)) $args['title'] = $output;
    
    		return $args;
    }
    
    add_filter('avf_title_args', 'fix_blog_page_title', 60, 1);
    function fix_blog_page_title($args) {
    	if(is_singular() && !is_page()) 
    	{
    		$args['title'] = get_the_title();
    		$args['link'] = get_permalink();
    	}
    	return $args;
    }
    

    Cheers!
    Günter

    in reply to: Menu im Header von einer bestimmten Seite entfernen #305686

    Hey crevlon!

    Danke, dass Sie unser Theme benutzen.

    Fügen Sie in custom.css oder Enfold->Styles->Quick-CSS Feld folgenden Code ein und ersetzen Sie bei page-id-2632 2632 durch die gewünschte id Ihrer Seite.

    
    .page-id-2632 #avia-menu .menu-item.menu-item-top-level {
        display: none;
    }
    

    Best regards,
    Günter

    in reply to: WooCommerce account login/logout (not WP account) #305674

    Hey!

    Thank you for using our theme and the forum.

    Glad you found a solution to your problem.

    Fell free to come back with any further questions.
    Enjoy the theme.

    Regards,
    Günter

    in reply to: How to change first word "Home" in breadcrumbs? #305664

    Hey!

    Glad we could help you. Enjoy the theme.

    Best regards,
    Günter

    in reply to: Author Page – Full content? #305647

    Hi!

    Glad I could help you. Enjoy the theme.

    Cheers!
    Günter

    in reply to: Blog, Small image, single author, image size #305646

    Hey!

    Replace the code above with the following:

    
    .single-post .single-small.with-slider .small-preview {
        height: 80px !important;
        width: 80px !important;
    }
    

    Regards,
    Günter

    in reply to: Author Page – Full content? #305631

    Hi Martin!

    Thank you for using our theme.

    You have to modify the following file:

    wp-content\themes\enfold\includes\loop-author.php

    Goto line 32 and replace

    
    $current_post['content'] 	= get_the_excerpt();
    

    with

    
    $current_post['content'] 	= get_the_content();
    

    Best regards,
    Günter

    • This reply was modified 10 years, 6 months ago by Günter.
    in reply to: Changing layout Search Results #305613

    Hey!

    Thank you for using our theme and the support forum.

    Enjoy the theme and come back with any further questions you have.

    Cheers!
    Günter

    in reply to: Font Size #305610

    Hey!

    Try to use the following:

    
    .avia_textblock p {
        font-size: 16px !important;
    }
    

    The textblocks on the homepage have in the tag <p style=”font-size: 12px;”>. This might break the code above, so if it does not work try to remove the style attribute.

    Best regards,
    Günter

    in reply to: Blog, Small image, single author, image size #305608

    Hey rpl_admin!

    Thank you for using our theme.

    The default image size on the single blog page ist 180*180px.

    You can change it to a smaller size. Put the following in enfold/css/custom.css or Dashboard->Enfold->Styles->Quick-CSS field and adjust the values:

    
    .single-post .single-small .small-preview{
        height: 80px !important;
        width: 80px !important;
    }
    

    Cheers!
    Günter

    • This reply was modified 10 years, 6 months ago by Günter.
    in reply to: Category sorting #305606

    Hey satucker!

    Thank you for using our theme.

    As you mentioned already, by default this is not supported by the theme.
    Of course, it is possible to implement, but this is customization and beyond the scope of support.

    Regards,
    Günter

    in reply to: Product single page layout #305603

    Hey!

    Glad we could help you.

    Enjoy the theme.

    Best regards,
    Günter

    in reply to: Add additional icons? #305601

    Hey!

    Glad we could help you. Enjoy the theme.

    Regards,
    Günter

    in reply to: Changing Blog Title #305590

    Hey!

    Sorry, there is a syntax error with “. Replace it with ‘ used with ‘title’.

    
    add_filter('avf_title_args', 'fix_single_post_title', 10, 2);
    function fix_single_post_title($args,$id)
    {
    if ( $args['title'] == 'Blog - Latest News' )
    {
    $args['title'] = 'Training Blog';
    }
    
    return $args;
    }
    

    Regards,
    Günter

    in reply to: Changing Blog Title #305484

    Hi!

    The code should work.

    What do you mean with ” functionality plugin”?

    You must insert the code above at the bottom of enfold/functions.php or if using a child theme in enfold-child/functions.php.

    If you want, give us an admin login to your page and we can insert the code for you,

    Regards,
    Günter

    in reply to: Remove Comment Count for Enfold #305482

    Hey!

    Glad I could help you. Enjoy the theme.

    Regards,
    Günter

    in reply to: Additional social media icons in footer widget #305426

    Hey Simon!

    Thank you for using our theme.

    Have a look at the following posts:

    https://kriesi.at/support/topic/place-social-media-icons-into-a-widget/
    https://kriesi.at/support/topic/social-icons-in-footer-socket/

    If you did not find what you are looking for, pls come back.

    Cheers!
    Günter

    in reply to: Changing Blog Title #305425

    Hey heufti65!

    Thank you for using our theme.

    Add following code to the bottom of functions.php:

    
    add_filter('avf_title_args', 'fix_single_post_title', 10, 2);
    function fix_single_post_title($args,$id)
    {
    if ( $args['title'] == 'Blog - Latest News' )
    {
    $args['title'] = “Training Blog”;
    }
    
    return $args;
    }
    

    This will replace the “Blog – Latest News” with “Training Blog”.

    Cheers!
    Günter

    in reply to: Remove Comment Count for Enfold #305423

    Hi courtney_martin!

    Thank you for using our theme.

    In custom.css or enfold-styles-Quick-CSS field put the following:

    
    #main .minor-meta.comment-container, 
    #main .text-sep-comment{
    display: none;
    }
    
    

    I fixed this in core files and postet it for a patch. It will probably be fixed in one of the next updates.

    Regards,
    Günter

    in reply to: How do I remove a certain field in my footer? #305419

    Hey tinagianna!

    Thank you for using our theme.

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

    
    .widget_yikes_mc_widget .yks-require-description{
    display: none !important;
    }
    

    Regards,
    Günter

    in reply to: Fine line between Color Section #305334

    Hey!

    Glad I could help you. Enjoy the theme.

    Best regards,
    Günter

    in reply to: How to show mobile menu on all screen sizes? #305333

    Hey Chris2234!

    Thank you for using our theme.

    Have a look at this topic:

    https://kriesi.at/support/topic/mobile-menu-for-all-size-resolutions/

    Let us know, if it solved your problem.

    Regards,
    Günter

    in reply to: color change at the icon-list? #305313

    Hey talelie!

    Thank you for using our theme.

    Please have a look at this post:

    https://kriesi.at/support/topic/change-color-of-icons-in-icon-list/

    It will certainly help you. Please let us know.

    Regards,
    Günter

    in reply to: Changes to functions-enfold.php #305311

    Hey Knut!

    Thank you for using our theme.

    Updates only override files of the parent theme.

    To avoid your changes to be overwritten, you should use a child theme and place your changes in functions.php of the child theme. This file will be loaded before functions.php of the parent theme.

    If you do not want to use a child theme, I would suggest you create a file like my_functions.php, put your code inside that file and add at the bottom of functions.php:

    
    require_once('my_functions.php');
    

    If you do not delete the files on update you will only have to add this line after updateing the theme.

    Best regards,
    Günter

Viewing 30 posts - 3,391 through 3,420 (of 3,713 total)