Forum Replies Created
-
AuthorPosts
-
Hi,
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,
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 ); // secondsBest 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,
Ismael -
AuthorPosts
