Forum Replies Created
-
AuthorPosts
-
January 4, 2019 at 3:13 pm in reply to: Remove 'Classic Editor' poste state description from overview #1050000
for example – you can get rid of the ALB info on that list by:
add_filter('display_post_states','remove_ALB_post_state',999,2); function remove_ALB_post_state( $post_states, $post ) { if("!= Avia_Builder()->get_alb_builder_status($post->ID)") { unset($post_states['avia_alb']); } return $post_states; }
January 4, 2019 at 2:44 pm in reply to: Remove 'Classic Editor' poste state description from overview #1049994Well i think this will only work if you go over the WP filter display_post_states
this is how f.e. woocommerce does include their “shop” or “cart” status. So it might be possible to get rid of those state info by a new function via add_filteradd_filter( 'display_post_states', 'modify_post_states', 10, 2 ); function modify_post_states( $post_states, $post ) { if ( … ) { … } return $post_states; }
but as I can influence it now in particular, my programming knowledge is not sufficient for that.
you can proove that add_filter method by adding this to your child-theme functions.php
add_filter('display_post_states', '__return_false');
this will completely remove the post state – but then all quick edit options are gone too!did you declare the menu on dashboard – appearance – menus on menu-settings as enfold main menu ( enfold-child main menu) ?
what link do you mean on your page?
-
This reply was modified 6 years, 6 months ago by
Guenni007.
i see that you are using the boxed-layout – maybe this and your “flakes” come into conflict with it.
these “flakes” got a z-index of 999999 – sometimes it helps if you give to those pngs an overflow : visible (maybe an important is neccessary)Can you please insert the overlay image again – and i will see on your site then the source code what happens?
-
This reply was modified 6 years, 6 months ago by
Guenni007.
hm – you see on my testsite that i used an own overlay image – i do not know why there should be a difference what image i take.
See testpage again
?ah by the way you can do it in one line:
function custom_logo_attriubtes(){ ?> <script> (function($){ $('.logo img').attr({ title:"custom_title", alt:"custom_alt" }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_logo_attriubtes');
both has to go to the image!
there was a filter to change the alt attribut for logo but not the title ( this comes to your child-theme functions.php )add_filter('avf_logo_alt', 'avf_change_logo_alt'); function avf_change_logo_alt($alt) { $alt = "New Alternate Text Here"; return $alt; }
to influence the title attribut too you can do it with jQuery at once – delete the other code then ( this comes to your child-theme functions.php ):
function custom_logo_attriubtes(){ ?> <script> (function($){ $(".logo img").attr("title", "your_custom_title"); $(".logo img").attr("alt", "your_custom_alt"); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_logo_attriubtes');
hm – can not reproduce your problem.
You can see here that there is a background-image of the color-section with an overlay image ( and even with an opacity of 0.8) the button stayes active.: https://webers-testseite.de/ostler/justin/you see the source code has content in av-section-color-overlay-wrap container – but the overlay image concerns to av-section-color-overlay container which is before the container with content.
Edit : ok – i did not see that you have set it to parallax.
I will see what happens.Edit edit: it is still clickable that button.
and you like to have the icons under each other?
First – you don’t need to have here list tags
if you take for example a span tag these icons are beside each other.
I added a class to adress all icons at once:<span class="social_bookmark social_bookmarks_twitter av-social-link-twitter social_icon_2"><a target="_blank" href="https://twitter.com/DTB050" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello" title="Twitter"><span class="avia_hidden_link_text">Twitter</span></a></span> <span class="social_bookmark social_bookmarks_instagram av-social-link-instagram social_icon_3"><a target="_blank" href="https://www.instagram.com/detekstenbakkerij/" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello" title="Instagram"><span class="avia_hidden_link_text">Instagram</span></a></span> <span class="social_bookmark social_bookmarks_facebook av-social-link-facebook social_icon_1"><a target="_blank" href="https://www.facebook.com/DeTekstenbakkerij" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello" title="Facebook"><span class="avia_hidden_link_text">Facebook</span></a></span>
then do this to quick css:
#footer .social_bookmark a { width: 40px; height: 40px; font-size: 30px; padding: 5px; display: inline-block; text-align: center; }
looks this way: https://webers-testseite.de/ostler/#footer
These things can be achieved with Enfold funds – everything else freelancers must arrange in a paid version for you.
Excuse me – but even my time for the community is limited.hm then Günter has forgotten to fix the bug- he said ( Link ) that he will do that next update
Sorry i didn’t control that.So please Mods tell Günter to set this on a todo list.
i try to get the excerpt now besides the image
Edit : here is the edited php file: https://pastebin.com/dl/xPGfrSFJ
see results here : https://webers-testseite.de/ostler/?s=Fullthis is the css for quick css:
.search-result-image { display: inline-flex; } .search-result-image img { width: 300px; } .search-result-image { float: left; margin-bottom: 20px; padding-right: 30px; }
put the edited php file into child-theme/includes folder – that is all
look here – maybe this is a solution for you: https://kriesi.at/support/topic/show-featured-images-in-search-results-page/#post-805253 and the following answer.
on newest Enfold 4.5.2. it is now on line 33
sorry – i’m Participant as you are – so i can not see Private Message Area.
you see how it works : the keyframe is the base for the animation.
you have start point and some interstage points and the end point. If you like you can do more here – or set an 80% style etc. pp.
on the animation then you take this custom defined keyframe for it.this seems to be only a png file:
you can do it with pseudo content.
insert an image from alb elements and give it a custom class ( i took : animated-button )then we create the before content:
.animated-button .avia_image::before { content: ""; background-color: rgba(255,255,255,1); border-radius: 50%; width: 100%; height: 100%; display: block; position: absolute; animation: pulse 3s ease-in-out 0s infinite }
to have not the overlay effect on enfold images and to see the scale effect :
.animated-button .image-overlay { display: none !important; } .animated-button .avia_image { overflow: visible !important; }
now the animation keyframe for it:
@keyframes pulse { 0% { transform: scale(1.05); opacity: 1 } 50% { transform: scale(1.25); opacity: 0.3 } 100% { transform: scale(1.05); opacity: 1 } }
see result : https://webers-testseite.de/accordion/
you can change it to your needs?
In my case it is a dark background image so – it is a white pulsating thing.maybe this effect of enfold standard behavior of a standalone icon (right side of the example ) could be an alternative:
https://webers-testseite.de/button-link/
but this is only on hovering the “button” – you can have a link on the icon and an optional Caption.
The animation effect is called: sonarEffecti would load my custom script via the enqueue a script file:
the custom.min.js file has to be in the child-themes/js Folder
Each goes to child-theme functions.php
function custom_js_script() { wp_enqueue_script( 'Custom-JS', get_stylesheet_directory_uri().'/js/custom.min.js', array('jquery'), '1.0', true ); } add_action( 'wp_enqueue_scripts', 'custom_js_script' );
after that you can try to force to include it by the filter : avf_force_include_asset
this filter isn’t listet in the hooks and filter list here: https://kriesi.at/documentation/enfold/hooks-and-filters/
but it is present in : asset-manager.class.phpadd_filter('avf_force_include_asset', 'avia_force_include_files', 10, 1); function avia_force_include_files($force_included) { $force_include_js = array('Custom-JS'); $force_included['js'] = array_merge($force_included['js'], $force_include_js); return $force_included; }
ich schreib das mal gerade auf deutsch:
du kannst zB für diesen link die word-wrap Eigenschaft setzen, oder wenn es nicht so häufig vorkommt softhyphens setzen:
click to enlarge:
so kannst du “Sollbruchstellen” im Text anlegen. Der Link bleibt ja davon unberührt.
das
­
ist dann das Zeichen was du brauchstUpdate to newest Enfold – the gridbox bug with firefox is fixed there
see here concerning topic: https://kriesi.at/support/topic/flip-box/to your second link – i can’t find the page you are having that problem.
to have not that problem you can make a link with a button f.e. and a keyword and not the url.
or try to have a wordbreak definition for that long urlDecember 20, 2018 at 8:41 pm in reply to: Whenever I try to move the contact form up, the page glitches #1047921is the contact form on a page which you use as footer?
If not: Can you make a screenshot of the ALB layout you use?
so no chance to get it over the content this way. You had to set up the contact form on that page itself
yes, that’s right – but that’s the behavior of the standard level – and I think she/he knows that.
But – I don’t know if the above is a new feature – it was definitely missing on earlier versions. Now this “background” described above is not reloaded every time a slide changes. These “static” layers are not animated between slide changes (only at the starting point of the slider).
This was also new for me. And used in the kitchen slider.Yes indeed the font-size option is only available when selecting the modern style.
On default it is set to default size- but you can select different sizes here.you got this in your source code – mayby in your quick css:
because of the merged file i could not locate it where you got it..av_minimal_header .avia-menu-fx { display: none; }
so get rid of that rule – and the underline on hover will work as you like
ja – genau so ist es. Hier wird dir auf jedenfall geholfen. Wobei ich mir nicht im klaren bin, wie das mit dem Support Stop funktionieren soll ;)
Da du ja hier keine Seriennummern bei der Registrierung angiebst, endet der Support demnach nicht nach 6Monaten – auch die Downloads kannst du jederzeit bei Envato wiederholen.
hier ist eine sehr schöne Dokumentation: https://kriesi.at/documentation/enfold/
Dort kann man zunächst schauen ob es nicht schon triviale Lösungen für dein Problem geben sollte.this image you see as background – is not a “slide background image” on top of the slide input.
- This is an image layer on the bottom of the first slide !
- On Transitions you can choose on opening transition on “other settings” : Keep this layer visible: Forever (the layer will never animate out).
- From now on you have on each new slide “Static Layers from other slides”
Thats the trick !
PS: this is a fullwidth slider you have linked to !
By the way – this font from parytype looks a bit like PtSans / Opensans or Lato – these fonts are designed too by Paratype – might be a good alternative.
Especially the Lato with bold and a light font !to identify a font you can use different services on the web. On that example it might be good to have more contrast on it:
F.e.:
https://www.fontsquirrel.com/matcherator
https://www.myfonts.com/WhatTheFonton the bold part above there are a lot of results because this seems to be a standard font style:
the most famous seems to be from FontFont : FF Mark Pro Mediumbut the results for the thin font gets one match with the bold type :
Stem from Paratype.
Stem Medium and Stem Extra Light.
https://www.myfonts.com/fonts/paratype/stem/webfont_preview.htmlDecember 18, 2018 at 12:43 pm in reply to: How to insert search form into header_posline next to phone number? #1046825You may open a new thread with the hint ( link ) to this started topic here.. Here really one of the moderators with admin access has to look into your developer installation.
You have also installed Uber-Menu and this shortcodefix is still haunting you. So everything else than Enfold Standard installation. I would only recommend you to update to the latest Enfold 4.5.1 version.Actually, I always get my help through to the solution. But in this case someone has to log in to really create order.
Well i’m German too – but i think you will get help sooner if you post your questions in english – not all of the mods can understand german language.
if you find it difficult to post your questions in English, you can use this service here: https://www.deepl.com/translator
The translations are definitely better than Google’s and you can make changes or improvements in your text afterwards. -
This reply was modified 6 years, 6 months ago by
-
AuthorPosts