Forum Replies Created
-
AuthorPosts
-
hm: click to enlarge the image : overwrite – maybe only for that page ( page-id-4393 ) this padding-top.
-
This reply was modified 6 years, 2 months ago by
Guenni007.
And see what happens if flex is set to allowed to grow items and flex-wrap is on wrap. etc. pp – see example page
Edit : and if you like to have 9, 10 or what ever you like adjust %value or set the absolute width ( for those columns allowed to wrap
place a color-section and with custom class like: eight-columns
put in your color-section 8 columns ( maybe 5th one) – put in those columns your content ( images)
place this to your quick css:
.eight-columns .entry-content-wrapper.clearfix { display: flex !important; flex-direction: row; flex-wrap: nowrap; justify-content: space-between; align-items: flex-start; } .eight-columns .entry-content-wrapper .flex_column { flex: 0 1 10%; margin: 0 !important; }
see here for info: https://css-tricks.com/snippets/css/a-guide-to-flexbox/
see a working example: https://webers-testseite.de/8col-flex/
best way is to use CF7 – they have it implemented and you can set up different restrictions ( file type and file size etc.
the acceptance key is also usefull – because it blocks the whole submit button til it is marked. ( For DSGVO / GDPR ) Reasonsok – so we have to live with the exclusion by css. Or is there a way to do it via $settings[‘excluded_terms’]
you have a padding-top of 50px on content:
.content, .sidebar { padding-top: 0; }
thanks – now i know how to do it – but more flexible is the way i use – because i can have on the first slide a h1 tag on the next a h2
I think that this is a sensible attitude. – Iconboxes besides on one page could be styled separately etc. ppgerne – wie gesagt ich käme auch mit dem css hin, aber sauberer ist diese lösung.
-
This reply was modified 6 years, 2 months ago by
Guenni007.
Edit: mittlerweile weiss ich das die zeitlich letzte Seite dort als Link erscheint – nicht die oberste Position
siehe hier die zugangsdaten: https://kriesi.at/support/topic/is-it-possible-to-loop-the-post-navigation/#post-1095052
die css Korrektur nehme ich raus damit du direkt siehst, was gemeint ist.
In der Page Liste steht diese Seite “partner und lieferanten” ganz oben. Die wird wenn man die Seiten aufruft immer wieder als links navigation angezeigt – selbst auf der verlinkten Seite !Alle Plugins deaktiviert und alle functions.php einträge hatte ich auch gelöscht. ( damit luden dann auch die edited ALB Elemente natürlich nicht)
Everything is OK !!! it was one of the plugins!
so excuse me for being so impatient and suspecting a mistake on your part._________
Can you look why only one page is in that side navigation when i open a Page?
Edit : it is only the page link of the first page in list-view – this link is on all other pages as sidenavigation.these are my settings:
add_filter('avf_post_nav_settings','enfold_customization_postnav', 10, 1); function enfold_customization_postnav($settings){ $settings['skip_output'] = false; $settings['same_category'] = true; $settings['is_fullwidth'] = false; return $settings; }
maybe you can reproduce it on your test environment too.
can i exclude it manually ( i just did it with css )
.avia-post-nav[href*="partner-und-lieferanten"] { display: none; }
-
This reply was modified 6 years, 2 months ago by
Guenni007.
ich teste es gerade noch selber, es muss wohl ein Plugin sein. Meine Edited ALB Elements und die Scripte in der child-theme functions.php waren es nicht.
Ich aktiviere jetzt ein Plugin nach dem anderen um zu sehen, was es sein könnte.New – better Solution for it since 4.5.6:
https://kriesi.at/support/topic/is-it-possible-to-loop-the-post-navigation/#post-1094924na Klar – Danke fürs Nachschauen
PS Ihr habt bei den Demos noch keine dabei, die auf 4.5.6 ist! oder?hier gibt es eine schöne Erklärung: https://css-tricks.com/snippets/css/a-guide-to-flexbox/
wichtig ist die Eigenschaften bei dem direkten Parent zu setzen, und dann bei den Items darunter.
Sieh mal was passiert , wenn du diesen Code hier anstatt benutzt:
.page-id-2 #av_section_2 .avia-content-slider-inner .slide-entry-wrap { display: flex !important; align-items: center !important; flex-direction: row; justify-content: space-around !important; flex-wrap: wrap; } .page-id-2 #av_section_2 .avia-content-slider-inner .slide-entry-wrap .slide-entry.flex_column.no_margin { flex: 0 1 150px; }
Flex Box Modell ist echt mächtig.
Die letzt Anweisung besagt, dass die items nicht wachsen dürfen, aber shrinken ja.Zu deiner Frage. Jeder Browser hat mittlerweile Developer Tools implementiert. Bei Safari muss man das in den Einstellungen freischalten.
Die Anderen haben es jederzeit bereit.
Wenn du das Kontext Menu mittels deiner Maus über einer Stelle auslöst, kannst du bei den Browsern sowas wie “untersuche das” finden (Element untersuchen; untersuchen etc)
Daraufhin geht ein Fenster mit dem DOM auf und die Eigenschaften (css) werden auch angezeigt.
Bei Body (#top) befindet sich die page-id- bzw postid- etc. ppplease try this:
.page-id-2 #av_section_2 .avia-content-slider-inner .slide-entry-wrap { display: inline-flex; align-items: center; }
you see it is always best to have the real site ;) to give advice.
Jetzt mal abgesehen von dem Vertauschen, du siehst schon , was dort ( sieh private content area ) passiert wenn die gleiche Category und loop gewählt wird – versuche doch mal nach rechts zu gehen!
Das Vertauschen der Richtung wäre jetzt auch gegangen via:
add_filter( 'avf_post_nav_entries', 'enfold_change_direction_postnav', 10, 2); function enfold_change_direction_postnav($entries, $settings) { $entries['prev'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); $entries['next'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); return $entries; }
aber wichtiger ist das innerhalb der same Categorie geloopt werden kann.
April 27, 2019 at 3:26 pm in reply to: issue with previous and next navigation in the porfolio #1094913Edit: with that new loop function – you have to look again to it. It would be nice to loop in same category !
And on activating both: same category and loop option the page got post_nav toothe filter name has changed on 4.5.6 ( avia – is deprected ):
add_filter( 'avf_post_nav_entries', 'enfold_change_direction_postnav', 10, 2); function enfold_change_direction_postnav($entries, $settings) { $entries['prev'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); $entries['next'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); return $entries; }
if you like it only for portfolio you can edit your code above with the new filter name.
By the way : how to change on that new Version 4.5.6 the direction of prev next ?
what if you disable jQuery Migrate on Enfold – Performance ? refresh all cachings after that and regenerate the merged files on Enfold too.
April 27, 2019 at 1:54 pm in reply to: Verlinkte Spalten einen Linktext bzw. Title Tag geben #1094901Guenter here from Board helped me to get on the way to do it.
you can download it on GitHub of Kriesi or on my page with comments in the source to see what is newly added.
https://webers-testseite.de/edited-enfold-alb-elements/#columnsToll – bin nicht drauf gekommen, dort nachzuschauen! Sorry
PS auf esc_attr bin ich nicht gekommen – Asche auf mein Haupt.______
Great – I didn’t think to look there! Sorry
PS on esc_attr I have not come – ashes on my head.Edit: funktioniert leider so nicht mit dem Loop und in der gleichen Kategory !
-
This reply was modified 6 years, 2 months ago by
Guenni007.
Danke
Vielen Dank – das erspart mir bei einem aktuellen Kunden sehr viel Arbeit. Und ist wohl auch ein gutes Feature für die Allgemeinheit.
how to show the existing arrow ?
Edit: found it – i set the tooltip including the arrow to width auto :lol
the arrow needs an absolute given width.April 25, 2019 at 5:52 pm in reply to: the accents of the letters é and è of the French alphabet in the url do not appe #1094492guess this is standard url encoding! have you ever seen an url with accent aigu ? or German Umlaute ä, ö, ü etc.
i would use the search and replace plugin for that.
you can do a dry run with that tool to find those entries.
you can search for : “http://davidalbertyn.com/wp-content/uploads/avia_fonts/type_fonts/fonts/goodreads” – and replace it by:
“https://davidalbertyn.com/wp-content/uploads/avia_fonts/type_fonts/fonts/goodreads”
But be careful with such tools – simple search and replace can cause damage of your installation. -
This reply was modified 6 years, 2 months ago by
-
AuthorPosts