-
AuthorPosts
-
October 13, 2017 at 10:30 am #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, KathrinOctober 14, 2017 at 1:40 pm #864261Hey 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ünterOctober 14, 2017 at 9:12 pm #864342ich 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.October 16, 2017 at 10:43 am #864743Danke!
Könnt ihr mir vielleicht auch sagen, wie ich beim Mega Menü, bei den dropdowun links die Zeilenabstände verkleinere?
Lg, KathrinOctober 17, 2017 at 4:22 am #865079Hi,
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,
IsmaelOctober 17, 2017 at 11:11 pm #865474ANother question. How can i add Social Media i con in the footer, not in the sockel?
Thanks KathrinOctober 18, 2017 at 11:38 am #865658Hi 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,
VictoriaOctober 22, 2017 at 2:19 pm #867191hey – to make it more simple (for the enduser) i tried to make a custom widget
see here: https://webers-testseite.de/buttons/#footerOctober 22, 2017 at 2:44 pm #867195Concerning 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; } }
October 22, 2017 at 3:44 pm #867202so everything works fine on all browser – go and get it.
October 23, 2017 at 9:28 pm #867842This reply has been marked as private.October 24, 2017 at 6:43 am #867995 -
AuthorPosts
- You must be logged in to reply to this topic.