Forum Replies Created
-
AuthorPosts
-
Hi,
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,
IsmaelHi,
Alright. Let us know if you need anything else. Thank you for using Enfold. :)
Best regards,
IsmaelHi,
Sorry for the late response. This thread might help.
// https://kriesi.at/support/topic/layer-slider-and-wpml/#post-989889
Best regards,
IsmaelHi,
Where did you add the css code? The headings are still using the theme font, currently set to “Lato”.
h1, h2, h3, h4, h5, h6, #top .title_container .main-title, tr.pricing-row td, #top .portfolio-title, .callout .content-area, .avia-big-box .avia-innerbox, .av-special-font, .av-current-sort-title, .html_elegant-blog #top .minor-meta, #av-burger-menu-ul li { font-family: 'Lato', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif; }
Best regards,
IsmaelHey!
Cool. You’re welcome. Please feel free to open a new thread if you need anything else.
Best regards,
IsmaelHey manchust,
Thank you for using Enfold.
Use this css code to adjust the preview image column.
.portfolio-preview-image { width: 50%; }
Best regards,
IsmaelHi,
I can see the issue but I’m not sure why the comments are sorted that way. Did you add any modifications in the functions.php file?
Best regards,
IsmaelHi!
What did you add in the avia.js file? Please walk us through your modifications including the PHP files.
Regards,
IsmaelHi,
I can see the issue but I’m not sure why the comments are sorted that way. Did you add any modifications in the functions.php file?
Best regards,
IsmaelHi,
That is how the banner is supposed to resize because it is a parallax background. You can use this css code to disable the effect and resize the background image. However, this modification may distort the image on certain screen sizes.
#av_product_description { min-height: 240px; } #av_product_description .av-parallax { width: 100% !important; height: 100% !important; transform: none !important; } #av_product_description .av-parallax-inner.av-parallax-woo { background-size: 100% 100%; }
Best regards,
IsmaelHey BSHosts,
Thank you for using Enfold.
That option is not available by default but the portfolio grid element has an option that is a bit similar known as AJAX portfolio.
// https://kriesi.at/themes/enfold/portfolio/portfolio-ajax/
Best regards,
IsmaelHey educatedathlete,
Thank you for using Enfold.
The site requires authentication. Please post it in the private field. How did you set the maintenance mode?
Best regards,
IsmaelHey marcoabis81,
Thank you for using Enfold.
I’m not really sure why that happened but if I were to guess, the user session probably expired before the editor get the chance to autosave the post. Unfortunately, you can’t retrieve an unsaved post or contents that are not available in the revision. Please save your work regularly. You can also adjust the auto save interval value in the wp-config.php file.
define('AUTOSAVE_INTERVAL', 300 ); // seconds
Best regards,
IsmaelHi,
I see. Thanks for the info. Please edit the config-woocommerce > woocommerce-mod.js file. Remove and replace everything with this code.
// https://pastebin.com/AaWnWc6D
Best regards,
IsmaelHi,
Add a unique id or class attribute to the image or link and then use that selector to create a pseudo element.
// https://developer.mozilla.org/en-US/docs/Web/CSS/::before
Apply the gradient or overlay to that element.
Best regards,
IsmaelHi,
Do you want to place the image above the post title instead of inside the search counter? Try this one:
// https://kriesi.at/support/topic/show-featured-images-in-search-results-page/#post-805258
It’s going to be much bigger.
Best regards,
IsmaelHi,
Odd. I can’t reproduce the issue on my end anymore. Are you testing the home page? The error occurs because the event.data object is null or undefined.
Best regards,
IsmaelHi,
It’s in the browser console log. That is the only error — no other info. Should we close this then?
Best regards,
IsmaelOctober 19, 2018 at 11:15 am in reply to: WooCommerce Grid / List toggle v1.1.0 not working on enfold :( #1023842Hi,
Can you give us a screenshot of the issue? Please open a new thread when possible.
Best regards,
IsmaelOctober 19, 2018 at 11:11 am in reply to: Mega Menu option not showing after save the menus #1023837Hi,
You have to disable the popup maker’s menu editor as described in the docs. Have you done that?
Best regards,
IsmaelHi,
Thanks for the info. There is another authentication that I won’t be able to get past. Let’s start again.
Remove the “iavsd2019” project and create a new one. Follow the instructions in the docs starting from step 1. Let’s make sure that the project is using v3 instead of v2.// https://kriesi.at/documentation/enfold/google-map/
Create a new project here: https://console.developers.google.com/projectcreate
Best regards,
IsmaelHi,
You can modify the avia.js file but you have to make sure that you’re using the updated version.
Best regards,
IsmaelHi,
I can’t reproduce the issue on my end. The next or previous items load whenever I click the arrows. Where are you testing this? Please try to upgrade to version 4.5.
Best regards,
IsmaelHi,
Thanks for the update. I added a color section for mobile view. Let us know if that’s what you’re after.
// https://imgur.com/a/uZwHWrx
Best regards,
Ismael -
AuthorPosts