Forum Replies Created
-
AuthorPosts
-
Hey 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 here
Or 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,
IsmaelHi,
The css codes above add pseudo or fake arrows to the tab container. We can’t make it clickable, unfortunately.
Best regards,
IsmaelHi,
What do you see after adding the code? Can you give us a screenshot? You can use imgur or dropbox.
Best regards,
IsmaelHi,
I’m not really sure what’s causing that. Have you contact the plugin authors? Try to forward the errors to their developers.
at wpneo_upload_image (crowdfunding-front.js?ver=1.8.6:153) at HTMLDocument.<anonymous> (crowdfunding-front.js?ver=1.8.6:177)
Best regards,
IsmaelHi,
Thanks for the update. Try this script instead:
add_action('wp_footer', 'ava_color_closed_event', 9999); function ava_color_closed_event() { ?> <script> (function() { let et = document.querySelector('.tribe-events-single-event-title'); et = et ? et : document.querySelector('.tribe-events-month-event-title a'); if( ( et ) && ( et.textContent == 'Closed' || et.textContent == 'Library Closed' ) ) { et.style.color = '#c20b1a'; } })(); </script> <?php }
Best regards,
IsmaelNovember 9, 2018 at 5:53 am in reply to: Fullwidth Easy Slider – Image background has disappeared #1031527Hi,
Thanks for the update.
We’ll forward the issue to our developers. This script should fix it temporarily.
add_action('wp_footer', 'ava_custom_script_full_background'); function ava_custom_script_full_background(){ ?> <script type="text/javascript"> (function($) { $('.av_slideshow_full').each( function() { $(this).css({ 'background-image': 'url(' + $(this).data('src') + ')', 'background-size': 'cover', 'background-repeat': 'no-repeat', 'background-position': 'center center' }); }); })(jQuery); </script> <?php }
Best regards,
IsmaelHey!
That filter returns the link of the search result item. You can use that filter to adjust the $link based on your conditions.
Example:
add_filter( "av_custom_url", function( $link, $post ) { $link = get_the_permalink( $post->ID ); return $link; }, 10, 2 );
Cheers!
IsmaelNovember 9, 2018 at 5:32 am in reply to: Problem google maps (marker in the middle of the ocean (blue map)) #1031514Hi,
Great! Glad it’s fixed. Open a new thread if you need anything else. :)
And when you have the time, please take a moment to review our theme and show your support https://themeforest.net/downloads
Don’t forget to bookmark Enfold Documentation for future reference.Thank you for using Enfold :)
Best regards,
IsmaelHi,
Thanks for the update.
1.) Use this css code to remove the grayscale effect.
.av-tab-section-image { filter: grayscale(0); }
2.) Looks like you’ve already set the header to transparent.
3.) Try to decrease the default padding and font size of the menu items.
@media only screen and (max-width: 1024px) { .main_menu ul:first-child > li > a { font-size: 11px; padding: 0 8px; } }
Best regards,
Ismael -
AuthorPosts