Forum Replies Created
-
AuthorPosts
-
Hi,
@Underkult: Do you have a staging site? Please put your modifications in the avia.js file and then we’ll check the site again. What did you add in the includes > helper-main-menu.php file?
Best regards,
IsmaelHi,
The “shop_thumbnail” size is still set to 100x100px when I check the Settings > Media panel. You have to adjust it before the regenerating the images.
Best regards,
IsmaelHi,
Cool! 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,
IsmaelHi,
Sorry for the confusion. I was referring to the “Slider markup caching”. Is that enabled?
Best regards,
IsmaelOctober 23, 2018 at 11:19 am in reply to: Option "use as mega menu" and "Column or Rows" no more available #1025340Hi,
I think it’s not working because of the “If Menu – Visibility control for menu items” plugin. Please try to disable it temporarily.
Best regards,
IsmaelHey CloudZen,
Thank you for using Enfold.
Yes, that is the default behavior of the element. Use this css code to redisplay a finished countdown.
.av-countdown-timer { opacity: 1; }
Best regards,
IsmaelOctober 22, 2018 at 3:49 pm in reply to: Main menu active/hover state with background image #1024921Hey Gitte,
Thank you for using Enfold.
Try to append the “current_page_item” or “current_menu_item” class attributes to the id selector. That should work for the active state.
#menu-item-29.current_menu_item { // css here }
Best regards,
IsmaelHi,
I can’t access the hotspots even on desktop view. It just blinks. Did you modify the element? Please upgrade the theme to version 4.5.
Best regards,
IsmaelOctober 22, 2018 at 3:29 pm in reply to: Single portfolio entry lightbox gallery won't show all the images #1024910Hey!
I see. The last two images are not included. Try to move them inside the same section as the first four.
Best regards,
IsmaelOctober 22, 2018 at 3:03 pm in reply to: Single portfolio entry lightbox gallery won't show all the images #1024893Hi,
All of the images in the section are included inside the lightbox when I checked — all six of them. Is this fixed?
Best regards,
IsmaelHi,
Do you have a staging site? I don’t think there’s any modification related to the media files in the latest version for it to not work properly. The error thrown by the browser is quite unclear, so I’m not really sure where to check.
Best regards,
IsmaelOctober 22, 2018 at 5:17 am in reply to: WooCommerce Grid / List toggle v1.1.0 not working on enfold :( #1024665Hi,
@gtekit: Sad to hear that you’ve switched theme. Good luck. And thank you for the input.
@EdgeWP: Use this script in the functions.php file:add_action('wp_footer', 'ava_move_prod_list_title', 9999); function ava_move_prod_list_title() { ?> <script> (function() { const p = document.querySelectorAll('.list .product'); if(p) { p.forEach( pr => { const t = pr.querySelector('.inner_product_header'); const d = pr.querySelector('.woocommerce-LoopProduct-link'); const f = t.cloneNode(true); t.querySelector('.woocommerce-loop-product__title').remove(); d.parentNode.insertBefore(f, d.nextSibling); f.querySelector('.price').remove(); f.querySelector('.onsale').remove(); }); } })(); </script> <?php }
And then add this css code:
#top div .products.list .woocommerce-loop-product__link + .inner_product_header { float: left; clear: none; height: auto; min-height: 0; }
Best regards,
IsmaelHi,
Cool! 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,
IsmaelOctober 22, 2018 at 4:25 am in reply to: How can i remove the gaps between these container content view in responsive #1024662Hi,
Thanks for the update.
I don’t really see any issue with that section aside from the h1 text bleeding outside the container on smaller screens. You can fix that with this css code.
@media only screen and (max-width: 767px) { .avia_textblock h1 { font-size: 20px !important; } }
You can adjust the font size value as you wish.
Best regards,
IsmaelOctober 22, 2018 at 4:16 am in reply to: Fatal Error with nextgen plus using lightbox pro effect on mobile devices #1024660Hi,
Thanks for the info.
Try to wrap the gallery inside a div container. Example.
<div class="ngg-gallery-wrap"> // gallery here</div>
Use this script in the functions.php file.
add_action('wp_footer', 'ava_remove_ngg_wrapper', 9999); function ava_remove_ngg_wrapper() { ?> <script> (function() { const ngw = document.querySelector('.ngg-gallery-wrap'); const ngg = ngw.childNodes; const h = ngg[0].offsetHeight; const w = ngg[0].offsetWidth; ngw.style.width = w + 'px'; ngw.style.height = h + 'px'; })(); </script> <?php }
And then add this code in the Quick CSS field:
.ngg-gallery-wrap { display: block; width: 100%; height: auto; margin: 0 auto; }
Don’t forget to remove the browser cache before you check the page.
Best regards,
IsmaelHi,
It means that the posts’ images should have the same size to be correctly sorted?
Yes, that’s the case sometimes. The isotope script rearranges the items based on the images, which may not correspond to the actual posts order. One solution is to set a different size settings as you’ve already tried.
I don’t know where to put the “Portrait” or “Landscape” tags (could you tell me that?).
Add the “landscape” or “portrait” as post tags in the post editor.
Best regards,
IsmaelHi,
Why do you access the font from another site? It’s causing a cross origin issue. (see private field)
This might help: https://kriesi.at/documentation/enfold/icon/#icons-are-showing-as-rectangular-boxes-
Or just upload the font to the “sportsbarnorthernquarter” site.
Best regards,
IsmaelHi,
That is the default topic or forum header. Use this css code to hide it.
#top .bbp-replies .bbp-header { display: none; }
Best regards,
IsmaelHi,
Thanks for the update.
4.) You can use this script to move the post meta info after the title.
add_action('wp_footer', 'ava_custom_script_move_blog_info'); function ava_custom_script_move_blog_info(){ ?> <script type="text/javascript"> const entry = document.querySelector(".single .entry-content-wrapper"); const meta = document.querySelector(".single .post-meta-infos"); const title = document.querySelector(".single .av-heading-wrapper"); title.parentNode.insertBefore(meta, title.nextSibling); </script> <?php }
5-6.) Again, you can edit those elements in the Advanced Styling panel. Let us know if it’s not working.
Best regards,
IsmaelHi,
Yes, that’s another way to do it. Or you can add adjust the range of the css gradient.
background: -moz-linear-gradient(top, rgba(0,0,0,0)33%, rgba(0,0,0,0.65) 57%); /* FF3.6-15 */ background: -webkit-linear-gradient(top, rgba(0,0,0,0) 33%,rgba(0,0,0,0.35) 57%); /* Chrome10-25,Safari5.1-6 */ background: linear-gradient(to bottom, rgba(0,0,0,0) 33%,rgba(0,0,0,0.65) 57%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ : progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 ); /* IE6-9 */
You can then apply the post link to the gradient layer in the “Link & Attributes” panel. Let us know if you need anything else. :)
Best regards,
IsmaelOctober 22, 2018 at 3:23 am in reply to: The Language Switcher is Not Displaying on the Search Page #1024650Hi,
I can’t access the Appearance > Editor panel through your dashboard. Please enable it or post the FTP details in the private field.
Best regards,
IsmaelHi!
It should be saved in your browser’s local storage as cookies. Did you disable cookies in your browser?
Regards,
IsmaelHi,
Thanks for the update.
I think you forgot the username. I’ve tried the usernames from your previous threads but they’re not working.
Have you tried using your own html code as described in the docs?<a href="https://www.pinterest.com/pin/create/button/" data-pin-do="buttonBookmark" data-pin-custom="true"> --YOUR CUSTOM HTML-- </a>
I guess the script targets every elements with the “pinterest” string in the href attribute.
You can use this css code to hide the theme’s pinterest button:
.av-share-link.av-social-link-pinterest { display: none; }
Best regards,
IsmaelHi,
Is the site down? It’s not loading properly on my end. Did you add a theme slider on the page? The onMessageReceived function should not be called when a theme slider (“.avia-slideshow”) is not present in the page.
Best regards,
IsmaelHi,
Thanks for the update. I can’t reproduce the initial issue with the ajax slide. Please open a new thread if you can still see the issue.
Best regards,
IsmaelHi,
Thanks for the update. Install the “Simple Image Sizes” plugin instead then go to the Settings > Media panel. Adjust the size of the “shop_thumbnail”, update, save and then regenerate the images.
// https://wordpress.org/plugins/simple-image-sizes/
Best regards,
IsmaelOctober 22, 2018 at 1:46 am in reply to: Page footer displays different on pages and woocommerce pages #1024639Hi,
I see. You should be able to remove the “sidebar_right” class attribute with this script.
add_action('wp_footer', 'ava_remove_footer_class', 9999); function ava_remove_footer_class() { ?> <script> const footer = document.getElementById('footer-page'); footer.classList.remove('sidebar_right'); </script> <?php }
Best regards,
IsmaelHi,
Thanks for the update. I’ve added the following css code on the Quick CSS field instead.
#top #wrap_all .avia-slideshow-button { font-size: 15px; line-height: 1.9em; letter-spacing: 1px; text-transform: uppercase; font-weight: 300; }
Please remove the browser cache prior to checking the page.
Best regards,
IsmaelHi,
Thanks for the update. It doesn’t matter if it’s the shop page or not. That css code should override the default style of the “shop section”. Did you enable the Performance > File Compression settings? Please disable it temporarily and then add the css code again.
Best regards,
IsmaelHi,
You have to add that code along with the previous one.
add_action( 'bbp_enqueue_scripts', 'wp_change_bbcss', 9999 ); function wp_change_bbcss() { wp_dequeue_style( 'avia-bbpress' ); wp_deregister_style( 'avia-bbpress' ); } add_action('after_setup_theme', 'avf_register_default_bbpress_style', 1000 ); function avf_register_default_bbpress_style() { remove_filter('bbp_default_styles', 'avia_bbpress_deregister_default_assets', 10, 1); }
Best regards,
Ismael -
AuthorPosts