Forum Replies Created
-
AuthorPosts
-
Hey getfletch,
Thank you for the inquiry.
Unfortunately, you cannot modify the archive pages using the advance layout builder (ALB). You have to modify the template files directly (archive.php, taxonomy-custom-post-type-name.php etc). Another solution is to create a page using the ALB, then redirect the archive or category page to it.
Best regards,
IsmaelHey Knutnik,
Thank you for the inquiry.
This is not possible but we can give you the shortcodes for that particular page. The shortcode can be added in the debug mode field of the advance layout builder. You have to enable debug mode first.
// https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode
After enabling it, just paste this shortcode in the debug mode field.
// https://pastebin.com/L1qSqjMJ
Best regards,
IsmaelHi,
Unfortunately, this will require significant amount of modification that is not included in the scope of support. You can hire a freelance developer or contact our partner Codeable for this kind of customization.
Best regards,
IsmaelJuly 5, 2021 at 11:23 am in reply to: Either fade out or scroll more quickly when clicking on a 100% high element #1308755Hey webWahine,
Thank you for the inquiry.
We cannot find the menu item with the anchor. Would you mind providing a screenshot of the menu item or the section so that we could understand the issue better?
Best regards,
IsmaelHey Tobias777G,
Thank you for the inquiry.
There is actually a widget called Table of Contents (TOC) that maybe you could use in one of your pages. It automatically detects heading elements in the page and create a navigation or a list of sections accordingly. To add it in a page, just use the Widget Area element and select the widget area where the TOC widget is located.
Best regards,
IsmaelHi,
1.) Would you mind providing a screenshot of the issue? It works well on our end when we switch the menu breakpoint, or when we se the Menu Items for mobile settings to the second option.
2.) You can adjust the top margin value to adjust it. You can also move it further to the left or right by applying a left or right margin.
Best regards,
IsmaelHi,
Great! Glad to know that the is fixed. Please do not hesitate to open another should you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
No problem. Glad to know that it is fixed. Please feel free to open another thread if you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
We modified the script a bit and disabled the ava_custom_script_fix function. The tab section is now resizing when loading more posts or when it contains an iframe with the dynamic height.
Best regards,
IsmaelHey davs74,
Thank you for the inquiry.
What do you mean? Maybe it’s the cache or the file compression. Please toggle or temporarily disable the Enfold > Performance > File Compression settings and purge the cache after making the changes.
Best regards,
IsmaelJuly 5, 2021 at 9:18 am in reply to: How to display Custom Post Type in Portfolio or Masonry grid #1308728Hi,
The snippet that we recommended previously will only enable the advance settings for the post type. If you want to include the custom post type in the masonry or blog selection, you have to create a custom taxonomy for the custom post type and attach the terms or categories to your posts. You can then select the custom taxonomy to display the posts associated with it.
You can also add this code in the functions.php file to make the public post types selectable but we do not recommend it.
add_theme_support("add_avia_builder_post_type_option");Best regards,
IsmaelHi,
Thank you for the info.
Try to use this css code to remove the button and the space above the coupon field.
#coupon-anchor .ui-dialog-titlebar-close, #coupon-anchor #ui-id-2 { display: none; }Best regards,
IsmaelHi,
Did you install any plugin for custom css code? Try to searching in the Enfold > General Styling > Quick CSS field or in the child theme’s style.css file. You can also check in the Appearance > Customize panel.
Best regards,
IsmaelHi,
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,
Ismael -
AuthorPosts
