Forum Replies Created
-
AuthorPosts
-
The snippet from Ismael’s link placed in your child-theme functions.php ensures that only the child theme is loaded exclusively.
if you only have changes in the php – it is not necessary to have css and js child-theme files.
If you edit them too – you can change the loading in the child-theme php file . f.e. in video.php at lines 43ff:function extra_assets() { //load css wp_enqueue_style( 'avia-module-video', AviaBuilder::$path['pluginUrlRoot'] . 'avia-shortcodes/video/video.css', array( 'avia-layout' ), false ); wp_enqueue_script( 'avia-module-slideshow-video', AviaBuilder::$path['pluginUrlRoot'] . 'avia-shortcodes/slideshow/slideshow-video.js', array( 'avia-shortcodes' ), false, true ); wp_enqueue_script( 'avia-module-video', AviaBuilder::$path['pluginUrlRoot'] . 'avia-shortcodes/video/video.js', array( 'avia-shortcodes' ), false, true ); }f.e. by replacing the load css file via:
//load css wp_enqueue_style( 'avia-module-video', get_stylesheet_directory_uri().'/shortcodes/menu.css', array( 'avia-layout' ), false );and then you will upload that edited css file to the shortcodes folder aswell.
what is the link of your youtube video?
March 14, 2022 at 12:26 pm in reply to: Is there a way to have multiple videos play in the same element? #1344385March 12, 2022 at 9:09 am in reply to: parralax background images positioned "top" not visible on mobile devices. #1344191this might be a solution to your site – but it is more or less a
/*** the mobile devices solution ***/ .responsive.avia_mobile #top #wrap_all .avia-section.av-parallax-section .av-parallax { height: 57vw !important; } .responsive.avia_mobile #top #wrap_all .avia-section.av-parallax-section .container { height: 56.25vw !important; } /*** a desktop browser approach ***/ @media only screen and (max-width:1700px) { .responsive:not(.avia_mobile) #top #wrap_all .avia-section.av-parallax-section .av-parallax { height: 100vh!important; } .responsive:not(.avia_mobile) #top #wrap_all .avia-section.av-parallax-section:first-of-type .av-parallax { top: calc(-70vh + 88px) !important } .responsive:not(.avia_mobile) #top #wrap_all .avia-section.av-parallax-section .av-parallax { top: -55vh !important } .responsive:not(.avia_mobile) #top #wrap_all .avia-section.av-parallax-section .av-parallax .av-parallax-inner { background-position: 50% 50% !important; } .responsive:not(.avia_mobile) #top #wrap_all .avia-section.av-parallax-section .container { height: 56.25vw !important; } }March 11, 2022 at 10:42 pm in reply to: parralax background images positioned "top" not visible on mobile devices. #1344177Now see here two example pages:
https://webers-testseite.de/goodwave/
https://webers-testseite.de/goodwave2/the first is with the height setting of css code above and parallax background-images – ( you see a lot of parallax means bad performant page )
( a little trick avoids a white stripe under each hmiparallax section – the background-color of it is equal to the following section ! )the second example page is with background-image set to scroll ( yes it is scroll ) and with a pseudo-container before that has inherits the same background-image – and that pseudo-container get position fixed !!
That is because background-attachment : fixed has problems not only on mobile advices but also on Safari Browsers on desktop.
to have more of the images on small screens – i set those sections to:@media only screen and (max-width:767px) { .avia-section.hmiparallax .container { height: 100vw !important; } }March 11, 2022 at 9:54 pm in reply to: parralax background images positioned "top" not visible on mobile devices. #1344173First thing to mention.
an ID had to be unique – you got multiple ID’s : hmiparrallax
if you like to select those sections as a group – give them the class: hmiparallax ( parallel ;) ) one rthen to see your image ( and they are all 16:9 images ) in contain !
i would give the color-section via that class a height of: 56.25vw (9/16*100).avia-section.hmiparallax .container { height: 56.25vw !important; }your 900px is too big for small screens – a lot of white space will result.
the rest will come – when you have changed that.
March 11, 2022 at 2:35 pm in reply to: parralax background images positioned "top" not visible on mobile devices. #1344143is there a link to an example page?
March 11, 2022 at 9:25 am in reply to: parralax background images positioned "top" not visible on mobile devices. #1344095on your css i can see just under a comment : /* diapositivas */
the rule:ul.avia-slideshow-inner { width: 1030px!important; }thats the rule that hampers full dimension
this is pure css code – so the place to be inserted is your quick css field in enfold options – general styling.
but i think if you show the gallery – you see that there is on top the last added video and beneath the thumbnails of the older videolinks in that playlist.
All these thumbs are in a unique container ( class: epyt-gallery-list ) if you set this to display none – you will have on top the newest video link.you’re welcome. You even went the way of your own image format. It’s great that it worked out that way.
March 9, 2022 at 1:01 pm in reply to: Icon Grid (Image Flip Box) broken after Enfold upgrade from ver. 4.8.7.1 to 4.9 #1343820March 9, 2022 at 12:03 pm in reply to: Icon Grid (Image Flip Box) broken after Enfold upgrade from ver. 4.8.7.1 to 4.9 #1343813I have only looked through the contents of the folders in Enfold 4.9. There you can see the files. Since the older versions only have 3 files, it was obvious to browse through them to see if there were any differences.
March 9, 2022 at 11:43 am in reply to: Icon Grid (Image Flip Box) broken after Enfold upgrade from ver. 4.8.7.1 to 4.9 #1343808can you post your complete shortcode for that page.
and pleas if- use the code tag here to postMarch 9, 2022 at 11:30 am in reply to: Icon Grid (Image Flip Box) broken after Enfold upgrade from ver. 4.8.7.1 to 4.9 #1343803hm – the min-height is calculated in icongrid.js – but it has never run into conflict on my enfold pages.
and if you look at the rendering of the page, the correct height seems to be calculated at first, but then it is converted to the wrong output.March 9, 2022 at 11:20 am in reply to: Icon Grid (Image Flip Box) broken after Enfold upgrade from ver. 4.8.7.1 to 4.9 #1343802March 9, 2022 at 11:01 am in reply to: Icon Grid (Image Flip Box) broken after Enfold upgrade from ver. 4.8.7.1 to 4.9 #1343797are you familiar with the enfold debug mode?
Then please post the whole enfold shortcode of that page here – and i will import it on a test environment of mine.
Then i can better inspect – if that error is reproducable.Next – one big different is that we have now on
enfold/config-templatebuilder/avia-shortcodes/icongrid/
4 files with one icongrid_old.css and one icongrid.css – and the difference is immense between those files.
there must be the reason for your troubles.
PS: i’m participant as you – so i do not see private Content area that you posted – including logins etc.These are requirements that can be better realised by special plug-ins.
I use on that https://wordpress.org/plugins/youtube-embed-plus/
you can see here a page of a friend – where i set up with enfold a “youtube-channel” page: Link
The Free Version of this plugin is mighty enough to fullfill a lot of your requests.March 8, 2022 at 3:59 pm in reply to: Using Custom Post Types with Template built with Layout Architect #1343659i do not understand the 3rd image.
if you like to add a new portfolio ( yes – even this is a custom post type ) you go and create a new portfolio.
Why don’t you create new post with new “hunde” ?
in this list there must be the new cpt’s – aren’t there?

