Forum Replies Created
-
AuthorPosts
-
January 4, 2019 at 4:03 pm in reply to: Remove 'Classic Editor' poste state description from overview #1050019
so now you are talking about woo ( this function is ruled too – on woocommerce itself ! )
this is the look for portfolio entries – you can see that only the classic status is hidden:
January 4, 2019 at 4:01 pm in reply to: Remove 'Classic Editor' poste state description from overview #1050018with the last code i provided the list view on my test is:
January 4, 2019 at 3:59 pm in reply to: Updating to 4.41 requires server upgrade at GoDaddy. #1050017I can’t imagine. Most of the time it is the other way around; that if an older PHP is used by the provider a fee is due. This is because they ensure that security updates are still executed for older versions that are no longer supported.
January 4, 2019 at 3:53 pm in reply to: Remove 'Classic Editor' poste state description from overview #1050012maybe try this in your functions.php of your child-them
add_filter('display_post_states','remove_ALB_post_state',999,2); function remove_ALB_post_state( $post_states, $post ) { if("! has_blocks( $post->ID )") { unset($post_states['wp_editor']); } if("!= Avia_Builder()->get_alb_builder_status($post->ID)") { unset($post_states['avia_alb']); } return $post_states; }
and if you want only get rid of classic :
add_filter('display_post_states','remove_CLASSIC_post_state',999,2); function remove_CLASSIC_post_state( $post_states, $post ) { if("! has_blocks( $post->ID )") { unset($post_states['wp_editor']); } return $post_states; }
January 4, 2019 at 3:38 pm in reply to: Remove 'Classic Editor' poste state description from overview #1050011well – this seems to be a part for Günter – because on class-avia-gutenberg.php there are those additional settings. But the “Classic Editior” state comes not from enfold.
see from line 611 ( public function handler_display_post_states( array $post_states, WP_Post $post ) )
January 4, 2019 at 3:13 pm in reply to: Remove 'Classic Editor' poste state description from overview #1050000for 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, 9 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, 9 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 reply was modified 6 years, 9 months ago by
-
AuthorPosts