Viewing 30 results - 2,521 through 2,550 (of 243,848 total)
  • Author
    Search Results
  • #1480746

    Hey sitadi,

    Thank you for the inquiry.

    The site contains an older version of the theme. Please update to version 7.1 via FTP, then enter the name or slug “communes” in Enfold > Layout Builder > Activate Your Custom Post Types For ALB. This will enable the Advanced Layout Builder for the custom post type Communes.

    https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
    https://kriesi.at/documentation/enfold/intro-to-layout-builder/#alb-for-any-post-type

    Best regards,
    Ismael

    #1480743

    Thank you! #2 is resolved.

    For #1, I did change the color in the Enfold > Theme Options > Transparency Options > Transparency Menu Color area and that did change the color for transparency. I have also changed the color in Advanced Styling for the default menu, but no changes are showing up. That was my main issue. You can see I have a Main Menu element in Advanced Styling with both the color (#314050) and size indicated, but no changes on the front end. Remember too my note: “Also under Advanced Styling, just like the menu font issue, changes to H2 don’t apply on the frontend.”

    Thanks!

    Dana2225
    Participant

    Hi,

    I already have a published WordPress website using an Enfold child theme within an Enfold theme. (https://abridgetoachievement.com/) We would like to change the look of our website to follow the Enfold Medical demo. How can I import the Enfold Medical template into my Enfold child theme? I want to be able to edit the draft pages to then publish them on my current website?

    Thanks,
    Dana

    #1480732

    Hey olivierlawrence403,

    Please try the following in Quick CSS under Enfold->General Styling:

    #footer .widget {
      margin: 0;
    }

    Best regards,
    Rikard

    #1480720
    benaiah1
    Participant

    I’ve been building WP sites for years with Enfold. However, now that I’ve just installed the same for a company I work for, the style sheet seems to be missing. Normally this would be under ‘Appearance’. Now there is nothing.

    When I manually try to access wp-admin/theme-editor.php, I get the message:
    ‘Sorry, you are not allowed to access this page.’

    How come?

    No, I was wrong, duplicating the page does not solve the error problem.

    I also don’t think it has anything to do with the new Enfold 7.x version, because on the other sites I use Enfold on, I don’t encounter the same problem.
    So it seems to be a problem specific to the site in question.

    Please could you please help me identify the point(s) (tag) causing the error?

    Best regards,
    Oriano

    orianos
    Participant

    After the latest Enfold 7 and 7.1 update, many of the pages on the site (see below url) give me this error:

    >’It seems you are currently adding some HTML markup or other special characters. Once all HTML tags are closed the preview will be available again. If this message persists please check your input for special characters and try to remove them.

    Up to version 6.x I am sure this error did not exist.
    Since the pages on which I get this error are so many… it is impossible for me to identify where the error code is.
    Do you have any suggestions for finding the solution.

    Best regards
    Oriano

    #1480710

    Hi Mike,

    A small update on this. What I want to achieve is not to change the URL structure, but rather that each paginated is pointing towards itself as a canonical page. Then, the Yoast plug-in also advises to add rel=next and rel=prev tags to the pagination buttons.

    You can read more about that here: https://yoast.com/help/is-the-plugin-compatible-with-paginated-content/
    And here is a Github link to the implementation: https://gist.github.com/amboutwe/66c583d2ef4015a8a244ee3e0e8cd1a0

    There is also another ticket that links to this: https://kriesi.at/support/topic/alternate-page-with-correct-canonical-tag/.

    I tried, based on the documentation, to alter the Yoast plug-in to take the avia-pagination into account when adding it’s logic, both canonical wise and with the prev/next rel’s.

    Could you guide me in the right direction with this:

    <?php
    /**
     * Fix Yoast SEO pagination compatibility with Enfold theme using avia-element-paging.
     *
     * This will:
     * - Override the canonical URL to point to the current paginated URL
     * - Add correct rel="next" and rel="prev" links for Yoast SEO
     * - Handle first page navigation properly
     * - Work with multiple Enfold paginated pages
     */
    
    // Store max pages in a more efficient way
    global $avia_pagination_data;
    $avia_pagination_data = [];
    
    // More efficient way to store max pages without creating duplicate queries
    add_filter('avia_blog_post_query', function($query, $params) {
        global $avia_pagination_data;
        
        // Store the page ID so we can track pagination for multiple pages
        $page_id = get_the_ID();
        if (!isset($avia_pagination_data[$page_id])) {
            $avia_pagination_data[$page_id] = [];
        }
        
        // We don't need to create a new query object here
        // Just extract the pagination data from the query args
        if (isset($query['posts_per_page']) && isset($params['items'])) {
            $posts_per_page = intval($query['posts_per_page']);
            $total_items = intval($params['items']);
            
            if ($posts_per_page > 0) {
                $max_pages = ceil($total_items / $posts_per_page);
                $avia_pagination_data[$page_id]['max_pages'] = $max_pages;
            }
        }
        
        return $query;
    }, 20, 2);
    
    /**
     * Helper function to check if we're on an Enfold paginated page
     */
    function is_enfold_paginated_page() {
        // Check if we're on a singular page that might have pagination
        if (!is_singular()) {
            return false;
        }
        
        // Check for the pagination parameter
        $has_param = isset($_GET['avia-element-paging']);
        
        // Also check if the page content contains Enfold pagination elements
        $content = get_post_field('post_content', get_the_ID());
        $has_pagination_element = (
            strpos($content, 'blog') !== false || 
            strpos($content, 'portfolio') !== false ||
            strpos($content, 'av_masonry_entries') !== false
        );
        
        return $has_param || $has_pagination_element;
    }
    
    /**
     * Get current page and max pages for the current Enfold page
     */
    function get_enfold_pagination_data() {
        global $avia_pagination_data;
        $page_id = get_the_ID();
        
        $current_page = isset($_GET['avia-element-paging']) ? intval($_GET['avia-element-paging']) : 1;
        $max_pages = isset($avia_pagination_data[$page_id]['max_pages']) ? 
                     $avia_pagination_data[$page_id]['max_pages'] : 
                     10; // Fallback value
                     
        return [
            'current' => $current_page,
            'max' => $max_pages
        ];
    }
    
    /**
     * Fix canonical URL for Enfold pagination
     */
    add_filter('wpseo_canonical', function($canonical) {
        if (!is_enfold_paginated_page()) {
            return $canonical;
        }
        
        $data = get_enfold_pagination_data();
        $current_page = $data['current'];
        
        // Only modify if we're on a paginated page
        if ($current_page > 1) {
            return add_query_arg('avia-element-paging', $current_page, get_permalink());
        }
        
        return $canonical;
    });
    
    /**
     * Fix prev link for Enfold pagination
     */
    add_filter('wpseo_prev_rel_link', function($link) {
        if (!is_enfold_paginated_page()) {
            return $link;
        }
        
        $data = get_enfold_pagination_data();
        $current_page = $data['current'];
        
        if ($current_page > 1) {
            $prev_page = $current_page - 1;
            $prev_url = ($prev_page === 1) ? 
                       get_permalink() : 
                       add_query_arg('avia-element-paging', $prev_page, get_permalink());
                       
            return '<link rel="prev" href="' . esc_url($prev_url) . '" />' . PHP_EOL;
        }
        
        return false;
    });
    
    /**
     * Fix next link for Enfold pagination
     */
    add_filter('wpseo_next_rel_link', function($link) {
        if (!is_enfold_paginated_page()) {
            return $link;
        }
        
        $data = get_enfold_pagination_data();
        $current_page = $data['current'];
        $max_pages = $data['max'];
        
        if ($current_page < $max_pages) {
            $next_page = $current_page + 1;
            $next_url = add_query_arg('avia-element-paging', $next_page, get_permalink());
            
            return '<link rel="next" href="' . esc_url($next_url) . '" />' . PHP_EOL;
        }
        
        return false;
    });
    
    /**
     * Also fix first page navigation (when no pagination parameter is present)
     */
    add_action('wp_head', function() {
        // Only run on first page (no pagination parameter)
        if (is_enfold_paginated_page() && !isset($_GET['avia-element-paging'])) {
            $data = get_enfold_pagination_data();
            $max_pages = $data['max'];
            
            // Only add next link if we have more than one page
            if ($max_pages > 1) {
                $next_url = add_query_arg('avia-element-paging', 2, get_permalink());
                echo '<link rel="next" href="' . esc_url($next_url) . '" />' . PHP_EOL;
            }
        }
    }, 999); // Run late to ensure it doesn't get overridden
    

    Would be greatly appreciated, as this would solve the GSC notifications and let the pagination target to itself.

    Kind regards,
    Joost

    #1480704

    Maybe this was a human error. The wpml-config.xml was missing from the enfold theme folder. I have put it back there. Can you try again? Or does it have nothing to do with it?

    #1480698

    Hey Tim,

    Thank you for the inquiry.

    Have you tried moving the element inside a Color Section and applying a background color? If you need the section container to be full-width, you can make this modification.

    https://kriesi.at/documentation/enfold/color-section/#color-section-with-100-content-width

    You can also target the inner av-masonry-container.

    .av-masonry-container {
        background: red;
    }

    Best regards,
    Ismael

    #1480685

    Hey imagestudios,

    Thank you for the inquiry.

    1.) Since the page has a transparent header, the main menu color must be adjusted in Enfold > Theme Options > Transparency Options > Transparency Menu Color. You can adjust the menu style for the default header in the Advanced Styling panel.

    2.) The issue is due to the br tag in the Prepended static text field. We recommended removing the br tag because this also creates line breaks on the rotating text. To fix the issue, we enabled the debug mode and manually adjusted the rotator shortcode in the debug field.

    View post on imgur.com

    Best regards,
    Ismael

    #1480683

    Hi,

    Thank you for the update.

    You can adjust the theme colors in the Enfold > General Styling panel. Open the Main Content or Alternate Content tab, then adjust the value of the Background Color field. You can also adjust the font color there.

    View post on imgur.com

    Best regards,
    Ismael

    #1480673

    In reply to: Re Captcha trouble

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    #1480657

    In reply to: Re Captcha trouble

    Hi Mike, i used the WP Forms plugin and recaptcha works well, it seems enfold native form has a conflict for some strange reasons.

    #1480644

    You are great!

    I did set it under Menus / Main Menu Enfold. Cool. So the little line appeared, Fallback in the code dissappeared.
    Waiting for the little arrow, bit evtl. it appears with more then one page in the menu.

    Thanks a huge lot!

    kacom

    Hi,
    Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    #1480639

    Ich habe auch WP Super Cache installiert, jetzt aber auch noch mal das Mergin bei CSS und JS neu generieren lassen, wie beschreiben. Auch nach dem erneuten löschen des Verlaufs auf dem iPhone leider kein Erfolg. Mit vorinstallierten Schriften von Enfold gibt es das Problem übrigens nicht …

    #1480637

    ich sehe du hast die Enfold Option des Merging bei css und js eingestellt. Hast du das mal neu generieren lassen?
    Unter Performance – ganz unten.

    Im Übrigen wird deine Seite in meinem Desktop Safari auch nicht mit der Schrift dargestellt.

    #1480633

    bitte lies den vorherigen Text von mir – den habe ich bearbeitet.
    https://enfold.webers-webdesign.de/

    PS; warum css code setzen?

    Definiere doch einfach über die Enfold Optionen unter Allgemeines Styling – Schriften deine Headings mit dem Font.
    PS: der font-family name wird dir im Übrigen im Font-Manager angezeigt:

    #1480629
    kacom
    Participant

    Hello,

    i have a multisite working on.

    Did all my design on one of the pages, exported it and imported it in the other two pages.

    First page took the menu with the little arrow quite fine, the other two are missing the arrow.

    Checked all my adjustments in the theme options, they are alle exactly the same (I think… perhaps I miss something?), so I do not find the point.

    So in the right design it says:
    <div class=”avia-menu av-main-nav-wrap”>

    the wrong says:
    <div class=”avia-menu fallback_menu av-main-nav-wrap”>

    Why does it switch to fallback?

    What did I miss, what can I change?

    I am on Enfold 7.1

    THANK YOU

    #1480625

    Hey Justice,

    Thanks for reaching out. We are not a web development/design agency, but we do develop a WordPress theme that might be suitable for your project: https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990

    Best regards,
    Rikard

    Hi Ismael, thanks for reaching out.

    Unfortunately we cannot try and solve it right now, since it’s a website that should have been launched yesterday. Due to another software developer not getting his external part up and running, I need to make some last minute changes and launch the site today; it’s too busy right now since it’s a very important debt counseling website in the southern region of our country.

    It’s fine to get things done for the time being with the ‘Clear Cache for Me’ plugin and/or editing through the css field in Enfold theme settings.

    If necessary, I’ll get back to this ticket later again.

    #1480611

    In reply to: Sticky element

    Hi,

    Thank you for the update.

    Instead of placing the search widget inside a Color Section, try inserting it directly into the header using a widget or widget area. Please refer to this documentation for more info.

    https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area

    This is the html of the search element, which can be placed inside a Text widget: https://pastebin.com/K8x7qu9g

    Best regards,
    Ismael

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hey Jackie,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #av-custom-submenu-1 br {
    	display: none;
    }

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

    Best regards,
    Mike

    #1480601

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    #1480596

    Topic: Re Captcha trouble

    in forum Enfold
    hankboomer
    Participant

    Dear all, i read few problems about recaptach back in 2021, i suddenly have the same issue, can’t make it work. Is there a way to force recaptach working with our enfold form ? any idea ?

    #1480592

    Hi,

    Thanks for letting us know. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    #1480589
    envis
    Participant

    I am using the WP Booking System plugin together with the Enfold theme. WP Booking System does not support WPML, but it allows me to create the booking form in 3 languages. I need to insert a slightly different shortcode in the editor (lang=en, lang=de etc.) per language.

    [wpbs id="1" language="nl" title="no" legend="yes" legend_position="side" display="1" year="0" month="0" language="auto" start="1" dropdown="yes" jump="no" history="1" tooltip="1" highlighttoday="no" weeknumbers="no" show_first_available_date="no" form_id="1" form_position="bottom" auto_pending="yes" selection_type="multiple" selection_style="split" minimum_days="0" maximum_days="0" booking_start_day="0" booking_end_day="0" show_date_selection="no"]

    So I create a WPML config file in the root folder of my Enfold child theme with the following content:

    <wpml-config>
      <shortcodes>
        <shortcode>
          <tag>wpbs</tag>
          <attributes>
            <attribute>id</attribute>
            <attribute>language</attribute>
          </attributes>
        </shortcode>
      </shortcodes>
    </wpml-config>

    I reopened the page, updated the content, but I can still not change the German and English page through the Advanced Translation editor.
    Do you have any clue what I am doing wrong?

    PS. I have tried this solution with both a content block and a code block, both don’t give me any result.

    Hey Yuktha,

    In the past we’ve collaborated to make your WooCommerce Bookings And Appointments plugin compatible with Enfold.

    Please let us know what you have in mind so can discuss further.

    Please feel free to set your reply to private or send me an email. I attached my email in the private content field.

    Regards,
    Yigit

Viewing 30 results - 2,521 through 2,550 (of 243,848 total)