Forum Replies Created
-
AuthorPosts
-
Hi,
Yes, you should be able to see the image ids in the Media > Library. Put them as the value of the shortcode’s “ids” attribute.
Example image id:
http://site.com/wp-admin/upload.php?item=3504 http://site.com/wp-admin/upload.php?item=3505 >http://site.com/wp-admin/upload.php?item=3506
Example shortcode:
[av_gallery ids='3504, 3505, 3506' style='big_thumb' preview_size='portfolio' crop_big_preview_thumbnail='avia-gallery-big-crop-thumb' thumb_size='portfolio' columns='5' imagelink='lightbox' lazyload='avia_lazyload' av_uid='av-jgesnq4m' custom_class='av-gallery-style-1' admin_preview_bg='']
Best regards,
IsmaelHi,
Add this filter to exclude other posts types from the ajax search.
add_filter('avf_ajax_search_query', 'avf_ajax_search_query_mod', 10, 1); function avf_ajax_search_query_mod( $search_parameters ) { $footer = avia_get_option( 'footer_page', 0 ); $defaults = array('numberposts' => 5, 'post_type' => array( 'product' ), 'post__not_in' => array($footer), 'post_status' => 'publish', 'post_password' => '', 'suppress_filters' => false); $_REQUEST['s'] = apply_filters( 'get_search_query', $_REQUEST['s']); $search_parameters = array_merge( $defaults, $_REQUEST ); return $search_parameters; }
Best regards,
IsmaelHi,
I’m getting the same authentication error. (see private field)
Best regards,
IsmaelHi,
Have you tried setting the overflow property to visible?
.avia-image-overlay-wrap a.avia_image { overflow: visible !important; }
Best regards,
IsmaelDecember 10, 2018 at 1:47 pm in reply to: LifterLMS Plugin – Sidebar is Not Showing In Course or Lessons Page #1043071Hi,
What is the name of the sidebar where you’re applying it to? You can find the name of the sidebars registered by the theme in the includes > admin > register-widget-area.php file.
Best regards,
IsmaelDecember 10, 2018 at 1:42 pm in reply to: Sorting Portfolio Items differently in different cases #1043068Hi,
Thank you for using Enfold.
Have you tried adding conditional functions to the existing filter? You can try the is_page function in particular.
// https://developer.wordpress.org/reference/functions/is_page/
Best regards,
IsmaelHi,
Try to fix the shortcodes by running the shortcode parser. You have to enable the debug mode first.
// https://kriesi.at/documentation/enfold/intro-to-layout-builder/#shortcode-parser
Best regards,
IsmaelHi,
You have to wrap the image tag inside a link tag and add the lightbox class attribute to it.
<a class="lightbox" href="http://jeelsites.nl/projectnatuurlijkwerken/wp-content/uploads/2018/12/grasdag_04042018_667x445.jpg"><img class="size-full wp-image-47 aligncenter" src="http://jeelsites.nl/projectnatuurlijkwerken/wp-content/uploads/2018/12/grasdag_04042018_667x445.jpg" alt="" width="667" height="445" /></a>
Best regards,
IsmaelHi,
I couldn’t find any accordion elements on those pages. Did you remove them? Can you give us a screenshot?
Best regards,
IsmaelHi,
The error is generated by the “if-menu” plugin from this file “wp-content/plugins/if-menu/if-menu.php:46”. Please contact the plugin authors.
Best regards,
IsmaelHi,
Where did you get the font? Please note that you can only upload Google Fonts in the custom font manager. Try to import the font via css.
// https://css-tricks.com/snippets/css/using-font-face/
Best regards,
Ismael-
This reply was modified 6 years, 7 months ago by
Ismael.
Hi,
I edited the page and set the “Header visibility and transparency” to the first option. Let me know if that’s what you’re after.
Best regards,
IsmaelHi,
Thanks for the update. This script should help.
add_action('wp_footer', 'avf_add_sub_menu_script'); function avf_add_sub_menu_script(){ ?> <script type="text/javascript"> (function($) { var menu = document.getElementById("menu-events-sub-menu"); var current = menu.querySelector(".current-menu-item"); current.classList.remove('current-menu-item'); var items = menu.getElementsByClassName("menu-item"); for (var i = 0; i < items.length; i++) { items[i].addEventListener("click", function() { var current = document.getElementsByClassName("current-menu-item"); current[0].className = current[0].className.replace(" current-menu-item", ""); this.className += " current-menu-item"; }); } })(jQuery); </script> <?php }
Just add it in the functions.php file and then remove the browser cache prior to testing the page.
Best regards,
IsmaelDecember 10, 2018 at 5:51 am in reply to: Autoplay Vimeo video added to homepage with Avia Video block #1042909Hi,
but there is no button.
You have to add the button manually. Edit the slide and then go to the Captions panel. You’ll be able to add a button there.
Best regards,
IsmaelHi,
I think you forgot to include the screenshot. Please post the login details in the private field. Make sure that the Appearance > Editor panel is accessible so that we can test the modification.
Best regards,
IsmaelDecember 10, 2018 at 5:48 am in reply to: Hide all portfolio items from internal search results #1042906Hi,
Awesome! Glad we could help!
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,
IsmaelDecember 10, 2018 at 5:48 am in reply to: Floating frame breaks masonry & scrolling & other usability #1042904Hi,
Do you have a test page where we can check it? You can clone the current home page or create a copy of it.
Best regards,
IsmaelDecember 10, 2018 at 5:47 am in reply to: How to configurate Google Captcha in Contact Form because of spamming problem #1042903Hi,
Great! Glad it’s working.
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,
I haven’t tested that on older versions but it should work as long as you’re using reCAPTCHA V2, not V3.
Best regards,
IsmaelHi,
Thanks for the info. The image tag is nowhere to be found. Is it displaying properly when you remove the code? Please post the login details in the private field.
Best regards,
IsmaelHi,
The header in the page “brochure” is already sticky. How did you fixed it?
Best regards,
IsmaelDecember 10, 2018 at 5:42 am in reply to: Parallax bug on Background Images (With Pictures) #1042898Hi,
Thanks for the screenshot. Did you enable the Enfold > Performance > File Compression settings, or install any cache plugin? Please disable those temporarily and then add the script again.
Best regards,
IsmaelDecember 10, 2018 at 5:39 am in reply to: Vimeo embed with autoplay doesn't seem to be working #1042897Hi,
Unfortunately, you can’t autoplay a video on chrome without muting it. That’s the browser’s policy, so there’s no way around it.
Best regards,
IsmaelHi,
The overlay will not display if the height of the image is less than 100px. The maximum height of the images in the “reporting” page is 89px, so you have to increase the column size.
Best regards,
IsmaelHi,
1.) Set the Enfold > Blog Layout > Blog Layout to the very the last option so that you can use the Advance Layout Builder for the blog page. You can then set the default color as you wish.
Best regards,
IsmaelDecember 10, 2018 at 5:03 am in reply to: Woocommerce Cart Icon does not show badge/ articles #1042886Hi,
I can’t reproduce the issue on my end. The cart counter displays properly regardless of the login status.
// https://imgur.com/a/YfkRV2d
Where are you testing this?
Best regards,
IsmaelDecember 10, 2018 at 4:56 am in reply to: "undefined" text displayed on products with WooCommerce Add On fields #1042884Hi,
Ask the plugin author where the script gets the title. It’s probably from a heading element with a certain class attribute. Like this one:
<h1 class="product_title entry-title">An Awesome Product</h1>
Try to use that code as the product title.
Best regards,
IsmaelHi,
Did you update the header.php file in the child theme? Please update it or disable it temporarily. That should fix the issue.
Best regards,
IsmaelHi,
Can you give us a screenshot of the error? Or provide a step by step instruction on how we can reproduce the issue.
Best regards,
IsmaelDecember 10, 2018 at 4:01 am in reply to: LayerSlider showing 'more videos' when opened in Chrome #1042875Hi,
Thanks for the update.
I’m not really sure what’s going on in that page but I get a lot of “conflict” or 409 errors. Did you modify the .htaccess file? Please try to deactivate the plugins temporarily.
// https://pastebin.com/syHUTVzk
Best regards,
Ismael -
This reply was modified 6 years, 7 months ago by
-
AuthorPosts