Forum Replies Created
-
AuthorPosts
-
Hi,
Have you tried removing the SEO title field value of the blog page? The value of this field overrides the default title. We tried to change it but the login token above is already expired.
Best regards,
IsmaelHi,
Thank you for the update.
Have you tried using the filter above to adjust the scroll position? We could add the wp_is_mobile function so that it will only affect mobile screens including iPads.
function avf_header_setting_filter_mod($header) { if(!wp_is_mobile()) return; $header['header_scroll_offset'] = $header['header_scroll_offset'] + 48; return $header; } add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 9999, 1);
Best regards,
IsmaelHi,
I want to be able to add the fx bottom border to my fullwidth sub menus,
That is actually what the code or script in the previous thread does. It adds the current-menu-item class name to the active menu so that you can add an indicator to it such as a bottom border.
Best regards,
IsmaelHi,
@tekniskakari: The autoplay_stopper attribute is for the sliders’ auto rotation. It has nothing to do with videos. If you need further help, please feel free to open another thread.Best regards,
IsmaelHi,
Where did you add the css code? We cannot find it in the Quick CSS field and the Appearance > Editor is not accessible, so we cannot access the style.css file. The transition is still set to “all” when we checked page.
Best regards,
IsmaelHi,
Did you apply the av-custom-column-order class name to the color section containing the columns? Please provide a direct link to the page with the columns so that we could check it.
Best regards,
IsmaelHi,
Thank you for the info.
We modified the snippet in the functions.php file a bit. The description in the tag page is now replaced with h1 tag.
Best regards,
IsmaelHi,
You can add more condition above such as checking if breakfast and lunch are :checked and if it is show breakfast-lunch. If all of the checkbox are checked, toggle breakfast-lunch-dinner. You could add the conditions in this block.
if(checked) { $(option).toggle(); } else { $(option).css("display", "none"); }
Best regards,
IsmaelHi,
You can add the code in the functions.php file via the Appearance > Editor panel, or via FTP. We posted the final code below. If you need more help, please feel free to open another thread.
function av_open_inline_popup(){ ?> <script type="text/javascript"> (function($) { $(window).load(function(){ $('.open-popup-link').addClass('no-scroll'); $('.open-popup-link').magnificPopup({ type:'inline', midClick: true, callbacks: { beforeOpen: function () { jQuery('body').css("overflow-y", "hidden"); }, close: function() { jQuery('body').css("overflow-y", "auto"); }, }, }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'av_open_inline_popup');
Best regards,
IsmaelHi,
You have to edit the page and in the Advance Layout Builder, you should see the columns containing the icon boxes. (see private field)Looks like the elements or shortcodes were added manually in a template. Did you modify the header.php file or add any scripts in the functions.php file?
Best regards,
IsmaelHi,
Unfortunately, this customization is beyond the scope of support, so we will not be able to help you. Have you tried enabling the post navigation instead? You can find the Single Post Navigation option in the Enfold > Single Post Options. The navigation is using the get_adjacent_post function out of the box.
Best regards,
IsmaelHi,
Thank you for the clarification.
You can replace is_single with the is_tax conditional function to add the meta tags on portfolio category pages instead.
// https://developer.wordpress.org/reference/functions/is_tax/
Best regards,
IsmaelHi,
Thank you for the info.
We edited the forum shortcodes in the text block but it did not change anything, then we found this css code.
.bbp-topic-form { display: none !important; }
Did you add it anywhere? This css code hides the forum form.
Best regards,
IsmaelHi,
Thank you for the info.
We just noticed that the site contains old versions of the theme, 4.1.2 and 4.5.6. You have to remove the older versions and upload the latest one, version 4.8.3. This should fix the block editor issue.
Best regards,
IsmaelHi,
The stylesheets are compressed when we checked the site. Please temporarily disable the file compression before adding the css code and make sure to purge the cache afterwards.
Best regards,
IsmaelHi,
We are actually referring to the PHP Zip Archive extension, not the theme files. You should ask your hosting provider if this extension is enabled, or check it in the WordPress > Dashboard > LayerSlider > Options and click “System Status” and look under “Server Settings” as described in the following thread.
// https://kriesi.at/support/topic/adobe-fonts-in-enfold/#post-1305076
Best regards,
IsmaelHi,
We tried to modify the avf_add_page_number_to_title function but the title is not changing. Can we deactivate the plugins temporarily?
And you should also remove the static title in the SEO title field of the blog page and use variables instead.
// https://www.wearewibble.com/yoast-seo-how-to-change-your-wordpress-meta-title-description/
Best regards,
IsmaelHi,
Glad to know that it is working correctly.
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,
We cannot find the button when we checked the site, and the coupon container is still in its default place. Did you add the code from the article?
Best regards,
IsmaelHi,
To unregister the script with the handle avia_google_maps_api_script, you can use the wp_deregister_script and the wp_dequeue_script functions. To register it back, create a copy of the avia_google_maps_api.js in your child theme, use the same handle with the wp_register_script function and the new file path.
Example:
function ava_admin_enqueue_scripts() { wp_deregister_script( 'avia_google_maps_api_script' ); wp_dequeue_script( 'avia_google_maps_api_script' ); wp_register_script( 'avia_google_maps_api_script' , PATH_TO_CHILD_THEME_SCRIPT, array( 'jquery' ), "4.8.3", true ); } add_action( 'admin_enqueue_scripts', 'ava_admin_enqueue_scripts', 10 );
Make sure to adjust the path (PATH_TO_CHILD_THEME_SCRIPT) of the file.
Best regards,
IsmaelJuly 2, 2021 at 3:53 am in reply to: CSS to force mobile devices to display sub-sub-menus to the right. #1308433Hey BMMtOliveLC,
Thank you for the inquiry.
We may have to inspect the site first in order to understand the issue properly. Please provide a link to the site with the sub menu issue — place the link in the private field. A screenshot will also help.
Best regards,
IsmaelHey whdsolutions,
Thank you for the inquiry.
You can use this css code to change the transparent background of the overlay to color gradient.
#top .av-caption-style-overlay .av-masonry-item-with-image .av-inner-masonry-content { background: rgb(2,0,36); background: linear-gradient(180deg, rgba(2,0,36,1) 0%, rgba(255,255,255,0) 100%); }
You can visit this site or tool to adjust the color.
Best regards,
IsmaelHey keydeelang,
Thank you for the inquiry.
We cannot find the section or the buttons anywhere in the site. Would you mind providing a direct link to the page where we can see this section?
Best regards,
IsmaelHey MikeTandySwag,
Thank you for the inquiry.
The site asked for authentication when we tried to visit it. Please provide the login account in the private field. For the meantime, you can try this css code in the Quick CSS field to adjust the width of the preview image container.
.portfolio-preview-image { width: 30%; }
Best regards,
IsmaelJuly 1, 2021 at 11:54 am in reply to: How to display Custom Post Type in Portfolio or Masonry grid #1308301Hey Ikyo,
Thank you for the inquiry.
Instead of the previous code, try to use the filter that we provided in the following thread.
// https://kriesi.at/support/topic/custom-post-type-not-displaying-correctly/#post-1299723
Make sure to define the name of the post type where you need to enable the advance layout builder.
Best regards,
IsmaelHey agentur2c,
Thank you for the inquiry.
The site probably contains an older version of the theme. Please check the theme in the Appearance > Themes panel and make sure that the current version is 4.8.3. If not, you may have to download the latest version of the theme from your Themeforest account and update it manually via FTP.
The following links should help.
// https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
// https://kriesi.at/archives/the-complete-guide-to-updating-enfoldBest regards,
IsmaelHey John,
Thank you for the inquiry.
Try to apply the hover state in the avia-button-wrap container instead of the button. Or replace the css code with the following.
/* Background on hover */ .avia-button-wrap:hover .avia-button { background-color: #257fc7 !important; }
Best regards,
IsmaelHey Paolo,
Thank you for the inquiry.
Do they provide an embed script or an iframe code? You should be able to insert the embed script in a text or code block element in the advance layout builder.
Best regards,
IsmaelHey Baobufan,
Thank you for the inquiry.
The solution that we provided in the following thread should help.
// https://kriesi.at/support/topic/set-no-index-to-portfolio-items/#post-1203180
Best regards,
IsmaelHey Charlotte,
Thank you for the inquiry.
Those are Icon Box elements inside 1/4 column elements. You can modify them in the Advance Layout Builder. You can also check the demo.
// https://kriesi.at/themes/enfold-2017/elements/icon-box/
Best regards,
Ismael -
AuthorPosts