Forum Replies Created
-
AuthorPosts
-
November 12, 2018 at 5:14 am in reply to: masonry not showing under advanced layer slider with parallax #1032420
Hi,
I would like to apologize for the late response. If you have a test page, we’ll try and check the issue.
Best regards,
IsmaelHi,
Thanks for the info.
You should increase the z-index value of the section where the navigation is located. That is the “company” section.
#company { position: relative; z-index: 1000; }Best regards,
IsmaelHi,
Did you disable the map element/script before? You got this code in the functions.php file:
add_filter('avf_load_google_map_api_prohibited', 'avf_load_google_map_api_prohibited_true', 10, 1); function avf_load_google_map_api_prohibited_true($prohibited) { $prohibited = true; return $prohibited; }Please disable it temporarily.
Best regards,
IsmaelHi,
That is not available in the theme but you can find the sidebar navigation function in the functions-enfold.php file. Look for the “avia_sidebar_menu” function. Maybe, you can modify the function for your custom posts.
Best regards,
IsmaelHi,
Thanks for the update. That is the default style of the testimonial slider. You can use this css code if you want to recreate the “speech bubbles” style.
#top .av-large-testimonial-slider .avia-testimonial-meta { background: #fcfcfc; border: 1px solid #e3e3e3; padding: 0 30px 20px 30px; } #top .av-large-testimonial-slider .avia-testimonial-arrow-wrap { display: block; bottom: -10px; top: auto; }Best regards,
IsmaelNovember 12, 2018 at 4:35 am in reply to: Floating frame breaks masonry & scrolling & other usability #1032412Hi,
Did you remove the “Boek afspraak” button? I can’t find it anywhere in the site. Do you want to open the widget inside a lightbox?
Best regards,
IsmaelNovember 12, 2018 at 4:27 am in reply to: PHP warning message in admin panel after 4.5 update #1032410Hi,
Glad it’s fixed. We’ll close the thread now.
Have a nice day! :)
Best regards,
IsmaelNovember 12, 2018 at 4:20 am in reply to: Color section: No button hover w/ bg. overlay / No diag. section border w/o bg. #1032408Hi,
he primary problem persists: No button hover WITH diagonal section border / No diagonal section border WITHOUT background overlay.
Where can we see that issue? Can you give us a screenshot? Please use imgur or dropbox.
For additional inquiries, please open a new thread.Best regards,
IsmaelHi,
Looks like the large blank space on top of the section has been removed. Are there any layout issues left?
Best regards,
IsmaelHey bauchdenker,
Thank you for using Enfold.
It is scrolling at the very top of the section. I checked it in on Chrome Windows 8. Where are you testing it? Can you give us a screencast?
Best regards,
IsmaelHi,
Are the file compression settings enabled? Please check it in the Enfold > Performance panel and disable it temporarily if it’s enabled.
Best regards,
IsmaelNovember 12, 2018 at 4:05 am in reply to: How to move the position of the Caption of a picture #1032401Hi,
This css code should help.
#top .av-caption-style-overlay.av-flex-size .av-masonry-entry.av-masonry-item-with-image .av-inner-masonry-content-pos-content { display: table-cell; vertical-align: bottom !important; }Best regards,
IsmaelNovember 12, 2018 at 4:01 am in reply to: Display a small arrow that points down to the next section – Missing on Mobile #1032400Hi,
Did you remove the arrows? I can’t see it in the home page anymore.
Best regards,
IsmaelNovember 12, 2018 at 3:37 am in reply to: Form inside codeblock not dispaying properly URGENT PLEASE #1032398Hi,
I would like to apologize for the late response. This css code should help decrease the spaces between the fields.
#top .input-text, #top input[type="text"], #top input[type="input"], #top input[type="password"], #top input[type="email"], #top input[type="number"], #top input[type="url"], #top input[type="tel"], #top input[type="search"], #top textarea, #top select { margin-bottom: 0 !important; }Best regards,
IsmaelHi,
The translation for that language is not available yet, unfortunately. You may need to set it to “Deutsch” to get the theme options translation.
Best regards,
IsmaelNovember 12, 2018 at 3:20 am in reply to: WooCommerce Advanced extra fees and reductions displaying #1032395Hi,
I would like to test the css code but I can’t access the theme options panel. Please set the user role to admin. Have you tried disabling the Performance > File Compression settings?
Best regards,
IsmaelHey pantoni,
Thank you for using Enfold.
Have you tried adding the actual page menu item instead of creating a custom menu? Those menu items are not getting the active state because they are custom menu items.
Best regards,
IsmaelNovember 12, 2018 at 2:58 am in reply to: How can I put in the Google Captcha in the Enfold contact form #1032392Hi,
I would like to apologize for that. Please create a reCAPTCHA key here:
// https://www.google.com/recaptcha/admin
And then add this code in the functions.php file.
You have to add the reCAPTCHA public key on this line:
var publickey = 'YOUR PUBLIC API KEY';Best regards,
IsmaelHey!
This thread should help.
// https://kriesi.at/support/topic/having-for-custom-post-type-event-the-avia-post-nav-too/#post-909664
Regards,
IsmaelHi,
Thanks for the update. I can’t figure out what’s going on there. Please set the builder to debug mode so that we can see the actual shortcode. Just add this code in the functions.php file:
//set builder mode to debug add_action('avia_builder_mode', "builder_set_debug"); function builder_set_debug() { return "debug"; }Best regards,
IsmaelNovember 9, 2018 at 10:29 am in reply to: Breadcrumbs not showing all grandparent/parent/child #1031597Hi,
Thanks for the update.
You can try this filter:
add_filter( 'avia_breadcrumbs_trail', 'avia_breadcrumbs_trail_mod_division', 5, 1 ); function avia_breadcrumbs_trail_mod_division( $trail ) { if( is_single() ) { global $post; if( $post->post_type !== 'solutions' ) return $trail; $parentID = wp_get_post_parent_id( $post->ID ); if( $parentID == 0 ) return $trail; $parent = get_post( $parentID ); if( ! empty( $parent ) ) { $home = $trail[0]; $last = array_pop($trail); $link = '<a href="'.get_the_permalink($parent->ID).'">'.$parent->post_title.'</a>'; $link = preg_replace('!rel=".+?"|rel=\'.+?\'|!',"", $link); $link = str_replace('<a ', '<a rel="v:url" property="v:title" ', $link); $link = '<span typeof="v:Breadcrumb">'.$link.'</span>'; $trail = array(0 => $home, 1 => $trail[1], 2 => $link, 'trail_end' => $last); } $grandparentID = wp_get_post_parent_id( $parent->ID) ; if( $grandparentID == 0 ) return $trail; $grandparent = get_post( $grandparentID ); if( ! empty( $grandparent ) ) { $home = $trail[0]; $last = array_pop($trail); $link = '<a href="'.get_the_permalink($grandparent->ID).'">'.$grandparent->post_title.'</a>'; $link = preg_replace('!rel=".+?"|rel=\'.+?\'|!',"", $link); $link = str_replace('<a ', '<a rel="v:url" property="v:title" ', $link); $link = '<span typeof="v:Breadcrumb">'.$link.'</span>'; $trail = array( 0 => $home, 1 => $link, 2 => $trail[1], 3 => $trail[2], 'trail_end' => $last ); } } return $trail; }Best regards,
IsmaelNovember 9, 2018 at 10:20 am in reply to: On form submition error need to add error string, how can i do it? #1031594Hi,
I would like to access the dashboard but I got blocked by WordFence. Please disable the plugin temporarily. Where did you add the css code?
Best regards,
IsmaelHi,
Thanks for the update. That is the logo for the transparent header. Please go to the Enfold > Transparency Options panel and remove the “Transparency Logo” value.
Best regards,
IsmaelNovember 9, 2018 at 6:30 am in reply to: How to override Enfold mods to The Events Calendar in Enfold-Child? #1031562Hi,
Cool. Open a new thread if you need anything else. We’ll close this one now.
Have a nice day.
Best regards,
IsmaelHi,
If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.
Thanks!
Best regards,
IsmaelHi,
Great! Glad it worked. Let us know if you need anything else. We’ll close the thread now.
Have a nice day!
Best regards,
IsmaelNovember 9, 2018 at 6:22 am in reply to: How can i remove the gaps between these container content view in responsive #1031550Hi,
Did you import the “Poiret One” font in your css?
// https://www.w3schools.com/cssref/css3_pr_font-face_rule.asp
Best regards,
IsmaelHi,
Thanks for the update. Do you want to disable the animation of the accordion items on page load? If that is so, you can use this css code.
#top .aviaccordion-preview-title-pos { opacity: 1; filter: alpha(opacity=100); }Best regards,
IsmaelHi,
Thanks for the info.
You can actually set a particular page as footer on the latest version of the theme, so I don’t think you would be needing that shortcode anymore. Just set the page as footer in the Enfold > Footer > Default Footer & Socket Settings settings.
Best regards,
IsmaelNovember 9, 2018 at 6:14 am in reply to: How to remove the "Your Message:" CONTENT / How to target different languages #1031545Hi,
Do you want to remove the input identifiers such as “First name:”, “Last name:” etc? You can add more str_replace function like this:
$message = str_replace('First name:', '', $message); $message = str_replace('Last name:', '', $message); // more str_replace code hereOr create an array of texts that you want to remove:
function avf_form_autorespondermessage_mod($message) { $excludes = array( "Your Message", "First name: ", "Last name:" ); foreach( $excludes as $remove ) { $message = str_replace( $remove, '', $message ); } return $message; } add_filter('avf_form_autorespondermessage', 'avf_form_autorespondermessage_mod', 10, 1);Add the texts that you don’t want inside the $excludes array.
Best regards,
Ismael -
AuthorPosts
