Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #573705

    Hi there,

    Really loving this theme! Could you let me know where I can find the string for the Grid blog Meta? E.g. the category, comments, date, etc.

    Thank you,
    Doug

    #574474

    Hi Doug,

    Can you post the link to your website please? are you referring to a Blog grid or a Portfolio grid?

    Regards,
    Josue

    #574699

    Hi Josue,

    It’s still in development I’m afraid, so I won’t be able to post a link.

    I’m refering to an Enfold Blog grid – and looking for the location in the PHP files where the meta is called from for index/category pages.

    Thanks for your help,
    Doug

    #574836

    Hey!

    Look in /config-templatebuilder/avia-shortcodes/postslider.php, line 430-449:

                        if($show_meta && !empty($excerpt))
    					{
    						$meta  = "<div class='slide-meta'>";
    						$meta .= "<div class='slide-author'>".get_the_author()."</div><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' );
    
    							$meta .= "<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));
    						$meta .= "<time class='slide-meta-time updated' $markup>" .get_the_time(get_option('date_format'), $the_id)."</time>";
    						$meta .= "</div>";
    						
    						if($blogstyle !== "elegant-blog")
    						{
    							$output .= $meta;
    							$meta = "";
    						}
    					}

    Best regards,
    Josue

    #577714

    Thanks! This topic can be closed now :)

    #577751

    You are welcome, glad to help :)

    Regards,
    Josue

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.