Viewing 30 results - 241 through 270 (of 1,622 total)
  • Author
    Search Results
  • #1342344

    Hi,
    Thanks for the login, originally I was under the impression that we were talking about a portfolio item, so after testing the solution above was for a portfolio item, but I see that you are using a masonry element to show posts. I couldn’t find a similar solution for this, but I did find a plugin that works Shortcodes Anywhere or Everywhere if the In Post/Page Custom Fields option is used. I first tested this with a simple date shortcode, but using a button shortcode breaks the masonry element.
    If you notice the whole masonry block, excerpt and image, is already linked to the item, so you can not add a button to the excerpt that includes a link.
    I assume that you understand that this, so I came up with a different solution for you, I replaced your shortcode in the manual excerpt with this:
    [buttoncode]
    then I added this to your child theme functions.php

    function custom_masonry_excerpt_button_script() { ?>
        <script>
    var masonryExcerpt = document.querySelector(".av-masonry-entry-content.entry-content");
    masonryExcerpt.innerHTML = masonryExcerpt.innerHTML.replace("[buttoncode]", '<span class="avia-button avia-icon_select-yes-left-icon avia-size-small avia-position-center avia-color-theme-color"><span class="avia_button_icon avia_button_icon_left" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></span><span class="avia_iconbox_title">Click me</span></span>');
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_masonry_excerpt_button_script');

    and now the button shows.
    You can adjust the button html in the script above to suit, if you want help with this please post the button you want to use on a test page so I can copy the html and adjust the script for you.

    Best regards,
    Mike

    #1341884

    Well, I have found a way to add the Custom Field to the Content part using get_post_meta & the name of my Custom Field (‘speaker’). If it can help anyone, or if anyone wants to give me input to improve it, please do :

    /*  Filter to add Custom Fields to Masonry Post list */
    add_filter("avf_masonry_entry_content", function($content, $entry, $config) {
        $speakers = get_post_meta( $entry["ID"], 'speaker', true);
        $separator = ' ';
        $output = '';
       if ( ! empty( $speakers ) ) {
            $output = '<b><em>' . esc_html( $speakers ) . '</b></em><br>';
            $content = $output . $content;
        } 
        return $content;
    }, 10, 3); 
    #1341873
    Twohandsbrands
    Participant

    Hi,

    I recently updated Enfold to it’s latest version, and I’m trying to add custom fields values to the Captions part of the Masonry element. As of now it can display Title and Excerpt, and I would like to be able to display other custom fields I have created (in that case the text value that I called ‘speaker’), and also control styling for it.

    It looks that since the last major update, it is managed in class-avia-masonry.php, and that there are also some filters that can be used.

    I would really appreciate if someone could help me figure out the best, sustainable way, to use custom fields with Masonry.

    Thanks,
    Mat

    #1340857

    Hi,

    Thank you for the following up.

    We have checked the comment form on a fresh installation without a plugin and we didn’t find the same hidden textare below the actual comment field, so the textarea in your installation must have been added by a custom script or a third party plugin. Did you install a spam protection plugin?

    If you want to adjust the form fields in the comment form manually, you can use the comment_form_defaults filter.

    // https://developer.wordpress.org/reference/hooks/comment_form_defaults/

    Best regards,
    Ismael

    #1339655
    danielrad78
    Participant

    Hi,

    i use this PRO-Plugin: https://www.studiowombat.com/plugin/advanced-product-fields-for-woocommerce/

    It works fine, but there is a bug in combeenation with ENFOLD. When i want to change the main-product Image if the customers select an option in a dropdown), then the product-image do not change.

    But when i do not set a product-main-image, then it works. But when i do not set a main-produkt-image, also no produkt-gallery is shown.

    I can send you my Licence-Key and the URL to the Live-Syste,m if you need it.

    Thanks for help ;-)

    #1339353
    markus-fischer
    Participant

    Hello Team,

    I would like to create a table like this on my Contact page:
    Screen Shot 2022 02 07 at 1.32.02 PM

    Which element is best suited for this, what do you recommend?

    FYI: I don’t want to use icons for the social media images on the left – I have own 36x36px custom images that I would like to use.

    Thank you in advance!

    #1338913

    Hi,

    That’s a shame.

    I had to disable the post css files because I use the Layout builder to create templates that I use for Custom Post Types with Custom Fields.

    Best regards,

    #1338637

    Hey spooniverse,

    Thank you for the inquiry.

    Yes, you can adjust the thumbnail size in the archive pages by editing the archive.php file directly or by using the avf_post_slider_args filter.

    add_filter("avf_post_slider_args", function($args, $context) {
            if( $content == "archive" ) {
    	   $args["preview_mode"] = "custom";
               $args["image_size"] = "full";
            }
    	return $args;
    }, 10, 1);
    

    These are the available thumbnail sizes.

    square
    featured
    featured_large
    portfolio
    portfolio_small
    gallery
    magazine
    masonry
    entry_without_sidebar
    entry_with_sidebar
    shop_thumbnail
    shop_catalog
    shop_single 
    shop_gallery_thumbnail
    

    Adding an image to category template is possible but it will require significant amount of modifications. If you want to check how it has been implemented for the product categories, look for the avia_woo_edit_category_fields and the avia_woo_add_category_fields functions in the enfold/config-woocommerce/admin-options.php file. The functions are attached to thse hooks.

    // https://developer.wordpress.org/reference/hooks/taxonomy_edit_form_fields/
    // https://developer.wordpress.org/reference/hooks/taxonomy_add_form_fields/

    The actual banner function is in the enfold/config-woocommerce/config.php file.

    Best regards,
    Ismael

    #1338040

    hi Ismael,

    1) I don’t get an error in the Enfold > Theme Options > Theme Update panel but an error in the Envato Market plugin because more more fields are checked in the https://build.envato.com/create-token besides the

    • View and search Envato sites
    • Download the user’s purchased items
    • List purchases the user has made

    But on a other website where I use the Enfold it is the other way around, I created a token with ONLY

    • View and search Envato sites
    • Download the user’s purchased items
    • List purchases the user has made

    Here the Envato Market plugin gives no error message, but the Enfold > Theme Options > Theme Update panel gives an error upon validation.
    See reply: #1337804

    But please forget this,because this is not why I opened this ticket.

    The real issue is the masonry BUG I started this thread for, which has not been solved!
    The theme is upgraded to the latest version.
    The two masonry.php are put in place, so the load more button is working again.

    But the BUG is still there!

    When I use the code you sent me,

    add_filter("avf_masonry_entry_content", function($content, $entry, $atts) {
        return $entry->post_excerpt;
    }, 10, 3);

    it does not resolve the bug, it merely removes the excerpt everywhere.
    But excerpts must be possible as well, that’s why we put the setting in the masonry on “Show tittle and element”.
    When the owner puts in a text in the excerpts section of a portfolio item, it should appear, and it does.
    But the BUG appears when the owner removes a text from the excerpts section of a portfolio item, see my former posts for screencaptures.
    Please check the screencapture in the private content. The green checked items are correct excerpts, the red crosses are items that had previously added excerpts, that were removed later, but still persist in the masonry with extra breaks and content.

    I am sorry to say, I am using the Enfold themes for quite some customers and quite some years now, but the way this is handled is not very satisfactory.

    thanks,
    Karin

    • This reply was modified 3 years, 11 months ago by karinorage.
    #1335826

    Hi,

    Do you have a fix for the non-home pages so the size stays the same ?

    Have you tried applying custom ID or class names to the sliders? You can use those attributes to directly modify an element with css or a custom script. If you haven’t done this before, please edit one of the sliders, go to the Advanced > Developer Settings toggle, then input your preferred custom ID or class name in the provided fields.

    For example, in the Custom CSS Class field, use “av-transitionintl-slider”, then save the element. We can now use this class name to directly adjust that particular element or slider. In the script that @mike provided above, look for this line..

    $('#top.home #full_slider_1 .avia-slideshow-inner').each(function(){  
    

    and replace it with..

    $('#top .av-transitionintl-slider .avia-slideshow-inner').each(function(){  
    

    You may need to adjust the css as well.

    .av-transitionintl-slider .avia-slide-wrap,
    .av-transitionintl-slider .av_slideshow_full .av-slideshow-caption {
        max-height: 480px;
    }
    

    You might have noticed that we replaced “.home #full_slider_1” with the new css class name or selector. If you want to adjust the other sliders or apply the same modification to them, just apply the same class name to them “av-transitionintl-slider”, or use a different one and another css for it.

    Best regards,
    Ismael

    #1335334

    Hi,

    @Gabri: Glad to know it worked out. Please feel free to open a different thread if you need anything else.


    @cryptotradingbg-com
    : The first snippet, which registers the custom shortcode, should go in the functions.php file and yes, the second one or the actual shortcode will go to the privacy policy fields or messages.

    Best regards,
    Ismael

    #1334573
    leahmessina
    Participant

    We use the plugin “forminator” for nearly every website. All of our 20+ enfold websites struggle to accept forminator styling. Essentially, the Enfold theme overrides all the customization we try to make, and most of the time we are forced to use CSS to override theme conflicts.

    On the link in the private area, the “email” field has a border around it that should not be there, and I cannot get it removed. I tried to force it with CSS, but I could not get it right. The other two fields above and below it do not have this border so I am not sure why it is showing on only one field.

    Are there other users experiencing troubles with forminator? Is there a way to address these theme conflicts? We enjoy the simplicity of enfold theme, but the management of all of the plugin/theme conflicts with forminator make me want to switch these sites to divi or another theme with fewer conflicts.

    CJGVD
    Participant

    Dear Kriesi-Team,

    my client wants to build an accommodation directory / listing website, similar to Expedia or Booking (but of course smaller). It is important that (1) owners of accommodations can list their accommodation (by registering/signing in) and (2) visitors can search for accommodations based on a basic search (e.g. place & date) or an advanced search (with many categories & filters). Of course there are off-the-shelf WP themes that offer something like that (e.g. MyListing, ListingPro, Findeo).

    However, I would love to use Enfold due to my very good experiences with your theme and your support. Could you please tell me, whether your theme is suitable for creating such a hotel platform & booking site? What plugins might be needed and are these compatible with Enfold? (e.g. Hotel Booking Lite (MotoPress), eForm, Gravity Forms, Plugins for Custom Fields, Listing Types, Calendars, Bookings, etc.)

    Thanks for your reply!

    Best regards, Cornelie

    #1333699

    Hi,

    Thank you for the update.

    You can apply a custom css class name or ID to the section or element. You can then use those attributes to adjust the style of a specific element. The custom class and ID fields are located in the elements’ Advanced > Developer Settings tab.

    Please check this documentation for more info.

    // https://kriesi.at/documentation/enfold/add-custom-css/

    Best regards,
    Ismael

    #1332968

    Hi,

    Thank you for the clarification.

    Try to use this filter in the functions.php file to exclude the contact form message or form fields’ value from the autorespond message.

    // directly return the autoresponder text
    add_filter("avf_form_custom_autoresponder", function($auto, $message, $cp, $post) {
        return $cp->form_params['autoresponder'];
    }, 10, 4);
    

    Best regards,
    Ismael

    Hey janeshanahan,
    Thank you for the link to your site, I see that you are adding html characters to some title fields, we don’t recommend this, I’m sure you noticed the red warning text:
    2021-12-11_015.jpg
    I made the adjustment for you, but please read this for future reference
    I recommend using css in your Quick CSS to make changes like this by adding a custom class to the elements you wish to adjust if you are interested we can show you how.

    Best regards,
    Mike

    #1331625

    In reply to: Footer Höhe

    Hi,
    Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #top #footer> .container > .flex_column > .widget,
    #top #footer form,
    #top #footer fieldset {
    	margin: 0;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1331611

    Hi,
    Glad to hear that the new file helped.
    When you say headlines within the content are rendering as Helvetica instead of the theme styling I assume you mean like the h3 heading Cascade Circuit Cup Eligible
    2021-12-05_004.jpg
    this is set by TEC and we would respect TEC content styling:
    2021-12-05_005.jpg
    so we or you should not want the theme style to override any TEC style within the main body within the template-event-page div.
    In the past there have been issues with UL & LI, because TEC likes the inside position:
    2021-12-05_006.jpg
    and we typically are outside:
    2021-12-05_007.jpg
    so this could be considered more about site consistently & user preference.
    I know that we have recently adjusted for the new TEC 5.x event pages and made some styling changes but I don’t see anything new being worked on, if there was something specific for all users I would be happy to post it to the Dev Team, but we would have to be careful. For example, I installed a clean version on Enfold with TEC & the Church Demo on my localhost, then I exported your events to it, and found that the consistently of your event content without the customizations, scripts, custom fields, and shortcodes seem correct. Please see the screenshots in the Private Content area.
    So I will be happy to help you style your page and override any TEC styles, but I can’t recommend a change to the Dev Team to override any TEC styles within the TEC content, I hope that makes sense.
    As this thread is getting quite long I would also recommend starting new threads for individual TEC customizations so they will be easier for other users to find.

    Best regards,
    Mike

    #1331238
    tremblayly
    Participant

    Hi
    I’ve worked with WooCommerce support and have identified an issue when the Enfold Child theme is activated while creating a new variable product – the quantify field is not displaying on the single product page.

    Here’s a snapshot of the last email exchange I had with WooCommerce on this issue:
    I have created a staging area where I disabled all plugins expect WooCommerce core and activated the Twenty Twenty One default WP theme. I still see the issue.

    I was able to successfully access your site’s admin area with these credentials. While there, I noticed that all products experiencing this issue appear to be either sold in specific measurements (e.g. by the inch, by the centimeter). Other products that are sold individually, like Roll-up Inverted Tube Bead in Polished Sterling Silver 6x9mm, have quantity fields on both the staging site and the live site.

    It appears as though the issue is only affecting variable products. However, when I created the Woo Test variable product on the staging site, the quantity field is available:

    https://d.pr/i/TaE0Qt
    Full Size: https://d.pr/i/TaE0Qt

    This likely means that the issue arises upon product creation. At this point, it’s hard to determine if the issue originates with a plugin or theme conflict. To get to the bottom of what might be causing the issue, I would recommend that you:

    Enable the Enfold Child theme on your staging site first.
    Create a new variable product.
    See if the quantity field is still visible on the new product.

    If the quantity field is not visible, the issue happens when variable products are created while the theme is active. …….
    I recommend starting with the theme because inspecting products without the quantity field show that the field is hidden:

    https://d.pr/i/Qs2UgL
    Full Size: https://d.pr/i/Qs2UgL

    The most likely place for this type of customization to occur is with the theme, but it is possible that there is a plugin that is hiding this field instead.”

    You can use the same login as woosupport if you wish:

    #1331114

    Hi,

    Do they have the same meta keys? Using the code above should prevent the theme from creating the _av_css_styles custom fields. You might also want to check entries generated by your plugins including contact forms and analytics.

    And if you want to completely remove the existing post css files entries from the database, you can run this query.

    DELETE FROM wp_postmeta WHERE meta_key = '_av_css_styles';
    

    Please make sure to create a site backup or a restore point before doing so.

    Best regards,
    Ismael

    #1330973

    Hey onizet,

    Thank you for the inquiry.

    The new custom fields are for the posts css file creation for custom element styles, which is supposed to improve the site speed. But if you are having trouble with the database and you believe that these custom fields are causing it, then you can disable it using this filter in the functions.php.

    /**
     * Filter to skip css file generation.
     * You can add logic to skip for certain pages/posts only.
     * 
     * @since 4.8.6.1
     * @param boolean $create
     * @return boolean					true | false or anything else to skip generation of css file
     */
    function custom_avf_post_css_create_file( $create )
    {
    	return false;
    }
    
    add_filter( 'avf_post_css_create_file', 'custom_avf_post_css_create_file', 10, 1 );
    

    Unfortunately, you cannot disable the other custom fields that we discussed in the previous thread because those fields contain the builder elements or shortcodes.

    Best regards,
    Ismael

    #1328098

    Hi christiemade,

    Thanks for giving us admin access.
    I have installed this plugin: Health Check & Troubleshooting and created a test page.
    It seems the issue is in the child theme, you can verify this by enabling troubleshooting (in plugins via Health Check and Troubleshooting) then switch the theme to Enfold (parent theme), then open the test page and you would not see any issue. Here’s what I’ve tried:
    1. Use Enfold theme and all plugins are disabled (result: works properly)
    2. Use Enfold theme and all plugins are enabled (result: works properly)
    3. Use Child theme and only Advanced Custom Fields is enabled (result: has that jump to the top issue)

    Best regards,
    Nikko

    #1327290

    Hi,
    thanks but there is no if(isset($avia_config[‘use_child_theme_functions_only’])) return; in the functions.php file.

    Se all the code below:
    <?php

    /**
    * Add your own functions here. You can also copy some of the theme functions into this file.
    * WordPress will use those functions instead of the original functions then.
    *
    * Remove the comments before or around the sample functions and code to use theme.
    * @link http://kriesi.at/documentation/enfold/using-a-child-theme/
    */

    /**
    * Add filter to add or replace Enfold ALB shortcodes with new folder contents
    *
    * Note that the shortcodes must be in the same format as those in
    * enfold/config-templatebuilder/avia-shortcodes
    *
    * @link http://kriesi.at/documentation/enfold/add-new-or-replace-advanced-layout-builder-elements-from-child-theme/
    */

    add_filter(‘avia_load_shortcodes’, ‘avia_include_shortcode_template’, 15, 1);
    function avia_include_shortcode_template($paths)
    {
    $template_url = get_stylesheet_directory();
    array_unshift($paths, $template_url.’/shortcodes/’);

    return $paths;
    }

    /**
    * Turn on Custom CSS Class field for all Avia Layout Builder elements
    * @link http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
    */
    //add_theme_support(‘avia_template_builder_custom_css’);

    /**
    * Remove the Import dummy data button from theme options
    * @link http://kriesi.at/documentation/enfold/remove-the-import-dummy-data-button/
    */
    //add_theme_support(‘avia_disable_dummy_import’);

    /**
    * Enable Avia Layout Builder Debug
    * @link http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/
    */
    add_action(‘avia_builder_mode’, “builder_set_debug”);
    function builder_set_debug() {
    return “debug”;
    }

    add_filter( ‘avf_google_heading_font’, ‘avia_add_heading_font’);
    function avia_add_heading_font($fonts)
    {
    $fonts[‘Prata’] = ‘Prata:400’;
    $fonts[‘Francois One’] = ‘Francois One:400’;
    $fonts[‘Open Sans’] = ‘Open Sans:300,400,600,700’;
    $fonts[‘Alegreya’] = ‘Alegreya:400,700’;
    return $fonts;
    }

    add_filter( ‘avf_google_content_font’, ‘avia_add_content_font’);
    function avia_add_content_font($fonts)
    {
    $fonts[‘Prata’] = ‘Prata:400’;
    $fonts[‘Francois One’] = ‘Francois One:400’;
    $fonts[‘Open Sans’] = ‘Open Sans:300,400,600,700’;
    $fonts[‘Alegreya’] = ‘Alegreya:400,700’;
    return $fonts;
    }

    add_filter(“kriesi_backlink”,”new_nolink”);
    function new_nolink(){
    $kriesi_at_backlink = “”;
    return $kriesi_at_backlink;
    }

    add_filter( ‘avf_modify_thumb_size’, ‘enfold_customization_modify_thumb_size’, 10, 1 );
    function enfold_customization_modify_thumb_size( $size ) {
    $size[‘masonry’] = array(‘width’=>1500, ‘height’=>250);
    $size[‘entry_without_sidebar’] = array(‘width’=>1210, ‘height’=>1210 , ‘crop’ => false);
    return $size;
    }

    function av_title_sc( ){
    $output = “<h1 class=’page-title’>”. get_the_title() .”</h1>”;
    return $output;
    }
    add_shortcode( ‘av_page_title’, ‘av_title_sc’ );

    function av_author_sc(){
    $current_user = wp_get_current_user();
    $output = “<h6 class=’ra-author’>AN ARTICLE BY ” . $current_user->user_firstname . “</h6>”;
    return $output;
    }
    add_shortcode(‘av_author’,’av_author_sc’);

    function av_excerpt( ){
    $excerpt = get_the_excerpt( $post );
    $output = “<span class=’related-excerpt’>”.$excerpt.”</span>”;
    return $output;
    }
    add_shortcode( ‘av_post_exc’, ‘av_excerpt’ );

    function avia_post_created(){
    $output = “<span class=’post-date’>”. get_the_date( $format, $post_id ) .”</span>”;
    return $output;
    }
    add_shortcode( ‘avia_created’, ‘avia_post_created’ );

    add_action( ‘after_setup_theme’, ‘ava_enfold_builder_layout_mod’ );
    function ava_enfold_builder_layout_mod(){
    add_filter(‘avf_builder_elements’, ‘avf_enfold_builder_layout_settings_mod’);
    }

    function avf_enfold_builder_layout_settings_mod($elements)
    {
    $counter = 0;
    foreach($elements as $element)
    {

    // Layout > Header visibility and transparency
    if($element[‘id’] == ‘header_transparency’) {
    /**
    *
    * Available Options
    * No transparency =
    * Transparent Header = ‘header_transparent’
    * Transparent Header with border = ‘header_transparent header_with_border’
    * Transparent & Glassy Header = ‘header_transparent header_glassy ‘
    * Header is invisible and appears once the users scrolls down = ‘header_transparent header_scrolldown ‘
    * Hide Header on this page = ‘header_transparent header_hidden ‘
    * MOD: Set the Layout > Header visibility and transparency settings to “Hide both”Header is invisible and appears once the users scrolls down”
    *
    **/
    $elements[$counter][‘std’] = ‘header_transparent’;
    }

    $counter++;
    }
    return $elements;
    }

    function av_single_fo(){
    ?>
    <script>
    var header = jQuery(“.single-post #main .avia-section .content”);
    jQuery(window).scroll(function() {
    var scroll = jQuery(window).scrollTop();

    if (scroll >= 250) {
    header.addClass(“single-header”);
    } else {
    header.removeClass(“single-header”);
    }
    });
    </script>
    <?php
    }
    add_action(‘wp_footer’, ‘av_single_fo’);

    add_filter( ‘style_loader_src’, ‘t5_remove_version’ );
    add_filter( ‘script_loader_src’, ‘t5_remove_version’ );

    function t5_remove_version( $url )
    {
    return remove_query_arg( ‘ver’, $url );
    }

    function raboff_custom_checkbox(){
    ?>
    <script>

    jQuery(window).load(function(){
    jQuery(‘h2.avia-caption-title’).after(‘<p class=”close-caption”> </p>’);
    jQuery( “.close-caption”).click(function() {
    var closeTheCap = jQuery(this).closest(“.slideshow_align_caption”);
    closeTheCap.hide(“slow”);
    });
    });

    jQuery(window).scroll(function(){
    var numberNotChecked = jQuery(‘fieldset.alacarte-form input:checkbox:not(“:checked”)’).length;
    console.log(numberNotChecked, “Hello, world!”);

    if (numberNotChecked >= 16) {
    jQuery(“.one-day”).addClass(“p-highlight”);
    }
    else {
    jQuery(“.one-day”).removeClass(“p-highlight”);
    }

    if (numberNotChecked <= 15 && numberNotChecked >= 8 ) {
    jQuery(“.two-day”).addClass(“p-highlight”);
    }
    else {
    jQuery(“.two-day”).removeClass(“p-highlight”);
    }

    if (numberNotChecked <= 7 ) {
    jQuery(“.three-day”).addClass(“p-highlight”);
    }
    else {
    jQuery(“.three-day”).removeClass(“p-highlight”);
    }

    });
    </script>
    <?php
    }
    add_action(‘wp_footer’, ‘raboff_custom_checkbox’);

    function avia_add_custom_social_icon($icons) {
    $icons[‘Turning Torso’] = ‘turning_torso’;
    return $icons;
    }
    add_filter(‘avf_social_icons_options’,’avia_add_custom_social_icon’, 10, 1);

    #1326421

    In reply to: Problems with Forms

    Hi Chiefi,

    How do I copy a form and use it in a different layout element? I saved it as a template and don’t know how to find the templates and paste them somewhere else.
    If you are using Templates then you can just click on Templates and a dropdown with the names of the templates should appear, just click it and it should add to the content, you’ll just need to drag it to the location where you want to place it.
    You can also use Custom Elements for it.

    How do I keep the contact form from stretching the entire width of the webpage. References made to “edit form element” but all the search results and YouTube videos skip over exactly how this is done or show a solution that worked in the previous version 3-4 years ago.
    Forms usually cover the whole width of the container, you can try to use columns like 1/2 to limit it’s size.
    Or you can add this CSS code in Enfold > General Styling, to limit the maximum width (just change the value):

    #top .avia_ajax_form fieldset {
        max-width: 500px;
    }

    The name of the form is not being used. Instead, the name of the webpage is being used for the name of the form? Also, how do you format the name of the form?
    Form Title seems to show properly as it should, is this the field you are referring?

    Best regards,
    Nikko

    #1326348

    Hello Rikard,
    I just tested it with Chrome, Safari and Firefox. It is all the same: custom fields instead of drop down menu…

    What can I do now? Just sth. more: I had used the fix for the svg logo but it didn’t work. The svg file is not visible in the frontend. Perhaps I did sth. wrong?

    By the way: I transferred the wordpress installation on a different webspace via Duplicator. All the same: no drop down…

    Best regards,
    Kati

    • This reply was modified 4 years, 2 months ago by KittenAdmin.
    #1326133

    Hi,

    Thanks for the update. I can’t see the Layout sidebar missing on my end, please see screenshot in private. Could you try using a different browser to see if that helps please? The custom fields in your screenshot is not added by the theme.

    Best regards,
    Rikard

    #1325788

    Hi,

    Thanks for the update. Changing the header transparency works fine on my end, I’ve changed for you on your start page, please review your site. I’m not sure what custom fields you are referring to?

    Best regards,
    Rikard

    #1325694

    Hello Ismael,
    I want to change the header transparency – and this doesn’t work.

    The startpage has transparency, but I want to have it without – not possible. That is the problem…

    No matter on what page I try, I can’t change the header transparency any more.

    What is the matter and why are there custom fields instead of a drop down menu?

    Greetings, Kati

    #1325653

    Hi,

    Thank you for the update.

    You have to add the filter in the functions.php file via the Appearance > Editor panel or directly through FTP. Please note that the $new_post variable is an array which contains the value of the form fields. You can use those values to create a completely different Message template if necessary, but that may require a bit of customization, which is beyond the scope of support.

    Related threads:

    // https://kriesi.at/support/topic/autoresponder-function-php-code-not-working
    // https://kriesi.at/support/topic/contact-form-elements-via-php-functions

    Best regards,
    Ismael

    #1324920

    In reply to: Code Block usage

    Hi Ismael,
    Thank you for your prompt response. I added in the functions.php file the avf_alb_exec_sc_only filter to allow execution of shortcodes. I used both syntaxes but with no success. Content returned by my custom function is displaying as text.
    Any additional changes on CodeBlock element attributes (Code Wrapper Element, Action with codeblock, Escape HTML Code, Disable Shortcode Processing, Deactivate schema.org markup, etc) ?
    Regards
    Jorge

    My custom function :

    // Using the avf_alb_exec_sc_only filter to enable execution of shortcodes that are no longer within the
    add_filter( ‘avf_alb_exec_sc_only’, ‘__return_true’ );

    function DisplayProfileFields() {
    return (”
    [av_heading heading='Profile' tag='h2' style='blockquote modern-quote' subheading_active='' show_icon='' icon='ue800' font='entypo-fontello' size='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' subheading_size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' icon_size='' av-medium-font-size-1='' av-small-font-size-1='' av-mini-font-size-1='' color='' custom_font='' subheading_color='' seperator_color='' icon_color='' margin='' margin_sync='true' padding='10' icon_padding='10' headline_padding='' headline_padding_sync='true' link='' link_target='' id='' custom_class='' template_class='' av_uid='av-kpazwmnd' sc_version='1.0' admin_preview_bg=''][/av_heading]
    “);
    return;
    }
    add_shortcode(‘liliDisplayProfileFields’, ‘DisplayProfileFields’);

    • This reply was modified 4 years, 3 months ago by liliwow.
Viewing 30 results - 241 through 270 (of 1,622 total)