Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #863832

    Hi ,
    könntihr mir sagen wie ich die Blog Beiträge manuell sortieren kann, bzw. einen alten Beitrag wieder an die erste Stelle bekomme.
    Zweite Frage: ist es möglich bei der Blogdarstellung “einzelner Autor, großes Bild” die Überschrift oben anzuzeigen?
    Lg, Kathrin

    #864261

    Hey Kathrin,

    Danke dass Du unser Theme verwendest.

    Umsortieren geht nur über externe plugins, z.B. https://de.wordpress.org/plugins/simple-custom-post-order/, schau auf wordpress.org nach, was es da gibt.

    Versuche die Einstellungen auf Dashboard -> Enfold -> Blog Layout -> Blog Styling zu ändern.

    Wenn da nicht eine für dich passende Lösung rauskommt, kann man nur die core datei ändern.

    LG,
    Günter

    #864342

    ich benutze dann meist intuitive custom post order – wird aber ähnlich dem von Günter sein.
    das geht in der blog listendarstellung mittels drag and drop – man zieht den Beitrag nach oben.

    #864743

    Danke!
    Könnt ihr mir vielleicht auch sagen, wie ich beim Mega Menü, bei den dropdowun links die Zeilenabstände verkleinere?
    Lg, Kathrin

    #865079

    Hi,

    Please provide a link to the page so that we can check the mega menu. Are you trying to reduce the height of the mega menu?

    Best regards,
    Ismael

    #865474

    ANother question. How can i add Social Media i con in the footer, not in the sockel?
    Thanks Kathrin

    #865658

    Hi Kathrin,

    To add social links to the footer, you will need to dit the footer.php file in the website wp-content\themes\enfold folder.

    Or better, use the enfold-child theme; copy the footer.php file to the child theme and edit it in the child theme. This way your change will not get overwritten by future theme updates.

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #867191

    hey – to make it more simple (for the enduser) i tried to make a custom widget
    see here: https://webers-testseite.de/buttons/#footer

    #867195

    Concerning to this question: https://kriesi.at/support/topic/blog-beitrage-sortieren/#post-865474

    i think i got a solution – allthough i don’t realy know why it works:

    You will have on widget area a new widget called : Enfold-Child Social Bookmarks
    drag and drop as usual into the widget area you like. It shows the social bookmarks you have choosen on Enfold Options Dialog.

    Only Title is here to set ( Default is “Social Bookmarks”)

    Just one moment – i will check to mangage for all widget areas to solve it …

    to quick css:

    #top .socialbookmarks-widget .social_bookmarks {
        float: left;
        margin: 15px 0 0 ;
        position: relative;
    }
    
    #top .socialbookmarks-widget .social_bookmarks li {
        float: left;
        clear: right !important;
    }

    to enfold-child functions.php

    function social_bookmarks_register_widget() {
    register_widget( 'add_social_bookmarks' );
    }
    add_action( 'widgets_init', 'social_bookmarks_register_widget' );
    
    class add_social_bookmarks extends WP_Widget {
    public function __construct() {
    	$widget_ops = array(
    		'classname' => 'socialbookmarks-widget', 
    		'description' => __('A widget that displays the social bookmarks', 'avia_framework') 
    		);
    	parent::__construct( 'add_social_bookmarks', THEMENAME.' Social Bookmarks', $widget_ops );
    }
    public function widget( $args, $instance ) {
    	$title = apply_filters( 'widget_title', $instance['title'] );
    	echo $args['before_widget'];
    	//if title is present
    	if ( ! empty( $title ) )
    	echo $args['before_title'] . $title . $args['after_title'];
    	//output
    	echo $before_widget;
    	$social_args = array('outside'=>'ul', 'inside'=>'li', 'append' => '');
    	echo avia_social_media_icons($social_args, false);
    	echo $after_widget;
    }
    public function form( $instance ) {
    	if ( isset( $instance[ 'title' ] ) )
    	$title = $instance[ 'title' ];
    	else
    	$title = __( 'Social Bookmarks', 'avia_framework' );
    	?>
    	<p>
    	<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:' ); ?></label>
    	<input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" />
    	</p>
    	<?php
    }
    public function update( $new_instance, $old_instance ) {
    	$instance = array();
    	$instance['title'] = ( ! empty( $new_instance['title'] ) ) ? strip_tags( $new_instance['title'] ) : '';
    	return $instance;
    }
    }
    #867202

    so everything works fine on all browser – go and get it.

    #867842
    This reply has been marked as private.
    #867995

    Hi,

    Have you tried editing the paragraph or the body tag in the Enfold > Advanced Styling panel?

    Best regards,
    Ismael

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