Forum Replies Created
-
AuthorPosts
-
December 3, 2024 at 8:38 am in reply to: Unable to activate ALB (using custom fields) while importing posts #1472770
Hi,
Thank you for following up.
The _avia_builder_shortcode_tree is created using the build_shortcode_tree function, which can be found in the enfold\config-templatebuilder\avia-template-builder\php\class-shortcode-helper.php file. It retrieves the shortcodes, parses the content, and builds a structured tree of shortcodes, including their attributes and content. Unfortunately, the internal workings of the template builder are not documented.
The _av_alb_posts_elements_state is an array containing all the shortcodes or elements in the page.
Best regards,
IsmaelHi!
I want exactly that, but using the featured image instead of having to insert it in the content and hide the featured one, which I am doing now.
You will need to make the modifications we suggested above. This will move the featured image below the title.
Best regards,
IsmaelDecember 3, 2024 at 8:20 am in reply to: LayerSlider: the import file seems to be invalid or corrupt #1472768Hey Uli,
Thank you for the inquiry.
We cannot reproduce the issue on our local installation, so it is likely a plugin conflict or an issue with a custom script. Please temporarily disable all plugins and try exporting one of the slides. Let us know the result.
Best regards,
IsmaelHi,
We’ll keep the thread open. Let us know if you need more assistance.
Best regards,
IsmaelHi,
Thank you for the update.
We added Guenni’s code in the Quick CSS field and updated the image URL. Please make sure to purge the cache before checking the page.
Best regards,
IsmaelHi,
This text pops up when filling in the fields.
Suspicious activity has been detected. If you believe this to be an error, please contact (Email address hidden if logged out) .
Please disable it temporarily.
We adjusted the script a bit and added the updated_checkout event. Please try it again:
function av_custom_script_tax_exempt() { ?> <script> window.addEventListener('DOMContentLoaded', function() { (function($) { $(function() { function updateTaxLabel() { $('.cart_totals .tax-total th, #order_review .tax-total th').each(function() { var text = $(this).text(); if (text.includes('Tax')) { $(this).html(text.replace('Tax', 'Tax (<a href="https://example.com/tax-exempt-info" target="_blank">Tax Exempt?</a>)')); } }); } setTimeout(updateTaxLabel, 2000); $(document.body).on('updated_checkout', function() { updateTaxLabel(); }); }); })(jQuery); }); </script> <?php } add_action('wp_footer', 'av_custom_script_tax_exempt', 99);
Best regards,
IsmaelHi,
Thank you for the update.
You can use this css code to adjust the position of the header widget:
#top #header .widget_ywraq_mini_list_quote { position: absolute; right: 20px; }
Best regards,
IsmaelDecember 3, 2024 at 7:50 am in reply to: Stuck on Default Editor and Avia Layout Builder not appearing #1472763Hi,
Thank you for the update.
We removed this code from the functions.php file:
add_filter('use_block_editor_for_post', '__return_false', 10);
Then adjusted the Enfold > Theme Options > Select Your Editor settings to activate the classic editor.
Best regards,
IsmaelDecember 3, 2024 at 7:31 am in reply to: Hide Post Date for Specific Category in Blog Posts #1472762Hi,
UPDATE: Looks like Günter has already read this thread. Please wait for his response
Best regards,
IsmaelDecember 3, 2024 at 7:28 am in reply to: Hide Post Date for Specific Category in Blog Posts #1472760Hi,
Thank you for the modification @Guenni007. We’ll forward the info to our channel.
These checks seem to be incorrect:
if($post_type = 'post'){
if($post_type = 'portfolio'){
Best regards,
IsmaelDecember 3, 2024 at 7:23 am in reply to: How to display icon in button which is in image slide in fullwidth easy slider #1472759Hey JoStudioDeRijp,
Thank you for the inquiry.
There is no option for this by default but you can try this css code to insert an icon in the slider button.
#top .av-slideshow-caption.av-jqqjz4n5-fe3605ba570a187c18a9e721a6eef45d__0 .avia-slideshow-button:before { display: block; width: 10px; height: 10px; position: absolute; left: 12px; top: 15px; content: ''; font-family: 'entypo-fontello'; } #top .av-slideshow-caption.av-jqqjz4n5-fe3605ba570a187c18a9e721a6eef45d__0 .avia-slideshow-button { padding-left: 30px; }
Best regards,
IsmaelHey ibuzaev,
Thank you for the inquiry.
You can upload Google Fonts using the Custom Font Manager and load them locally, but we’re not sure if they will be compatible with your CDN. If this is not possible, you may need to rely on third-party plugins to load the fonts. Please check the link below for more info.
// https://kriesi.at/documentation/enfold/typography/#how-to-upload-custom-fonts
Best regards,
IsmaelHey ashleyknow,
Thank you for the inquiry.
Did you enable Privacy and Cookies > Cookie Handling > Enable cookie consent messages? Please note that when the cookie consent form is enabled, all external services, including reCAPTCHA, will be disabled by default until the user gives their consent. You can change this behavior by adjusting the Default Cookie Behaviour to the first or second option.
Best regards,
IsmaelHey ibuzaev,
Thank you for the inquiry.
There is no option for this by default but you can use this css code to hide the pagination.
#top .pagination .current, #top .pagination a, #top .fullsize .template-blog .pagination a { display: none; }
Best regards,
IsmaelHi,
Thank you for the update.
The slider images were fully visible above the fold when we checked. Did you figure it out?
Best regards,
IsmaelHi,
If you need to move the featured image below the post title, edit the includes > loop-index.php file and replace its contents with the following code: https://pastebin.com/CABttvQL
Best regards,
IsmaelHi,
Glad to know the suggestions helped. The tambourine dancing probably made the biggest difference! Let us know if you have any more questions about the theme.
Have a nice day.
Best regards,
IsmaelDecember 2, 2024 at 7:33 am in reply to: Unable to activate ALB (using custom fields) while importing posts #1472685Hi,
Do you have some information about the expected values of each of these meta fields ?
In your database, you can examine one of the pages built with the Advanced Layout Builder and search for the associated fields to understand the content each field holds. You can use the following query:
SELECT meta_key, meta_value FROM wp_postmeta WHERE post_id = <your_post_id> AND meta_key IN ( '_aviaLayoutBuilder_active', '_aviaLayoutBuilderCleanData', '_avia_builder_shortcode_tree', '_alb_shortcode_status_content', '_alb_shortcode_status_clean_data', '_alb_shortcode_status_preview', '_avia_sc_parser_state', '_av_alb_posts_elements_state', '_av_el_mgr_version' );
Replace
with the ID of the page. Make sure to create a database backup before proceeding. Best regards,
IsmaelHey Maggie,
Thank you for the inquiry.
Try to use this css code to replace the icon with a custom image:
.avia-icon-list-container.av-m3t1foql-7e88455370655a2aff70020b470afc59 .iconlist-char:after { content: ''; display: block; width: 50px; height: 50px; background: url('IMAGE URL HERE') no-repeat center center; background-size: contain; } .avia-icon-list-container.av-m3t1foql-7e88455370655a2aff70020b470afc59 .iconlist-char:before { display: none; }
Make sure to adjust the image URL.
Best regards,
IsmaelHey ibuzaev,
Thank you for the inquiry.
Looks like the post css file is missing. Please try to temporarily disable the Enfold > Performance > File Compression settings and purge the cache. Let us know of the result.
Best regards,
IsmaelDecember 2, 2024 at 5:58 am in reply to: Portfolio grid displays thumbnails incorrectly if they are odd #1472681Hey icarogioiosi,
Thank you for the inquiry.
Where can we check the issue? Please provide the live URL in the private field so we can review the grid. In the meantime, make sure that the items in the grid are an even number if you are unsatisfied with the current layout.
Best regards,
IsmaelHey icarogioiosi,
Thank you for the inquiry.
Have you tried adjusting the selector to “.av-portfolio-grid-sorting-container”? Let us know once the site is live so that we can inspect the element directly.
Best regards,
IsmaelDecember 2, 2024 at 5:43 am in reply to: Hide Post Date for Specific Category in Blog Posts #1472679Hey agenturwendt,
Thank you for the inquiry.
I tried targeting .category-kundenstimmen time.slide-meta-time.updated with CSS, but it didn’t work.
Try to use this css code instead:
.page-id-167 .slide-meta-time.updated { display: none; }
Best regards,
IsmaelHey amyncuih,
Thank you for the inquiry.
Yes, you can add both embed codes in the Google Analytics field or use hooks such as wp_head if you want to separate the Google Tag embed code.
Example:
function ava_add_google_tag_code() { ?> <!-- Google Tag Embed Code --> <script async src="https://www.googletagmanager.com/gtag/js?id=YOUR_TAG_ID"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'YOUR_TAG_ID'); </script> <?php } add_action('wp_head', 'ava_add_google_tag_code');
More info: https://developer.wordpress.org/reference/hooks/wp_head/
Best regards,
IsmaelHi,
Thank you for the inquiry.
As mentioned by @Guenni007 above, the preview image should be clickable by default. Could you provide a link to the page with the post slider element?
Best regards,
IsmaelHi,
Thank you for the update.
We may need to access the site using an admin and editor account. Please provide the info in the private field and make sure that the theme is updated to version 6.0.6.
Best regards,
IsmaelHi,
Thank you for the inquiry.
We added this css code to reduce the default padding of the main container and the color section below the image.
#top #main .avia-section .template-page { padding-top: 0; } .template-page.content.av-content-full.alpha.units.av-enable-shadow { padding-top: 0; }
Please note that this modification will be applied globally and will impact all color sections.
Best regards,
IsmaelNovember 29, 2024 at 5:07 am in reply to: Unable to find the White Background setting for Header #1472559Hey bambinou1980,
Thank you for the inquiry.
You can change this in the Enfold > General Styling > Logo Area tab — adjust the value of the Alternate Background Color option.
Best regards,
IsmaelHi,
Thank you for the info.
Unfortunately, we won’t be able to provide an appropriate solution without inspecting the elements. You may need to adjust the z-index of the parent container where the datepicker is located. Even if the z-index is set to 10,000, it won’t have the desired effect if the element is within a container that has a lower z-index relative to its siblings.
Best regards,
Ismael -
AuthorPosts