Viewing 30 results - 1 through 30 (of 1,588 total)
  • Author
    Search Results
  • Hi the site is under development on a local folder. I just uploaded a copy of it in a subdirectory. Below the url and the access.

    Check the home page: the span.post-meta-infos doesn’t contain the custom fields as set in my functions.php

    Thanks

    elenapoliti
    Participant

    I have created a CPT with ACF and relative custom fields. Then I show the posts in specific pages with the avia element Blog Post. When choosing the style “Simple List”, I would like to show a couple of psot custom fields instead of Author and Date.

    I am not sure which filter I should use in functions.php to do it, or if I should modify a copy of some enfold file in my child theme. I tried to modify the loop-index.php but no changes are reflected in the front-end

    Thanks

    #1480193
    comkapi
    Participant

    Hello,
    the MCE icon tool (in the shape of a magic wand) to insert a shortcode in text element no longer appears in my custom layout.
    i use it to display ACF custom fields data, like in documentation.

    With console i see a JS error in admin, I searched and it comes from the fact that the shortcode use the field label of ACF but it’s the field name which is given now, example for a company name :
    previously with field name : {acf_field_6745a0c4478f3:Nom_entreprise}
    today with field label instead : {acf_field_6745a0c4478f3:Nom de l’entreprise}
    And in French the apostrophe in the label value of the field brakes some Avia js array and prevents the display of the MCE icon tool …

    i fixed it by removing apostrophe in the ACF label field
    This appears to be due to a recent update, but is it an Enfold update or an ACF update? i don’t know

    Maybe it can help others

    Regards

    #1480022

    Hi,

    You could add a meta_query parameter to the filter above.

    function custom_sort_by_event_date($query, $params) {
        $query['meta_key'] = 'event_date'; 
        $query['orderby'] = 'meta_value';
        $query['meta_type'] = 'DATE';
        $query['order'] = 'ASC';
    
        $query['meta_query'] = array(
            array(
                'key'     => 'activate',  
                'value'   => '1',       
                'compare' => '='
            )
        );
    
        return $query;
    }
    add_filter('avia_post_grid_query', 'custom_sort_by_event_date', 10, 2);
    

    https://www.advancedcustomfields.com/resources/checkbox/

    Best regards,
    Ismael

    #1480014

    Hi,

    As mentioned above, you will need to create a custom solution for these fields, such as a custom shortcode. Please check the link below for more info.

    https://codex.wordpress.org/Shortcode_API

    To display custom post types in the Blog Posts element, make sure that custom taxonomies are attached to them. Then, set Content > Select Entries > Content To Display to Display entries from a custom taxonomy.

    For this type of customization, you can contact our partner, Codeable.

    https://kriesi.at/contact/customization

    Best regards,
    Ismael

    #1479831

    Hi,

    Sorry for the late response. According to the documentation, File and OEmbed fields are not yet supported. You may need to implement a custom solution to extract the values of these fields for your custom layout. Here is the list of supported ACF fields.

    https://kriesi.at/documentation/enfold/custom-layout-and-dynamic-content/#acf-advanced-custom-fields-support

    Best regards,
    Ismael

    #1479828

    Hey dondela,

    Thank you for the inquiry.

    This is not available by default, but you might be able to apply an ACF Date field to the Portfolio post type and sort the Portfolio Grid based on the field’s value.

    https://www.advancedcustomfields.com/resources/date-picker/

    Add this code in the functions.php file:

    function custom_sort_by_event_date($query, $params) {
        $query['meta_key'] = 'event_date'; 
        $query['orderby'] = 'meta_value';
        $query['meta_type'] = 'DATE';
        $query['order'] = 'ASC';
    
        return $query;
    }
    add_filter('avia_post_grid_query', 'custom_sort_by_event_date', 10, 2);
    

    Make sure that the Date Picker field name is event_date.

    Best regards,
    Ismael

    #1479559
    Christy
    Participant

    I am rebuilding a site in Enfold that was originally built in a custom theme. Our client wanted a more user friendly theme for editing their site.

    They use ACF extensively. I’ve gone through all the tutorials with ACF and enfold documentation, and I know how to build a custom template. Works great! except….

    We have several fields that are File fields, and one oEmbed field. Both of those types convert to wp_fields in dynamic content, and as a result they do not show up. I noticed that in its current state, those fields are not currently compatible with Enfold dynamic content.

    What is the best way to make these field types work.

    I’m also dealing with how to show the post types once they are created. but first let’s deal with the field types. I’ll give you both the original site to look at, as well as our site. I’ll put it in private content.

    I would set it up differently, using the traditional post, but we are transferring all of their ACF post types and previous creations. which need to be available in the Enfold version of the site. plus post creation using the ACF is great for them knowing how to do it already, as opposed to me doing it differently in the future.

    mexi33330
    Participant

    Hallo :-)
    wie kann ich die Meldung:

    Welcome to Enfold 7.0 introducing a nice feature:

    SVG Icons – Check our documentation to get deeper insight and how to use them

    Bugfixes – Check our changelog for all changes
    Check our documentation to get deeper insight

    Did you already explore:

    Custom Layout And Dynamic Content: Use custom fields and create editable layouts using custom fields
    Custom Elements: Create your own styled editable ALB elements for a consistent layout throughout your site
    Follow Upcoming Fixes for the next release

    You miss the classic editor:

    You can switch to this editor any time you like without using a plugin in our theme options: Theme Options Tab -> Select Your Editor

    löschen – einen Demissbutton gibt es nicht – wenn ich oben aufs X klicke erscheint die Meldung immer wieder. Vielleicht weiß jemand Rat?

    #1478076

    Hi,

    This is possible, but it will require modifications beyond the scope of support. Please note that pages/posts using the ALB also require these custom fields:

    _aviaLayoutBuilder_active
    _aviaLayoutBuilderCleanData
    _avia_builder_shortcode_tree
    _avia_sc_parser_state
    _av_alb_posts_elements_state
    _av_el_mgr_version

    These entries will not be generated without manually switching to the Advance Layout Builder.

    Best regards,
    Ismael

    #1475527

    Hey daimonart,

    Thank you for the inquiry.

    There is no option for this by default, but you can try saving the element as a Custom Element Template (CET) with all the options and fields locked so they won’t be editable. Please check this documentation for more info about CET: https://kriesi.at/documentation/enfold/custom-element-templates/

    Best regards,
    Ismael

    #1475229
    xela
    Participant

    Hi there!
    Your YT-tutorial “Custom Template and Dynamic Content with Enfold 6 & ACF” (https://www.youtube.com/watch?v=D1sMhQJYamw) explains how to add custom fields to the single page of a custom post type (in the example: Book) using ACF.
    Is it also possible to layout the archive page of this custom post type in the same way? In the tutorial video you can only see the image and the title of all books in the overview. How can I add more ACF fields there?

    Thanks!

    #1474909

    Hi,

    If you want to add a custom text with random sales numbers, just edit the value of the sales_text_last_month custom field and then adjust the filter a bit.

    add_action('woocommerce_single_product_summary', 'av_show_product_sales', 6);
    
    function av_show_product_sales() {
        global $product;
    
        if (!($product instanceof WC_Product)) {
            return;
        }
    
        $custom_message = get_post_meta($product->get_id(), '_sales_text_last_month', true);
    
        if (!empty($custom_message)) {
            printf('<p class="product-sales-count">%s</p>', esc_html($custom_message));
        }
    }

    Again, you can refer to this documentation on how to add or update custom fields: https://woocommerce.com/document/custom-product-fields/

    Best regards,
    Ismael

    #1474794

    I have a problem with my site on the checkout page it is displaying 2 different card fields.

    Once in normal text field formats then 2nd in the official stripe box that loads.

    I only should have the 2nd field and not the additional fields below the address. It is confusing customers understandably.

    I have tried disabling pugins and tested with another theme and the problem still persists. I can send login details if you need them.

    #1474753

    Hi,

    We tried adding the custom field, but the site is not loading on our end anymore. Are you working on it? To learn more about how to add custom fields, please check this link.

    // https://woocommerce.com/document/custom-product-fields/

    Best regards,
    Ismael

    #1474397

    In reply to: SKU field

    Hi Ismael ,

    I followed the step of added custom product fields https://woocommerce.com/document/custom-product-fields/ and display it with https://developer.woocommerce.com/docs/displaying-custom-fields-in-your-theme-or-site/?_gl=1*1hrrkjn*_ga*NjI0MTU1ODk1LjE3MzU1NTE0OTg.*_ga_98K30SHWB2*MTczNTU1MTQ5Ny4xLjEuMTczNTU1MTUyMC4wLjAuMA..

    Nothing appear on my web page ?

    I used this product to make a test

    Could you check it please ?

    #1474389

    In reply to: SKU field

    Hi,

    Thank you for the info.

    Would you mind providing a link to the plugin page? You may need to contact the plugin author for additional assistance on displaying the EAN info on the frontend. For more details on adding custom fields to products, please refer to this documentation: https://woocommerce.com/document/custom-product-fields/

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    We updated the filter to include the post meta “header_transparency” with the value “header_transparent header_hidden”.

    function ava_update_custom_fields_for_post_type() {
        $post_type = 'your_post_type';
    
        $posts = get_posts(array(
            'post_type'      => $post_type,
            'posts_per_page' => -1,
            'post_status'    => 'any',
            'fields'         => 'ids',
        ));
    
        if (!empty($posts)) {
            foreach ($posts as $post_id) {
                update_post_meta($post_id, '_aviaLayoutBuilder_active', 'active');
                update_post_meta($post_id, '_aviaLayoutBuilderCleanData', '[av_custom_layout link=\'alb_custom_layout,653\' av_uid=\'av-m3u7m8lu\' sc_version=\'1.0\']');
                update_post_meta($post_id, '_avia_builder_shortcode_tree', 'a:1:{i:0;a:3:{s:3:"tag";s:16:"av_custom_layout";s:7:"content";a:0:{}s:5:"index";i:0;}}');
                update_post_meta($post_id, '_avia_sc_parser_state', 'disabled');
                update_post_meta($post_id, '_av_alb_posts_elements_state', 'a:1:{s:16:"av_custom_layout";b:1;}');
                update_post_meta($post_id, '_av_el_mgr_version', '1.0');
                update_post_meta($post_id, 'header_transparency', 'header_transparent header_hidden');
            }
        }
    }
    
    add_action('init', 'ava_update_custom_fields_for_post_type');
    

    Please make sure to create a backup of your site before proceeding.

    Best regards,
    Ismael

    #1473781

    or try instead:

    #top.home #av-layout-grid-1 fieldset {
      display: flex;
      flex-flow: row wrap;
      justify-content: center;
      gap: 5px;
    }
    
    #top.home #av-layout-grid-1 fieldset p {
      width: unset;
    }
    
    #top.home #av-layout-grid-1 fieldset p:first-of-type {
      width: 50%
    }
    
    #top.home #av-layout-grid-1 fieldset p:first-of-type input {
      border: 1px solid #be363c;
      border-radius: 26px 0 0 26px
    }
    
    #top.home #av-layout-grid-1 fieldset p .button {
      border-radius: 0 26px 26px 0;
    }

    and maybe you style that black box a bit too : change background-color and add some css :

    .custom-black-box {
      background-color: rgba(0,0,0,0.3);
      -webkit-backdrop-filter: blur(8px);
      backdrop-filter: blur(8px);
    }
    #1473746

    Hey Ismael

    Excellent thanks and I’ve combined the two functions for simplicity and posting here if anyone else wants a function that adds custom fields to grid posts (ALB) and single posts (Non-ALB).

    // Helper function to generate the custom event details HTML
    function generate_custom_event_details($post_id) {
        $event_date = get_post_meta($post_id, 'event_date', true);
        $event_time = get_post_meta($post_id, 'event_time', true);
        $event_location = get_post_meta($post_id, 'event_location', true);
    
        $custom_output = '<div class="custom-event-details">';
        if ($event_date) {
            $custom_output .= '<p class="event-date"><strong>Event Date:</strong> ' . esc_html($event_date) . '</p>';
        }
        if ($event_time) {
            $custom_output .= '<p class="event-time"><strong>Event Time:</strong> ' . esc_html($event_time) . '</p>';
        }
        if ($event_location) {
            $custom_output .= '<p class="event-location"><strong>Event Location:</strong> ' . esc_html($event_location) . '</p>';
        }
        $custom_output .= '</div>';
    
        return $custom_output;
    }
    
    // Filter for avf_post_slider_entry_excerpt
    add_filter('avf_post_slider_entry_excerpt', function ($excerpt, $prepare_excerpt, $permalink, $entry, $context) {
        $custom_output = generate_custom_event_details($entry->ID);
    
        // Check if the "Read More" link exists in the excerpt
        $read_more_position = strpos($excerpt, '<a');
        if ($read_more_position !== false) {
            // Insert the custom output before the "Read More" link
            $before_read_more = substr($excerpt, 0, $read_more_position);
            $read_more_and_after = substr($excerpt, $read_more_position);
            return $before_read_more . $custom_output . $read_more_and_after;
        }
    
        // Append custom output if no "Read More" link is found
        return $excerpt . $custom_output;
    }, 10, 5);
    
    // Filter for the_content
    add_filter('the_content', function ($content) {
        if (is_singular('post')) {
            $custom_output = generate_custom_event_details(get_the_ID());
            $content .= $custom_output;
        }
    
        return $content;
    }, 10);
    #1473566
    raslade
    Participant

    Hi there

    I’ve opened a new thread based on my last https://kriesi.at/support/topic/secure-custom-field-after-excerpt/#post-1473534 as I’ve just remembered I need the function to also add the custom fields to the single posts. Is it a quick fix?

    Thanks
    Richard

    #1473545
    rvga
    Participant

    Hi guys,
    I fight trying to set up a phone number link to an ALB animated number with no success.
    Can’t find the right syntax to set either in the “manual link setting” or in the underneath “custom field link” of the Advanced Tab fields.
    Anyone to give me a help on that one please ?
    P.S
    I’ve set the domain and its certificate just yesterday, maybe propagation is not over yet, but the link is a safe one.

    • This topic was modified 3 months, 3 weeks ago by rvga. Reason: Giving more details
    #1473479

    Hey Ismael, that’s great thanks it worked. Although the fields appeared after the Read More button so I have adjusted the code. Not sure if it’s the most tidy way of doing it though.

    add_filter('avf_post_slider_entry_excerpt', function ($excerpt, $prepare_excerpt, $permalink, $entry, $context) {
        $event_date = get_post_meta($entry->ID, 'event_date', true);
        $event_time = get_post_meta($entry->ID, 'event_time', true);
        $event_location = get_post_meta($entry->ID, 'event_location', true);
    
        // Prepare custom output
        $custom_output = '<div class="custom-event-details">';
        if ($event_date) {
            $custom_output .= '<p class="event-date"><strong>Event Date:</strong> ' . esc_html($event_date) . '</p>';
        }
        if ($event_time) {
            $custom_output .= '<p class="event-time"><strong>Event Time:</strong> ' . esc_html($event_time) . '</p>';
        }
        if ($event_location) {
            $custom_output .= '<p class="event-location"><strong>Event Location:</strong> ' . esc_html($event_location) . '</p>';
        }
        $custom_output .= '</div>';
    
        // Check if the "Read More" link exists in the excerpt
        $read_more_position = strpos($excerpt, '<a');
        if ($read_more_position !== false) {
            // Insert the custom output before the "Read More" link
            $before_read_more = substr($excerpt, 0, $read_more_position);
            $read_more_and_after = substr($excerpt, $read_more_position);
            return $before_read_more . $custom_output . $read_more_and_after;
        }
    
        // Append custom output if no "Read More" link is found
        return $excerpt . $custom_output;
    }, 10, 5);
    #1473254
    raslade
    Participant

    Hi there

    I’ve been trying to add custom fields so that they show below the excerpt on both the blog grid and single posts using the following code. I’ve added it to the child theme function but I can’t get it to work. Any pointers would be great, thanks.

    add_filter('the_excerpt', function ($excerpt) {
        // Check if we're in a post and want custom fields added
        if (is_single() || is_home() || is_archive()) { 
            // Fetch custom fields
            $event_date = get_post_meta(get_the_ID(), 'event_date', true);
            $event_time = get_post_meta(get_the_ID(), 'event_time', true);
            $event_location = get_post_meta(get_the_ID(), 'event_location', true);
    
            // Create custom field output with individual classes
            $custom_output = '<div class="custom-event-details">';
            if ($event_date) {
                $custom_output .= '<p class="event-date"><strong>Event Date:</strong> ' . esc_html($event_date) . '</p>';
            }
            if ($event_time) {
                $custom_output .= '<p class="event-time"><strong>Event Time:</strong> ' . esc_html($event_time) . '</p>';
            }
            if ($event_location) {
                $custom_output .= '<p class="event-location"><strong>Event Location:</strong> ' . esc_html($event_location) . '</p>';
            }
            $custom_output .= '</div>';
    
            // Append custom fields to the excerpt
            return $excerpt . $custom_output;
        }
    
        // Return the original excerpt for other types of content
        return $excerpt;
    });
    #1473251

    Hi Ismael,
    The case I’m dealing with is fairly straightforward and is likely to recur quite often among Enfold users.

    Typical example:

    1. I’m using a Custom Layout to display a company directory via a dedicated CPT.
    2. For each company listing I can fill in 2 custom fields for their links to the company’s social networks (let’s say LinkedIn and Facebook, to keep it classic).
    3. How do I handle the display of data depending on whether or not companies have links to provide for each of the three custom fields?

    If you have any recommendations on how to handle this situation, I’d love to hear from you.

    For the moment, I’ve created duplicates of my Custom Layout to correspond to the 4 possible scenarios (no link, only link 1, only link 2 or both links). With only a hundred or so entries, I was able to manually set the appropriate Custom Layout, but this would be very complicated for several thousand entries. I’ll need a conditional display solution.

    Best regards,n

    Hey henningtillmann,

    Thank you for the inquiry.

    You can try this hook in the functions.php file, but make sure to create a site backup or restore point before doing so:

    function ava_update_custom_fields_for_post_type() {
        $post_type = 'your_post_type';
    
        $posts = get_posts(array(
            'post_type' => $post_type,
            'posts_per_page' => -1,
            'post_status' => 'any',
            'fields' => 'ids',
        ));
    
        if (!empty($posts)) {
            foreach ($posts as $post_id) {
                update_post_meta($post_id, '_aviaLayoutBuilder_active', 'active');
                update_post_meta($post_id, '_aviaLayoutBuilderCleanData', '[av_custom_layout link=\'alb_custom_layout,653\' av_uid=\'av-m3u7m8lu\' sc_version=\'1.0\']');
                update_post_meta($post_id, '_avia_builder_shortcode_tree', 'a:1:{i:0;a:3:{s:3:"tag";s:16:"av_custom_layout";s:7:"content";a:0:{}s:5:"index";i:0;}}');
                update_post_meta($post_id, '_avia_sc_parser_state', 'disabled');
                update_post_meta($post_id, '_av_alb_posts_elements_state', 'a:1:{s:16:"av_custom_layout";b:1;}');
                update_post_meta($post_id, '_av_el_mgr_version', '1.0');
            }
        }
    }
    
    add_action('init', 'ava_update_custom_fields_for_post_type');
    

    Just refresh the dashboard once, then remove the hook immediately. This will create the necessary custom fields for each item in the custom post type and enable the ALB automatically. Make sure to update the value 653 with the actual ID of the custom layout:

    update_post_meta($post_id, '_aviaLayoutBuilderCleanData', '[av_custom_layout link=\'alb_custom_layout,653\' av_uid=\'av-m3u7m8lu\' sc_version=\'1.0\']');
    

    And place the name or slug of the post type here:

    $post_type = 'your_post_type';
    

    Best regards,
    Ismael

    henningtillmann
    Participant

    Hi there,

    I am using Secure Custom Fields and I have set up a template using the ALB.
    Now I need to import lots of posts using “WP All Import”.

    Everything works great, except that I have to manually open each imported post, click “Advanced Layout Editor” and select the custom layout. I have tried to use a shortcode in post content during import, which does not work.

    1. Can I automatically set the custom layout to all imported posts? In general I find it a bit cumbersome to always use the ALB on each custom post to select the template (and nothing else).

    alternatively:
    2. Is there a way to ignore the post content and always set the template to a specific template for all posts belonging to a certain custom post type?

    Thank you in advance!

    Best,
    Henning

    #1473027
    agencelarsen
    Participant

    Hello everyone,
    I’m really happy with this “Custom Layout” feature that I use with ACF to make CPTs. :-)

    I have over a hundred entries (from the same CPT) that use the same Custom Layout except that one of the ACF custom fields is sometimes empty (and filled in most of the time).

    As this is a link that I’m displaying in a button, I’d like to be able to display the button only when the field is filled in, otherwise it creates a bad user experience.

    I couldn’t find in the documentation for Custom Layouts with ACF how to make the display conditional (when the field isn’t empty). Is there any way of doing this?

    Best regards

    Hi Ismael,
    I confirm that the fields have the same values for all the CPTs using the same Custom Layout. For more details here are the found values for each custom fields provided :

    • _aviaLayoutBuilder_active : active
    • _aviaLayoutBuilderCleanData : [av_custom_layout link=\'alb_custom_layout,653\' av_uid=\'av-m3u7m8lu\' sc_version=\'1.0\']
    • _avia_builder_shortcode_tree : a:1:{i:0;a:3:{s:3:\”tag\”;s:16:\”av_custom_layout\”;s:7:\”content\”;a:0:{}s:5:\”index\”;i:0;}}
    • _alb_shortcode_status_content : 0 occurence of this meta_key found
    • _alb_shortcode_status_clean_data : 0 occurence of this meta_key found
    • _alb_shortcode_status_preview : 0 occurence of this meta_key found
    • _avia_sc_parser_state : disabled
    • _av_alb_posts_elements_state : a:1:{s:16:\”av_custom_layout\”;b:1;}
    • _av_el_mgr_version : 1.0

    I’m now able to mass import all entries in a row ! this is marvellous ! Thank you Ismael ! You can mark this thread as solved.

    I have a secondary question about my mass data import project but I’m opening another thread about this.

    Thanks !!!

    Hello Ismael,
    If I understand correctly your explanations concerning these custom fields, I should have the same values on all my CPTs since the very same Custom Layout template is used.

    I’ll compare a few posts in my database to confirm this hypothesis and, if that’s the case, I’ll be able to leverage the power of Enfold and its new features like never before.

    I plan to do this tomorrow, and I’ll post my findings in this conversation to help anyone else who might be interested.

    Best regards,

Viewing 30 results - 1 through 30 (of 1,588 total)