Forum Replies Created
-
AuthorPosts
-
September 24, 2019 at 10:02 am in reply to: This element was disabled in your theme settings #1141306
It’s working on a page but not on the CPT.
That’s the code how I activated ALB for the CPT:
add_filter('avf_builder_boxes', 'add_builder_to_posttype'); function add_builder_to_posttype($metabox) { foreach ($metabox as &$meta) { if ($meta['id'] == 'avia_builder' || $meta['id'] == 'layout') { $meta['page'][] = 'projekt'; } } return $metabox; }
September 24, 2019 at 9:28 am in reply to: This element was disabled in your theme settings #1141290If the setting is “Load only used elements” the Enfold Image-Element returns ‘This element was disabled in your theme settings’.
I would be interested in a fix for the alert as well. We are maintaining around 50 Enfold-Sites with this issue.
Shouldn’t be so hard to integrate to code you mentioned at the top in Enfold from your side, or is it? Or is there a way to fix this in child themes’ function.php?
Hi Nikko,
I don’t want to load them manually by clicking some checkboxes (I know thats possible). I want to set is to “Load only used elements” and load specific ones via code.
Is it possible?
Thanks
November 29, 2018 at 10:25 am in reply to: New page template file with footer and no header #1038865Hi,
Without testing I would say you have to create a custom template https://developer.wordpress.org/themes/template-files-section/page-template-files/, copy everything in from enfold page.php and delete what you don’t need. Don’t forget to choose the new template on the page you want. Give it a try.
Cheers
PatrickOk,
So please hand it over as a feature request because your feature request form isn’t working.cheers
November 21, 2018 at 2:28 pm in reply to: SVG section background-image doesn't work since 4.5 #1036064Sorry, I just have a local version of the project.
Just use a section element and assign a svg background image. After saving and reloading the page its gone and also not visible on the frontend.cheers
I didn’t test any of the suggested option but if nothing of those is working you could create a shortcode and fetch the last post and style it like you want, Further reading: https://codex.wordpress.org/Shortcode_API
Best,
PatrickOctober 24, 2018 at 8:41 am in reply to: "slightly increase the image on hover" not workin after update to 4.5 #1025823Hi :)
Anything new here?
Best,
PatrickHi Victoria,
Sorry, I don’t have a public available version yet. But you can try it on your website. I tried it on different local versions.
1) Add an Image
2) Set Image Hover effect to “Yes, slightly increase the image size”
3) Look how it’s not working :)Best,
PatrickDid you use png or svg? If you use a svg you have to set the width of the svg.
Best,
PatrickHi,
You have to set a custom id to the element you want to scroll to. To enable custom element id go to Enfold Settings > Layout Builder > Show element options for developers.
After that you set the link of your button to “Set manually” and to “#yourchosenid”.Best,
PatrickIch hatte auch Probleme beim Update. Angeblich ist der Fehler bekannt und wir mit 4.5 behoben. Ich habe manuell upgedated. Nicht vergessen auf die neue Envato API umzustellen.
Looks like there where some issues with updates before 4.5.0. Please update manually and don’t forget to use the new envato API.
lg
Patrick- This reply was modified 6 years, 1 month ago by Resonanz Digital.
August 3, 2018 at 10:16 am in reply to: Empty background-image property on each section element #993139Thank you Ismael.
Best,
PatrickJuly 31, 2018 at 2:35 pm in reply to: Empty background-image property on each section element #991943You can check it on your own website (https://kriesi.at/themes/enfold-overview/). Each section element which has no background-image set has an empty background-image property.
<div id="av_section_2" class="avia-section main_color avia-section-small avia-no-border-styling avia-bg-style-scroll avia-builder-el-3 el_after_av_section el_before_av_masonry_entries container_wrap fullsize" style="background-image: ">
Best,
PatrickIn avia-media.js: (136,5)
var clicked = $(this), options = clicked.data(); parent = clicked.closest('.avia-modal-group-wrapper');
but it should be:
var clicked = $(this), options = clicked.data(), parent = clicked.closest('.avia-modal-group-wrapper');
June 19, 2018 at 8:56 am in reply to: enfold remarketing tag can't put into head or body section #974652/** * Google Tag Manager Body Script */ function google_tag_manager_body_code() { ?> // Body Code <?php } add_action( 'ava_after_body_opening_tag', 'google_tag_manager_body_code', 1); /** * Google Tag Manager Head Script */ function google_tag_manager_head_code(){ ?> // Head Code <?php } add_action('wp_head', 'google_tag_manager_head_code', 1);
Put this in your functions.php of your child theme.
Best,
PatrickYou should consider making it possible to add different color_sets in the enfold settings. I think this is necessary for modern webdesign.
I will tackle that problem on my own. I just thought there’s maybe an easy way to do it.Thanks,
PatrickI solved it. I had to remove “avia_start_delayed_animation” because this class is set with javascript.
-
AuthorPosts