Forum Replies Created

Viewing 30 posts - 21,691 through 21,720 (of 82,585 total)
  • Author
    Posts
  • in reply to: Change automated user bio #784249

    Hi,

    My bad, please change the code to following one

    add_filter('avf_author_description','av_new_avf_author_description'); 
    function av_new_avf_author_description(){ 
    	global $avia_config;
    
    	$author_id    = get_query_var( 'author' );
    	if(empty($author_id)) $author_id = get_the_author_meta('ID');
    	
    	$name         = apply_filters('avf_author_name', get_the_author_meta('display_name', $author_id), $author_id);
    	$email        = apply_filters('avf_author_email', get_the_author_meta('email', $author_id), $author_id);
    	
    	$gravatar_alt = esc_html($name);
    	$gravatar     = get_avatar($email, '81', '', $gravatar_alt);
    	$name         = "<span class='author-box-name' ".avia_markup_helper(array('context' => 'author_name','echo'=>false)).">". $name ."</span>";
    	$heading      = __("About",'avia_framework') ." ". $name;
    	$description  = get_the_author_meta('description', $author_id);
    
        echo '<section class="author-box" '.avia_markup_helper(array('context' => 'author','echo'=>false)).'>';
    	if(empty($description))
    	{
    		$description  = __("This author has yet to write their bio.",'avia_framework');
    		$description .= '</br>'.sprintf( __( 'Meanwhile lets just say that we are proud %s TESTING HERE %s entries.', 'avia_framework' ), $name, count_user_posts( $author_id ) );
    
    		if(current_user_can('edit_users') || get_current_user_id() == $author_id)
    		{
    	    	$description .= "</br><a href='".admin_url( 'profile.php?user_id=' . $author_id )."'>".__( 'Edit the profile description here.', 'avia_framework' )."</a>";
    		}
    	}
        return $description;
    }

    Best regards,
    Yigit

    in reply to: WooCommerce QUERY_STRING error #784170

    Hi!

    I got following error and could not connect. Can you please check the credentials once again?

    Best regards,
    Yigit

    in reply to: Add arrow to the active tab #784166

    Hi,

    @george Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .menu li > a:after { content: ' ▾'; } 
    .menu li > a:only-child:after { content: ''; }
    

    Please make sure that > sign is not converted to – http://i.imgur.com/IDXRZQ3.png in Quick CSS field.

    Best regards,
    Yigit

    in reply to: WooCommerce QUERY_STRING error #784157

    Hi,

    Can you please post WP admin and FTP logins here privately so we can look further into it?

    Best regards,
    Yigit

    in reply to: Remove space #784155

    Hi,

    You are welcome!

    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
    For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)

    Best regards,
    Yigit

    in reply to: Enfold Showcase #784154

    Hi,

    @Webber Thanks for your kind words! Your website looks really nice :)

    Best regards,
    Yigit

    Hi,

    I see that you have changed the code to following one

    .home .header_bg {
        background:  #6e2a7d;
    }

    If you would like to display transparent header even when scrolled down on all pages, please use the code as following

    .header_bg {
        background:  transparent!important;
    }

    If that is not what you meant, please elaborate :)

    Best regards,
    Yigit

    in reply to: Can't edit page anymore #784150

    Hi,

    You are currently using PHP version 5.6.30 and that should not cause any issues. Hopefully, your hosting providers shed a light on it :)

    Best regards,
    Yigit

    Hey!

    I added following code to bottom of Quick CSS field in Enfold theme options > General Styling tab

    .home #header_main {
        border: none;
    }
    .home .header_bg {
        background: transparent;
    }

    Please review your website and remove “.home” classes from codes if you would like to apply the changes globally and not only on home page

    Best regards,
    Yigit

    in reply to: WHY IS MY QUESTION NOT BEING ANSWERED BY SUPPORT???? #784081

    Hey,

    Sorry for the late reply. We have a queue and reply each and every thread however depending on how busy forum is, it may unfortunately take longer sometimes.
    We have replied to your thread which you started 22 hours ago and there does not seem to be another one. Let us continue there.

    Regards,
    Yigit

    in reply to: WooCommerce QUERY_STRING error #784080

    Hey!

    Can you please try re-updating the theme via FTP and overwrite all files – kriesi.at/documentation/enfold/updating-your-theme-files/?

    Also, Please try to increase the allocated memory to 256M: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
    You can contact your service provider and they can do it for you.

    Best regards,
    Yigit

    in reply to: Change automated user bio #784078

    Hi,

    Please add following code to Functions.php file in Appearance > Editor and change the text as needed

    add_filter('avf_author_description','av_new_avf_author_description'); 
    function av_new_avf_author_description(){ 
    	$author_id    = get_query_var( 'author' );
    	if(empty($author_id)) $author_id = get_the_author_meta('ID');
    $name         = apply_filters('avf_author_name', get_the_author_meta('display_name', $author_id), $author_id);
    
    		$description  = __("This author has yet to write their bio.",'avia_framework');
    		$description .= '</br>'.sprintf( __( 'Meanwhile lets just say that we are proud %s contributed a whooping %s entries.', 'avia_framework' ), $name, count_user_posts( $author_id ) );
    
    		if(current_user_can('edit_users') || get_current_user_id() == $author_id)
    		{
    	    	$description .= "</br><a href='".admin_url( 'profile.php?user_id=' . $author_id )."'>".__( 'Edit the profile description here.', 'avia_framework' )."</a>";
    		}
    return $description; 
    }

    Best regards,
    Yigit

    in reply to: Change mobile menu #784070

    Hi!

    You are welcome!

    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
    For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)

    Best regards,
    Yigit

    Good morning Emilie!

    Sure! We will keep the thread open and wait to hear from you :)

    Best regards,
    Yigit

    in reply to: Can't edit page anymore #784066

    Hi,

    It seems to be server issue. Can you please contact your hosting provider and tell them that you are getting “ERR_CONTENT_DECODING_FAILED” error?

    Best regards,
    Yigit

    in reply to: Kalıcı Bağlantı sorunu #784052

    Merhabalar,

    Lutfen Ayarlar > Kalici Baglantilar’a gidip “Duz” secip degisiklikleri kaydedin sonrasinda tekrar /%postname%/ olarak ayarlayip tekrar kaydedin :)

    Best regards,
    Yigit

    Hi,

    That seems to be a better solution :)
    Please add following code to Quick CSS instead

    @media only screen and (max-width: 767px) {
    #top .container .av-masonry-col-flexible .av-masonry-entry {
        width: 100%;
    }}

    Best regards,
    Yigit

    in reply to: theme upgrade doesn't work 4.0.5 #784046

    Hi,

    I updated WordPress to the latest version manually as well. Something seems to be wrong on your installation. Can you please contact your hosting provider? They should be able to point out the cause of the issue

    Best regards,
    Yigit

    Hey!

    Can you please post FTP logins here privately as well?

    Regards,
    Yigit

    P.S.: You do not need to bump your own threads. We have a queue and every thread gets replied :)

    in reply to: Update Enfold + WP #784040

    Hi!

    They show up fine on my end.
    Please flush browser cache and refresh your page a few times – http://wiki.scratch.mit.edu/wiki/Hard_Refresh

    Best regards,
    Yigit

    in reply to: SPECIAL HEADING CUSTOM – CSS CLASS #784019

    Hi!

    Thanks for your help @guenni007 :)

    Best regards,
    Yigit

    in reply to: Change mobile menu #784018

    Hi,

    You could try creating two different menus in Appearance > Menus one for mobile and one for desktop and then adding following code to Functions.php file in Appearance > Editor

    function av_different_mobile_menu( $args = '' ) {
    
    if(wp_is_mobile()) { 
    	$args['menu'] = 'main-menu-mobile';
    } else { 
    	$args['menu'] = 'main-menu';
    } 
    	return $args;
    }
    add_filter( 'wp_nav_menu_args', 'av_different_mobile_menu' );

    Best regards,
    Yigit

    in reply to: Broken links in main menu after child theme activation #784016

    Hi!

    It seems like you have not completed WordPress installation. Attached a screenshot in private content field. Can you please complete it and then let us know? :)

    Best regards,
    Yigit

    in reply to: Change logo #784013

    Hi,

    You are welcome! Glad Sarah could help :)

    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
    For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)

    Best regards,
    Yigit

    in reply to: Problems with mobile header #784012

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    @media only screen and (max-width: 480px) {
    .responsive #top #wrap_all .container.av-logo-container {
        margin: 0 30px;
    }}
    

    Best regards,
    Yigit

    in reply to: Icon list #784009

    Hey Krissie,

    Please enable the custom css class field: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and then edit your icon list element and give it a custom CSS class (‘my-custom-class’ in example below) and then add following code to Quick CSS in Enfold theme options under General Styling tab

    .my-custom-class .iconlist-char:before {
        display: none;
    }

    Best regards,
    Yigit

    in reply to: Image hover effect problem with Safari #784008

    Hi Steven,

    For time being i cannot think of anything better than first workaround. However i have noted this thread and let you know if i come up with something else :)

    Best regards,
    Yigit

    in reply to: Enfold Menü ist verschwunden #783988

    Hey Norbert!

    Thanks for contacting us!

    Can you please firstly register to our support forum here – https://kriesi.at/support/register/ and then post temporary admin logins in private content field? Also, please post screenshot showing the issue you are having. You can upload your screenshots on imgur.com or Dropbox public folder and post the links here :)

    Regards,
    Yigit

    Hi,

    That must be caching related. Please make sure to flush cache and refresh your page a few times after making changes on your site :)
    Glad Rikard could help!
    Let us know if you have any other questions or issues!

    Best regards,
    Yigit

    in reply to: no backend appears when updating enfold #783628

    Hey!


    @hjwalter
    Can you please try updating the theme manually via FTP – kriesi.at/documentation/enfold/updating-your-theme-files/?
    If that does not work as well, please start a new thread and attach WP admin logins and FTP logins in private content field so we can look into it.
    If you post them here, they will be visible to creator of this thread as well :)

    Cheers!
    Yigit

Viewing 30 posts - 21,691 through 21,720 (of 82,585 total)