or is image3 made this way? ( you erased the whole permalink )
why don’t you layout it you want on ( image3 ) and save the whole page as template.

you then can create a new “hunde” page – click on template and then on “hunde-Template” to insert the whole layout.Big Advantage is that you can save these templates via Enfold (Child) – Import/Export : “Export Layout Builder Templates”
March 8, 2022 at 3:48 pm in reply to: Ho to add my own icon instead of the entypo-fontello icons #1343657can i use png

Without more details, or links to the page to which the problem refers, I can expect you to be able to transfer enough to adapt it to your specific case.
I think that the descriptions are precise enough; if they are read.The one thing you had to know is that enfolds nomenklatur for those social links is always:
av-social-link-xyz
the xyz is the name of the social media and that will be at your list point as class – e.g: av-social-link-twitter; av-social-link-facebook; av-social-link-linkedin … etc.But you edit the po files ( not mo ) – after editing the po file with e.g. poedit this creates the po and mo files. Both files had to be uploaded.
btw: you can have your own child-theme lang folder and to have this active you can use in your child-theme functions.php:
function overwrite_language_file_child_theme() { $lang = get_stylesheet_directory().'/lang'; return $lang; } add_filter('ava_theme_textdomain_path', 'overwrite_language_file_child_theme');see : docu
This refers to the easy slider?
March 7, 2022 at 11:58 pm in reply to: Ho to add my own icon instead of the entypo-fontello icons #1343542on fontello you can upload svg files ( they have to meet a few conditions there, but then you can also make an iconfont out of any monochrome svg).
you can upload to fontello svg’s by drag&drop into that custom icons field.

