Forum Replies Created
-
AuthorPosts
-
February 15, 2018 at 4:39 pm in reply to: How to change the font color of a contact form element? #912805
its allways better to see the link.
But do you mean the real inputed text or the place-holder text in the field ?tip for placeholder-text:
::-webkit-input-placeholder { color: pink !important; } ::-moz-placeholder { color: pink !important; } :-ms-input-placeholder { color: pink !important; } :-moz-placeholder { color: pink !important; }
-
This reply was modified 7 years ago by
Guenni007.
February 15, 2018 at 4:26 pm in reply to: e-mail address is clipped on page on Iphone portrait #912800and you don’t like this:
<a href="mailto: (Email address hidden if logged out) ">e-mail</a>
or make the space between the columns a bit smaller:
#footer div .av_one_third { margin-left: 4%; }
or you play a bit with 1/3 width in footer (values depends on space width etc)
#footer .av_one_third:first-child { width: 36%; } #footer .av_one_third:nth-child(2) { width: 25%; }
i can not simulate it in browser if these settings are overwritten by responsive case – so test it please
February 15, 2018 at 3:58 pm in reply to: e-mail address is clipped on page on Iphone portrait #912794and it has to be written out – i mean you can place the link on an E-Mail or a sign
you can force the word break by this – but it looks horrible:
#email { word-wrap: break-word !important; }
yes – do not forget the responsive case:
.logo img, .responsive .logo img { display:none !important;; }
by the way on responsive case there is an empty header_meta
if you don’t like that :.responsive #header_meta { display: none; }
-
This reply was modified 7 years ago by
Guenni007.
February 15, 2018 at 2:42 pm in reply to: Adding button to mute/unmute audio on fullscreen background video #912772if there is content in private content – i’m participant as you are.
February 15, 2018 at 2:06 pm in reply to: Adding button to mute/unmute audio on fullscreen background video #912765so look again to the test page. if you have my section.php and uncheck the page playes the sound and you can switch with that button.
I think the function has to be adjusted that it beginns with clicked status. Don’t know how to.
https://webers-testseite.de/3-4th-centered/
to your images mute and unmute – do you have adjusted the css from above and link to your mute/unmute png files?
did your gave the color-section the custom-class: av-section-color-overlay-wrap ?February 15, 2018 at 1:56 pm in reply to: Adding button to mute/unmute audio on fullscreen background video #912756well i have to download a video file with sound – i guess with youtube videos it will not work.
i am very satisfied with WPML ( and because i have a lot of customers having more than one language at their website i got Multilingual CMS for life upgrade from CMS)
But try first the costfree versions of other plugins
Polylang seems to be very popular
February 15, 2018 at 1:14 pm in reply to: Adding button to mute/unmute audio on fullscreen background video #912740uncheck if you want to have audio
this is by default muted (on good reasons) because if you have more than one background video per site it will be a mess.hear yourself: https://webers-testseite.de/3-4th-centered/
February 15, 2018 at 1:11 pm in reply to: How to add the avia layout builder to my custom post type? #912738Ah – by the way – for my events a few days ago i’m looking for a solution to have post navigation left/right (as on portfolio)
it works from the beginning but to have only the same cat there has to be something special in functions.phpwe all new something like this in functions.php of child-theme:
add_filter( 'avia_post_nav_settings', 'enfold_customization_same_cat' ); function enfold_customization_same_cat( $s ) { $s['same_category'] = true; return $s; }
but on portfolio case this category is set to taxonomy (which is portfolio-entries))
maybe you like to have that for your custom-post-type too
i found the solution for event to this:add_filter('avia_post_nav_settings', 'avia_post_nav_settings_mod'); function avia_post_nav_settings_mod($settings) { if(is_singular('portfolio')) { $settings['taxonomy'] = 'portfolio_entries'; $settings['same_category'] = true;} if(is_singular('event')) { $settings['taxonomy'] = 'event-categories'; $settings['same_category'] = true;} return $settings; }
so i think you have to find first your custom post-type ( event is mine) and the taxonomy you will find at the custom post type list (“category”)
https://kriesi.at/support/topic/having-for-custom-post-type-event-the-avia-post-nav-too/#post-909664
February 15, 2018 at 1:01 pm in reply to: How to add the avia layout builder to my custom post type? #912733well a lot of custom post-types and portfolio entries are too custom post types can be activated.
I have Events Manager installed and i can activate the alb by:
add_filter('avf_builder_boxes','enable_boxes_on_events'); function enable_boxes_on_events($boxes) { $boxes[] = array( 'title' =>__('Avia Layout Builder','avia_framework' ), 'id'=>'avia_builder', 'page'=>array('event'), 'context'=>'normal', 'expandable'=>true ); $boxes[] = array( 'title' =>__('Layout','avia_framework' ), 'id'=>'layout', 'page'=>array('event'), 'context'=>'side', 'priority'=>'low'); return $boxes; }
Look to the body class what kind of single you have : on my events there is : single-event – so for me the event is to activate
the function name is anything you like but it is better to have something meaningfulFebruary 15, 2018 at 12:43 pm in reply to: Adding button to mute/unmute audio on fullscreen background video #912727well i have made a section.php in which this is a checkbox to have audio or not.
But it is some time ago. So i will see to update it to the newest enfold file.this here is an enfold 4.1 based sections.php : Download
but it has allready the screenoptions dialog – i guess there weren’t changings till that. It works on my 4.2.3 Enfold
Best is to have it in child-theme!But it is no frontend solution ( all browsers have on top in the tab a mute button)
But you can choose to have audio or notthanks – can be closed
We talk past each other – I do not want to change that globally, but have the opportunity to have the choice even on transparent headers to set the titlebar – even to be hidden.
But i want to have the choice even for transparency header to have title bar !
In other words : I do not want to be patronized if I want one or not
or : as if the check from line 824/825 wasn’t there://deactivate title bar if header is transparent if(!empty($transparency)) $header['header_title_bar'] = 'hidden_title_bar';
Test your code – create a page with transparency and choose hidden title-bar. Now the title bar is there.
on all tranparencies now – there is a title-bar.
Without your code and show title-bar and transparency – titlebar is not there.is there a method to get rid of these two lines 824/825 with a filter via child-theme –
or is the only way to have that by copy the whole function to child-theme:if(!function_exists('avia_header_setting')) { function avia_header_setting($single_val = false) { …
February 14, 2018 at 7:54 pm in reply to: How to put a 3/4 column in the center of the page? #912439the link described above – you only wanted to have a container a bit smaller (75%) and centered?
You dont want to place something left and right from it?than it will be easier to do this:
place a 3/4 th column – give the custom class to it: three-fourth-centered
do this to quick css:
div.av_three_fourth.three-fourth-centered { position: relative; left: 50%; transform: translateX(-50%); }
see here https://webers-testseite.de/3-4th-centered/
both methods will work if you read carefully
i love it if link to live page is there:
.logo img { max-height: 135% !important } .logo, .logo a { overflow: visible } @media only screen and ( max-width: 767px) { .responsive .logo img { max-height: 100px !important } .responsive #header_main .container { height: inherit !important } .responsive #top .logo { display: block } .responsive #top #wrap_all .container.av-logo-container { width: 90%; max-width: 90% } }
maybe you give my solution a chance – it overlaps the header area even on responsive case –
and shrinks as expectedthat overlapping looks nice but i think if you choose the header with “Let logo and menu position adapt to browser window” on header-behavior
will be a bit nicer.-
This reply was modified 7 years ago by
Guenni007.
February 14, 2018 at 3:23 pm in reply to: Different logo on different-pages when using transparent header #912306if these are all portfolio items you got on your page you can use this if clause:
if(is_singular('portfolio')) { …
February 14, 2018 at 9:45 am in reply to: Results from Search Box and Search Results Page are different #912162ismael : it still tries to find results:
and by the way : the code from https://kriesi.at/support/topic/results-from-search-box-and-search-results-page-are-different/#post-907648
leads to a 404 page on my installation too
-
This reply was modified 7 years ago by
Guenni007.
And your own Server has less traffic ( Performance )
this is a nice tip – i put this into a text-block:
[video src="/wp-content/uploads/meeting1035.mp4" loop="on" preload="auto" poster="/wp-content/uploads/screenshot-1.jpg"]
and see here : https://webers-testseite.de/video/
left shortcode from ismaels link above – second with image alb element (for lightbox open)
February 13, 2018 at 11:25 pm in reply to: How to put a 3/4 column in the center of the page? #911981well if you don’t be satisfied with 1/5-3/5-1/5
i would use this nevertheless ( with space between columns) and gave to the sourrounding container a custom class
i choosed here : oneeighth-threefourth-oneeighthand than i would adjust the width of the fifth-columns:
.oneeighth-threefourth-oneeighth .av_three_fifth { width: 9% } .oneeighth-threefourth-oneeighth .av_three_fifth { width: 75% } #top .oneeighth-threefourth-oneeighth .av-flex-placeholder { width: 3% }
see here the difference on normal 5th columns and your desired aim
or you post a link to your page and we will have a look
you can see here a working example: https://pirol-hifi.de/silbersand/
but it would be better to adjust it for your page-
This reply was modified 7 years ago by
Guenni007.
February 13, 2018 at 7:19 pm in reply to: Results from Search Box and Search Results Page are different #911859is there a way to get rid of that ajax Search result suggestions
i mean that it will not run !
that will do it but it works in background.
.ajax_search_response {display: none}
if you are a bit familiar with coordinate systems and polygones – you can try the clip-path method:
the css code is on that test-page.https://webers-testseite.de/elegant/polygones/
polygone coordinates starts at left top corner and goes clockwise around.
to have y coordinates it will be nice to have relativ values concerning to screen widthThe starting page is made this way too: https://webers-testseite.de/elegant
on scrolling you will see that is realy transparent-
This reply was modified 7 years ago by
Guenni007.
February 13, 2018 at 6:14 pm in reply to: Close mobile menu by clicking on active navigation item #911824ok for me here it can be closed
February 13, 2018 at 3:21 pm in reply to: Is possible show a modal popup and also open a link ? #911714well it is a custom-class first.
I have interpreted your desire to have a popup modal window on a link
every link you can setup (in text-block or as alb element like a button) you can give a custom class to.
so if there is a link like<a class="open-popup-link" href=" … </a>
it will than open in a modal window.
the code itself comes to child-theme functions.phpi have that problem too on a flyout in which i placed a link to a film – allthough i add that ?iframe=true (or
&iframe=true
– depending if there is allready a ? ) it does not open in a popup window.February 13, 2018 at 9:38 am in reply to: Is possible show a modal popup and also open a link ? #911579i noticed here on my end a code for functions.php of your child theme:
i set the trigger-class to open-popup-linkfunction popup_script() { ?> <script type="text/javascript"> jQuery(window).load(function(){ jQuery('.open-popup-link').magnificPopup({ type:'inline', midClick: true }); }); </script> <?php } add_action('wp_head', 'popup_script');
my script here: https://kriesi.at/support/topic/google-jquery-loading/#post-778242 has the advantage that if google resource could not be loaded – the local one will be loaded instead.
Maybe you are on a local install and internet is offline or fails etc .pphere is an interesting discussion on that – and why you better don’t do that.
https://kriesi.at/support/topic/google-jquery-loading/
with my code here https://kriesi.at/support/topic/google-jquery-loading/#post-778242i tested the performance aspect on gtmetrix and it was nearby zero effect
on using latest version read this here: https://kriesi.at/support/topic/google-jquery-loading/#post-779335
yes – but i want to have the opportunity to have the choice on page/post editior to set it to be hidden.
(Thats is the following when i uncomment that transparency check on functions-enfold.php)
the following will cause every header to have titlebar.https://kriesi.at/support/topic/position-title-bar-below-first-element/#post-910579
the following does not overwrite:
//deactivate title bar if header is transparent if(!empty($transparency)) $header['header_title_bar'] = 'hidden_title_bar';
but even if it does : I want to preserve the choice on page/post editor to set it to be hidden
if that code here would overwrite the transparency check every transparency header will have forced title-baradd_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 9999, 1); function avf_header_setting_filter_mod($header) { if(!empty($transparency)) $header['header_title_bar'] = 'title_bar_breadcrumb'; return $header; }
so i thought if a rule would be more specific than the transparency check could overwrite the parent check.
Something like if transparency setting is not empty && header_title_bar is not hidden_title_bar than $header header_title_bar should be the value what is set in meta.
But i can not reach it.-
This reply was modified 7 years ago by
Guenni007.
-
This reply was modified 7 years ago by
-
AuthorPosts