Forum Replies Created

Viewing 30 posts - 3,001 through 3,030 (of 3,695 total)
  • Author
    Posts
  • in reply to: Author Name in Blog Archive (blog-grid mode) #394279

    Hey!

    Thank you for using our theme.

    You have to modify the core file enfold\config-templatebuilder\avia-shortcodes\postslider.php.

    Goto line 375 you find:

    
                       if($show_meta && !empty($excerpt))
    					{
    						$output .= "<div class='slide-meta'>";
    						
    						if ( $commentCount != "0" || comments_open($the_id) && $entry->post_type != 'portfolio')
    						{
    							$link_add = $commentCount === "0" ? "#respond" : "#comments";
    							$text_add = $commentCount === "1" ? __('Comment', 'avia_framework' ) : __('Comments', 'avia_framework' );
    
    							$output .= "<div class='slide-meta-comments'><a href='{$link}{$link_add}'>{$commentCount} {$text_add}</a></div><div class='slide-meta-del'>/</div>";
    						}
                            $markup = avia_markup_helper(array('context' => 'entry_time','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup));
    						$output .= "<time class='slide-meta-time updated' $markup>" .get_the_time(get_option('date_format'), $the_id)."</time>";
    						$output .= "</div>";
    					}
    

    Replace with:

    
     if($show_meta && !empty($excerpt))
    					{
    						$output .= "<div class='slide-meta'>";
    						
    						$author_id = $entry->post_author;
    						$author_name = get_the_author_meta('display_name', $author_id);
    						$author_link = get_the_author_meta('user_url', $author_id);
    						$output .= "<div class='slide-meta-comments'><a href='{$author_link}'>{$author_name}</a></div>";
    //						$output .= "<div class='slide-meta-del'>/</div>";
    						
    //						if ( $commentCount != "0" || comments_open($the_id) && $entry->post_type != 'portfolio')
    //						{
    //							$link_add = $commentCount === "0" ? "#respond" : "#comments";
    //							$text_add = $commentCount === "1" ? __('Comment', 'avia_framework' ) : __('Comments', 'avia_framework' );
    //
    //							$output .= "<div class='slide-meta-comments'><a href='{$link}{$link_add}'>{$commentCount} {$text_add}</a></div><div class='slide-meta-del'>/</div>";
    //						}
    //                        $markup = avia_markup_helper(array('context' => 'entry_time','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup));
    //						$output .= "<time class='slide-meta-time updated' $markup>" .get_the_time(get_option('date_format'), $the_id)."</time>";
    						$output .= "</div>";
    					}
    

    Cheers!
    Günter

    Hey!

    Glad we could help you. Enjoy the theme.

    Best regards,
    Günter

    in reply to: Posts problem #393756

    Hi!

    Glad I could help you. Enjoy the theme.

    Best regards,
    Günter

    in reply to: Posts problem #393689

    Hey!

    There is a problem with the intermal rewrite rules of WP.

    The permalink suha-gradnja seems to link to the old post, you deleted. It must be found in a .htaccess file.

    I added a new empty post with the permalink suha_gradnja that works. If you can live with that, simply copy your content into that post.

    Otherwise you must find the entry and remove it from the htaccess file.

    Cheers!
    Günter

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

    Hi!

    Glad we could help you. Enjoy the theme.

    Best regards,
    Günter

    in reply to: Remove bottom white area under footer and center text? #393664

    Hi crewneck!

    Thank you for coming back.

    Due to some reason the hr element is set to a height of 2500px causing this white area.

    Use the following and adjust the value:

    
    .home #main .entry-content-wrapper div.hr {
        height: 5px !important;
    }
    

    To center the headling text use:

    
    .home .entry-content-wrapper .avia_textblock h1 {
        text-align: center !important;
    }
    

    Cheers!
    Günter

    in reply to: Add code in page title container #393659

    Hi!

    Thank you for coming back.

    When using a chld theme, you must not copy functions.php from Enfiold.

    functions.php from the child theme is loaded before functions.php of the parent theme.

    Only your added functions have to be copied to the child theme and be deleted from the parent theme.

    DO NOT SET THE GLOBAL VARIABLE TO TRUE !!! This will avoid loading the parent functions.php.

    Come back, when you have problems.

    Best regards,
    Günter

    in reply to: Blogs #393652

    Hi!

    Thanks for coming back.

    1) You are using an old version of Enfold – you should upgrade WP and Enfold to the latest version.

    2) The posts have a permalink of: http://eazybranch.com/login.ingenuit.co/ which cannot be changed, as the WP button “Change Permalink” is missing.

    Adding a new post also results in the same permalink like above.

    You set the custom permalink structure to the value above. Probably WP cannot use this structure. Refer to

    http://codex.wordpress.org/Using_Permalinks

    for more information.

    Cheers!
    Günter

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

    Hey!

    Thank you for coming backl.

    Yigit code is working. I adjusted the value to 600.

    Come back, if we shall alter the value for you.

    Best regards,
    Günter

    • This reply was modified 9 years, 9 months ago by Günter.
    in reply to: No Dummy Data #393626

    Hey peterducato!

    Thank you for using our theme.

    This video refers to an older version of Enfold.

    It has been replaced with the tab Enfold->Demo Import, which allows you to choose from a number of different demos.

    Regards,
    Günter

    in reply to: Blogs #393618

    Hi prestigesolutions!

    Thank you for using our theme.

    I’ve visited your site, but I cannot find the problem.

    Can you pls specify the problem more clearly – where to click,……..

    Maybe a screenshot could also help.

    Cheers!
    Günter

    in reply to: Child Theme & Functions.php #393615

    Hi rpl_admin!

    Thank you for coming back.

    Functions.php of the child theme is loaded BEFORE functions,php of the parent theme Enfold.

    That means, you can move all

    
    add_action(.......)
    add_filter (....)
    

    AND all functions corresponding to these hooks to the child theme functions.php (and delete them from the parent functions.php).

    DO NOT REMOVE OR COPY from the parent theme:

    
    /*
    * register custom functions that are not related to the framework but necessary for the theme to run
    */
    
    require_once( ‘functions-enfold.php’);
    

    I think you will need the functionality of Enfold, so do not supress the loading of function.php of the parent theme.

    Hope, this will help you.

    Come back if you are not sure.

    Cheers!
    Günter

    in reply to: Padding error in color section #393607

    Hey!

    Thank you for coming back.

    Try the following and adjust the values:

    
    #av_section_1 {
        min-height: auto !important;
    }
    
    #av_section_1 .container {
        padding-bottom: 10px !important;
        padding-top: 10px !important;
    }
    

    To limit it to that page only:

    
    .page-id-4057 #av_section_1 {
        min-height: auto !important;
    }
    
    .page-id-4057 #av_section_1 .container {
        padding-bottom: 10px !important;
        padding-top: 10px !important;
    }
    

    Regards,
    Günter

    in reply to: Avatar neben Posts im Blog #393606

    Hi CBessler!

    Danke dass Du unser Theme verwendest.

    In functions.php am Ende:

    
    add_filter('avf_loop_index_blog_meta', 'my_avf_loop_index_blog_meta', 10, 1);
    
    function my_avf_loop_index_blog_meta ($blog_meta_output)
    {
    	if( is_blog()) $blog_meta_output = '';
    	
    	return $blog_meta_output;
    }
    

    LG
    Günter

    in reply to: Posts problem #393597

    Hey Marijana74!

    Thank you for using our theme.

    It seems, that you permalink stucture is broken.

    Have a look at:

    http://www.wpexplorer.com/change-permalinks-wordpress/

    If you still have problems, come back and give us an admin account to check please. You can post this here as a private post.

    Regards,
    Günter

    in reply to: Add code in page title container #393158

    Hi basdemos!

    Thank you for coming back.

    The breadcrumbs are inserted at:

    enfold\functions-enfold.php line 311 you find:

    
    if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));
    

    and the function is located in:

    enfold\framework\php\class-breadcrumb.php line 173

    Hope, this will help you.

    Regards,
    Günter

    in reply to: H3 Problem #393090

    Hi erkuto!

    Thank you for coming back.

    Can you post us the link to some pages with the problem, so we can check the CSS pls?

    Cheers!
    Günter

    Hi!

    To change the archive title add at the bottom of functions.php:

    
    add_filter('avf_which_archive_output', 'my_avf_which_archive_output', 10, 1);
    
    function my_avf_which_archive_output ($output)
    {
    	if ( is_post_type_archive('places') ) $output = 'Places';
    	
    	return $output;
    }
    

    Try to use the following, if the code above does not work:

    
    .archive .blog-meta {
        display: none !important;
    }
    
    or if you want it only on places archive
    

    .post-type-archive-places .blog-meta {
    display: none !important;
    }
    `

    Best regards,
    Günter

    in reply to: Reiter, Tabs und Accordions mit Mouse-Over-Funktion #392931

    Hey!

    Freut mich, dass ich Dir helfen konnte. Vile Freude mit dem Theme.

    Gerne stehen wir Dir für weitere Fragen zur Verfügung.

    LG
    Günter

    in reply to: Reiter, Tabs und Accordions mit Mouse-Over-Funktion #392459

    Hi!

    In Zeile 2441 ersetze die Zahl 200 durch eine höhere (=millisekunden)

    
                             content.addClass('active_tc').slideDown(200,
    

    Der Link ist weg – sorry, habe das nicht bedacht.

    LG
    Günter

    in reply to: Reiter, Tabs und Accordions mit Mouse-Over-Funktion #392155

    Hi!

    Du kannst folgendes versuchen:

    In der Datei enfold\js\shortcodes.js ca. Zeile 2418 findest Du folgendes:

    
    thisheading.on('click', function()
    

    Ersetze es durch:

    
    thisheading.on('mouseover', function()
    

    Falls es funktioniert, kann ich es an Kriesi weiterleiten, ob es eine Option wäre, es fix einzubauen.

    LG,
    Günter

    in reply to: Avia Codeblock wird nur als Platzhalter angezeigt #392097

    Hi!

    Danke für die Info.

    Ein Account wäre super, damit wir und das im Original ansehen können.

    Du kannst es hier als private post schicken.

    LG
    Günter

    • This reply was modified 9 years, 9 months ago by Günter.
    in reply to: Footer #392096

    Hey!

    Thank you for comng back. I thought you solved it, because the menu button is darker blue than the others.

    Try the following (put it in QuickCSS field at the end):

    
    #menu-item-7494 > a > span {
        background-color: red !important;
    }
    

    If this does not change anything, can you create us a temporary admin account so we can try to find a solution?

    You can post it here as a private reply.

    Cheers!
    Günter

    Hi!

    Thank you for coming back.

    You can remove the kriesi.at backlink by adding [nolink] to your custom copyright field in the admin area.

    Regards,
    Günter

    in reply to: Reiter, Tabs und Accordions mit Mouse-Over-Funktion #391995

    Hey!

    Super. Danke auch für das feedback, wie es geht.

    Nicht vergessen, dass bei jeden update zu korrigieren.

    Nur wegen der Accordions – auf der Seite kann ich sie nicht finden (oder stehe ich auf der Leitung). Kannst Du den Link nochmals überprüfen resp. evtl. einen screenshot, was Du meinst bitte.

    LG
    Günter

    in reply to: Contact Form Resetting to Defaults #391538

    Hey!

    A first idea to that problem of one guy from the support team is, that your server is using some kind of caching. Can you check this with your hoster please and give us a feedback?

    Cheers!
    Günter

    in reply to: Changing theme titles to upper and lower case #391494

    Hey!

    Glad we could help you. I leave this post open for later requiries to this topic.

    Enjoy the theme.

    Best regards,
    Günter

    in reply to: Changing theme titles to upper and lower case #391485

    Hi CharlotteDesorgher!

    Thank you for using our theme.

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

    
    h1, h2, h3, h4, h5, h6 {
        text-transform: none !important;
    }
    

    This should help for many cases.

    But there are sometimes other tags wrapped. Come back with a link to the page, so we can give you the correct CSS for the situation.

    Cheers!
    Günter

    in reply to: Contact Form Resetting to Defaults #391459

    Hey!

    Thank you for coming back and the detailed description of the problem.

    I could reproduce it on your site, but not on my local testserver. I will forward this problem to Kriesi to have a look at it and we will be back, as soon as we have an answer to the problem.

    Thank you for your patience.

    Cheers!
    Günter

    in reply to: Reiter, Tabs und Accordions mit Mouse-Over-Funktion #391437

    Hey!

    Habe ich dann falsch verstanden.

    Du kannst folgendes versuchen:

    In der Datei enfold\js\shortcodes.js ca. Zeile 2544 findest Du folgendes:

    
    			tab.addClass('tab_counter_'+i).bind('click', function()
    

    Ersetzte diese durch:

    
    			tab.addClass('tab_counter_'+i).bind('mouseover', function()
    

    Zeile 2552:

    
                             the_oldtab.bind('click', function()
    

    Ersetzte diese durch:

    
                             the_oldtab.bind('mouseover', function()
    

    Eventuell noch (falls dies noch nicht geht) Zeile 2564:

    
            $('a').on('click',function(){
    

    durch

    
            $('a').on('mouseover',function(){
    

    Ich weiß nicht, ob es geht, aber einen Versuch ist es wert.

    LG,
    Günter

Viewing 30 posts - 3,001 through 3,030 (of 3,695 total)