after adding all your wanted svg files – mark them on fontello and give a name to the new icon-font.
Upload that icon-font to enfold ( import/export – Icon font manager )

after that – go and read on the docu how to get for an existing icon a different one.
March 7, 2022 at 9:58 am in reply to: Ho to add my own icon instead of the entypo-fontello icons #1343446see here a result for socket ( not the footer links – those are shariff links to social media ) social links and custom instagram icon:
https://webers-testseite.de/#socket#top #wrap_all #socket .social_bookmarks a { display: block; } #top #wrap_all #socket .av-social-link-instagram a:before { content:""; display:block; width:15px; height:15px; left: 50%; top: 50%; background:url('/wp-content/uploads/custom-instagram.png') no-repeat center center; background-size:contain; position: relative; transform: translate(-50%,-50%); } #top #wrap_all #socket .av-social-link-instagram:hover a { background-color: purple }March 7, 2022 at 9:38 am in reply to: Ho to add my own icon instead of the entypo-fontello icons #1343443more easy than using some quick css code ?
just uploading an image file for your icon to replace.
The one thing you had to know is that enfolds nomenklatur for those social links is always:
av-social-link-xyz
the xyz is the name of the social media and that will be at your list point as class – e.g: av-social-link-twitter; av-social-link-facebook; av-social-link-linkedin … etc.
The way over a new icon-font is more complex – but has some advantages.
If you got a svg file you can upload that to fontello to create an own icon-font.March 7, 2022 at 6:59 am in reply to: Avia Layout Builder inserting shortcodes without any wrapper #1343437Where do you want to place the shortcode?
Is it always the same place? E.g. always in single posts each time before the content? etc.There are some filters (e.g.: avf_template_builder_content) or some hooks you can use to insert shortcodes via do_shortcode.
So if you could be a bit more specific about what you want to achieve, there might be a solution.next tip – if you know the right selector for those headings you can be very specific on changing those font-sizes by setting media query for it.
f.e.:
@media only screen and (min-width:768px) { h1.av-special-heading-tag { font-size: clamp(24px, 3.5vw, 50px); } } @media only screen and (max-width:767px) { h1.av-special-heading-tag { font-size: clamp(22px, 6vw, 50px); } }with a decision to make it via flexible font-size definition etc. pp
March 6, 2022 at 8:27 pm in reply to: Ho to add my own icon instead of the entypo-fontello icons #1343378you can replace these enfold predefined icons by quick css
Then you can even use multicolor images
f.e. a different telegram icon: see docu
scroll to: “In case of using an image”#top #wrap_all .av-social-link-telegram a:before{ content: ""; width: 20px; height: 20px; display: inline-block; vertical-align: middle; background: url(/wp-content/uploads/custom-telegram.png) no-repeat center center; background-size: contain; } #top #wrap_all .av-social-link-telegram:hover a { /*** if needed ***/ }March 6, 2022 at 8:05 pm in reply to: Using Custom Post Types with Template built with Layout Architect #1343373do you have allready a custum post type registered in your theme ?
Or is it a CPT by a plugin?You can include those CPTs to be supported by ALB _ see: Docu
f.e. if your CPT name is event:function avf_alb_supported_post_types_mod( array $supported_post_types ) { $supported_post_types[] = 'event'; return $supported_post_types; } add_filter('avf_alb_supported_post_types', 'avf_alb_supported_post_types_mod', 10, 1); function avf_metabox_layout_post_types_mod( array $supported_post_types ) { $supported_post_types[] = 'event'; return $supported_post_types; } add_filter('avf_metabox_layout_post_types', 'avf_metabox_layout_post_types_mod', 10, 1); -
AuthorPosts





