Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #972274

    Ich möchte den entry-info-wrap entfernen. Wir kann ich das möglichst einfach einfach realisieren.
    I want to delete the entry-info-wrap completely. How can i do this in a simple way?

    Best regards Kornelia

    #972418

    Hey Kornelia,

    If you have a child theme, please add this at the bottom of functions.php:

    function avia_post_nav($same_category = false, $taxonomy = 'category')
    {
      global $wp_version;
        $settings = array();
        $settings['same_category'] = $same_category;
        $settings['excluded_terms'] = '';
        $settings['wpversion'] = $wp_version;
      
      //dont display if a fullscreen slider is available since they overlap 
      if((class_exists('avia_sc_layerslider') && !empty(avia_sc_layerslider::$slide_count)) || 
          class_exists('avia_sc_slider_full') && !empty(avia_sc_slider_full::$slide_count) ) $settings['is_fullwidth'] = true;
    
      $settings['type'] = get_post_type();
      $settings['taxonomy'] = ($settings['type'] == 'portfolio') ? 'portfolio_entries' : $taxonomy;
    
      if(!is_singular() || is_post_type_hierarchical($settings['type'])) $settings['is_hierarchical'] = true;
      if($settings['type'] === 'topic' || $settings['type'] === 'reply') $settings['is_bbpress'] = true;
    
        $settings = apply_filters('avia_post_nav_settings', $settings);
        if(!empty($settings['is_bbpress']) || !empty($settings['is_hierarchical']) || !empty($settings['is_fullwidth'])) return;
    
        if(version_compare($settings['wpversion'], '3.8', '>=' ))
        {
            $entries['prev'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
            $entries['next'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
        }
        else
        {
            $entries['prev'] = get_previous_post($settings['same_category']);
            $entries['next'] = get_next_post($settings['same_category']);
        }
          
      $entries = apply_filters('avia_post_nav_entries', $entries, $settings);
      $output = "";
    
    
      foreach ($entries as $key => $entry)
      {
        if(empty($entry)) continue;
        $the_title 	= isset($entry->av_custom_title) ? $entry->av_custom_title : avia_backend_truncate(get_the_title($entry->ID),75," ");
        $link 		= isset($entry->av_custom_link)  ? $entry->av_custom_link  : get_permalink($entry->ID);
        $image 		= isset($entry->av_custom_image) ? $entry->av_custom_image : get_the_post_thumbnail($entry->ID, 'thumbnail');
        
        $tc1   = $tc2 = "";
        $class = $image ? "with-image" : "without-image";
    
        $output .= "<a class='avia-post-nav avia-post-{$key} {$class}' href='{$link}' >";
        $output .= "    <span class='label iconfont' ".av_icon_string($key)."></span>";
        $output .= "</a>";
      }
      return $output;
    }

    Hope it helps :)

    Best regards,
    Nikko

    #974879

    Thank’s for your Help! I Nice support!

    #974884

    Hi,

    I’m glad you were able to get this corrected. If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘entry-info-wrap komplett entfernen – completly delete entry-info-wrap’ is closed to new replies.