Forum Replies Created
-
AuthorPosts
-
i got this code for it:
it is only missing the [‘same_category’] rule
so this might work:
add_filter('avia_post_nav_categories', 'use_same_category_filter'); function use_same_category_filter($same_category) { $same_category['same_category'] = true; return $same_category; }
i suppose its because of filtername Yigit has forgotten it (to similar so he thought he has set it)
-
This reply was modified 9 years, 2 months ago by
Guenni007.
February 21, 2016 at 11:29 am in reply to: Autor im Blogbeitrag anzeigen trotz Avia Layout Architekt #586645Verstehe ich nicht, ich blende die Sachen immer per quick css aus, weil ich das nicht so schön finde (bis auf das Datum).
Und bei dir sind die erst garnicht da? Auch bei den Portfolio (Custom post type) ist dies bei mir so.
unter Enfold (Child) Optionen gibt es dachte ich immer genau deshalb ja auch unter Bloggestaltung die Möglichkeit Blog Meta Elements ein und auszublenden ?Edit: aha – also unter Verwendung des ALB ist es wohl so – war mir neu.
Eigentlich schade, denn die Darstellung auch mit dem featured Image ist ja nicht schlecht. Das ist dann wohl auch damit unterbunden.hm Ismael – does not work here on my site
can you please share the solution for it.
with dummy links
i’m interested too.the child-theme ( btw here you can download and look to some good advices: http://kriesi.at/documentation/enfold/ )
and here you can download a child-theme : http://kriesi.at/documentation/enfold/downloads/the child-theme is the best way to handle a wordpress theme and so for Enfold too!
the child-theme gets his “updates” via updating the “mother-Theme” without the risc to loose some additional information and rules in Child-Theme Options. you have the great advantage to have in the child-theme folder a functions.php which can add new features to your Theme without the loss of functionality when updating the “mother-Theme”btw. : i do prefer the ftp update for enfold – and never use the Dashboard Option.
you have to gave the custom css classes to those alb elements !
Did you do that ?Reading the whole Answer – even the text before the code is important too!
yes that will be nice to have but i have made my own print rules via quick css by adding
@media print { … }
but if animated content isn’t visible because user does not scroll down. these rules go to nothing.
so is there a global rule like* { -o-transition-property: none !important; -moz-transition-property: none !important; -ms-transition-property: none !important; -webkit-transition-property: none !important; transition-property: none !important; -o-transform: none !important; -moz-transform: none !important; -ms-transform: none !important; -webkit-transform: none !important; transform: none !important; -webkit-animation: none !important; -moz-animation: none !important; -o-animation: none !important; -ms-animation: none !important; animation: none !important; }
but it does not work
naja die liste ist ihm so zu lang!
da wird man ums coden wohl nicht kommen das abzuändern. Namentlich ist hierfür wohl helper_masonry.php zuständig.
Dort wird die hintereinander Schreibweise der Punkte bestimmt.
Ab Linie 136:foreach($sort_terms as $term) { $show_item = in_array($term->term_id, $current_page_terms) ? 'avia_show_sort' : 'avia_hide_sort'; if(!isset($term_count[$term->term_id])) $term_count[$term->term_id] = 0; $term->slug = str_replace('%', '', $term->slug); $output .= "<span class='text-sep {$term->slug}_sort_sep {$show_item}'>/</span>"; $output .= '<a href="#" data-filter="'.$term->slug.'_sort" class="'.$term->slug.'_sort_button '.$show_item.'" ><span class="inner_sort_button">'; $output .= "<span>".esc_html(trim($term->name))."</span>"; $output .= "<small class='avia-term-count'> ".$term_count[$term->term_id]." </small></span>"; $output .= "</a>"; }
da siehst du wie der output entsteht. Ich bin da leider nicht firm genug das in eine Dropdown Liste umzuwandeln – sorry
there is no list-style-type-color in css3 nor css4 !
Maybe some day we will have this because it is a problem lots of people have.
so the color of the font is the color of your bullets.but you can set the bullets to none and ad content in front of your list-points:
https://kriesi.at/support/topic/bullet-color/
-
This reply was modified 9 years, 2 months ago by
Guenni007.
.container_wrap { border-top-width: 0; }
da jede section die container_wrap klasse erhält wäre das der zu ändernde Wert.
solltst Du spezifisch arbeiten müssen; also nur bei einer speziellen section das haben wollen müsstest du der Section eine Custom class geben.
und dann zB (mit der custom class: noborders – aufpassen : keine Lücke – die sitzen am gleichen div).container_wrap.noborders { border-top-width: 0; }
Davon abgesehen, kann man aber auch bei den Color Sections diese Option glaube ich setzen:
Da gibt es Einstellung für :
Section Top Border Styling
Section Bottom Border Styling
wenn die auf “no border styling” stehen sollten die auch weg sein.the password protected page option ?
<smh>
i try to find a solution which fits perferct for you.
there was only one marker to set on each page/post/portfolio – if the marker is set only logged-in users see those posts including those related menu entries. Even in masonry and sidestep blog navigation only logged in users can see those marked entries.so you have to wait for an admin here – because i do not see any private content on your threads. i’m a participant as well.
you said you have a text-block with ul !
you gave that ext block a custom class (like above)all rules above are specific to a custom class – so nothing else could change because of that (accept the wanted effect)
you must change something else
if you like to have icons from fontello font (third list with custom class “otherlistpoint”) :
.otherlistpoint li:before { color: #090; content: "\e871"; font-family: entypo-fontello; font-size: 25px; margin-left: -12px; padding-right: 5px; position: relative; top: 5px; }
the icon shortcode you can see : https://kriesi.at/support/topic/entypo-fontello-icons-unicode-ue-number/
but on css rules you have to get rid of the “u” so see example from
\ue871 will go to : \e871-
This reply was modified 9 years, 2 months ago by
Guenni007.
look here: http://webers-testseite.de/enf02/2016/02/16/bullits/
what is the difference (these are two text elements with unorderd list inside.
the last alb element i gave a class : “noliststyletype”The thing is that list style type belongs to the text (and text color)
so i set the list style type to none ! and ad via before a new content ( a list point)
This is now a new element and can be selected.noliststyletype li:before { color: #900; content: "•"; font-size: 25px; margin-left: -12px; padding-right: 5px; position: relative; top: 5px; } .noliststyletype li { list-style-type: none; }
-
This reply was modified 9 years, 2 months ago by
Guenni007.
and if you like it with shrinking header try this solution here:
.responsive .logo { display: block } .logo, .logo a { overflow: visible; } .logo img { height: 180%; max-height: 225px !important } @media only screen and (max-width: 767px){ .responsive .logo { height: 120px !important; } .responsive .logo a { display: block; } .responsive .logo img { max-height: 220px; } } @media only screen and (max-width: 400px){ .responsive .logo img { max-height: 175px !important } .responsive .logo a { display: block; } }
see here : http://www.pirol-hifi.de
you have to play with the values a little bit.
on that page i have header value at custom height 125pxFebruary 16, 2016 at 1:46 pm in reply to: How to link to section IDs without reloading the page? #584169on my page it did exactly what you like to have. So how looks your link like?
for the login. you can use a plugin like: https://wordpress.org/plugins/sidebar-login/
And for the members you can choose only subscribers – that is enough.hm it seems to be to easy ! ?
goto plugin editor and open – choose secret content and only ad that meta box for portfolio:
add_meta_box( 'secret_sectionid', _x( 'Show this to logged in visitors only?', 'Headline for checkbox / activation on portfolio', 'secret_textdomain' ), 'secret_render_meta_box_content', 'portfolio', 'side', 'high' );
so it looks afterwards at the top in this way:
function secret_meta_box() { add_meta_box( 'secret_sectionid', _x( 'Show this to logged in visitors only?', 'Headline for checkbox / activation on posts', 'secret_textdomain' ), 'secret_render_meta_box_content', 'post', 'side', 'high' ); add_meta_box( 'secret_sectionid', _x( 'Show this to logged in visitors only?', 'Headline for checkbox / activation on portfolio', 'secret_textdomain' ), 'secret_render_meta_box_content', 'portfolio', 'side', 'high' ); add_meta_box( 'secret_sectionid', _x( 'Show this to logged in visitors only?', 'Headline for checkbox / activation on pages', 'secret_textdomain' ), 'secret_render_meta_box_content', 'page', 'side', 'high' ); }
then the plugin works too for portfolio entries !
-
This reply was modified 9 years, 2 months ago by
Guenni007.
:lol: this seems to do it (even hide the menu list point by setting up only one mark in that (page/post)
Take this solution and forget the one before!
https://de.wordpress.org/plugins/secret-content/
but ( it only works for post and pages – i will try to extend it to custom post (like portfolio posts) )
-
This reply was modified 9 years, 2 months ago by
Guenni007.
to show a different menu for logged-in logged-out users there is a php way via child-theme functions.php
you make two menus (the one for non logged in users and the other one) i called them main menu (for logged out users) and main menu logged (for logged in users). The one for logged out users i checked for main navigation
function my_wp_nav_menu_args( $args = '' ) { if( is_user_logged_in() ) { $args['menu'] = 'main menu logged'; } else { $args['menu'] = 'main menu'; } return $args; } add_filter( 'wp_nav_menu_args', 'my_wp_nav_menu_args' );
but this only hides the pages links in your menu – if you want a restriction there are a lot of plugins – but i did not find one easy to use
Eyes only or page restrict etc. role scoper .
But i don’t like to test it now.there are a lot of plugins (which you only have to activate if you need them) that were made for that in a comfort way.
I like Duplicator. Duplicator creates 2 Files (an installer and a zip-File with all of the content)
What you need for migrating is : an empty folder on your host, an empty database (if you use the default table-prefix wp_ for your installation)
Then you upload these two files via ftp and on browser you then call the installer.php to make the rest. On an input field you can insert the new datas
Database Name, Database User, Database Password (there are more options f.e. to change Admin but not on default settings)
and press run. Thats all. After login to your new installation only delete those two files from your root and regenerate permalinks maybe necessarya little offtopic – i have imported yesterday one demo file.
i often change my media structure just from the beginning to “not in month and year-based Folders”
The import of all pages and posts works good – but some images weren’t imported. Could it be that the imported files have to have that media structure of month and year based folders ?-
This reply was modified 9 years, 2 months ago by
Guenni007.
I fear he is talking about advanced Layerslider – and then i think it is not possible in a short way
in the alb set two blog elements with raster layout !
The first one choose same category as the second one but only show 1 post and 1 rowThe second one 2 rows and show all but don’t forget to mark that offset number not to show posts twice.
Thats it.well there was a little plugin for posts and pages order (intuitive custom post order) which handles it for posts and pages.
so i look for a similar plugin for category: https://wordpress.org/plugins/taxonomy-terms-order/
Works even for portfolio.
You can drag and drop the order at dashboard. there are additional tab “Taxonomy Order” on each Kategory having post or portfolio.
But it changes it for the whole site – not only for specific pages.-
This reply was modified 9 years, 2 months ago by
Guenni007.
yes can be closed – customer decided to have a stretched layout now. But definitly i will use it in future projects
well try to do the following – and definitly play with background-color :lol:
.main_color tr:nth-child(2n) { background: #e24020 !important; } .main_color tr:nth-child(2n+1) { background: #9c899c !important; }
-
This reply was modified 9 years, 2 months ago by
Guenni007.
sollte gehen. Wenn ich mehrsprachige Seiten mache gehe ich meist hin und layoute zunächst komplett alles durch. Und transferiere dann die Einstellungen von der Einen in die andere Sprache mit diesem Befehl. WPML gibt einem nämlich die “Chance” auch hier Länderspezifische Versionen zu hinterlegen – was ganz nett ist, aber eben eher die Ausnahme darstellt.
-
This reply was modified 9 years, 2 months ago by
-
AuthorPosts