Viewing 30 results - 271 through 300 (of 7,470 total)
  • Author
    Search Results
  • #1436326

    In reply to: SEO Analysis program

    Hi,

    What do you mean by “transition words”? Please provide a screenshot using platforms like Savvyify, Imgur or Dropbox. Are you using the Content Analysis feature?

    // https://yoast.com/research/real-time-content-analysis/

    Has Rank Math been verified to work properly with Enfold,

    While the AI feature of the RankMath plugin is not compatible with the Advance Layout Builder (ALB), the plugin’s analysis tool should still function properly with the builder. It should be able to check or verify that the focus keywords are included in the content created using the builder.

    Best regards,
    Ismael

    #1436164

    Hi,
    On the search results page that I checked the font is 13px:
    Enfold_Support_4906.jpeg
    If your search results page is different please link directly to it.
    If you are using Relevanssi see their documentation for changing the search results.

    Best regards,
    Mike

    #1436156

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

    #top.search-results .template-search article.blog-grid {
    	width: 32%;
    	float: left;
    	clear: right;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    Hey LoPld,
    For your first question, I believe what you want is to have the burger menu show until 1240px, if this is correct then your css is wrong. Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (min-width: 768px) and (max-width: 1240px){
    .responsive #top .av-main-nav .menu-item-avia-special {
        display: block!important;
    }
    #top #header .av-main-nav > li.menu-item  {
      display: none!important;
    }
    .responsive #top .av-main-nav .menu-item-avia-special {
        display: block;
    }
    #top #header .av-main-nav > li#menu-item-search.menu-item  {
      display: block!important;
    }
    .av-main-nav-wrap {
        float: right;
    }
    }
    @media only screen and (min-width: 990px) and (max-width: 1240px){
    #top #header .av-main-nav > li#menu-item-search.menu-item  {
      display: block!important;
      line-height: 118px;
    }
    #top #header .av-main-nav > li#menu-item-search.menu-item a {
        line-height: 118px;
    }
    .responsive.html_mobile_menu_tablet #top #wrap_all .menu-item-search-dropdown > a {
        font-size: 24px;
        color: #e8c100;
    }
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1436038

    Hi,
    Thank you for your patience, I was not able to find a solution with the built-in theme options, but I was able to come up with a shortcode that will do as you asked, since your page is black I styled it accordingly and this is the expected results:
    Enfold_Support_4875.jpeg
    Since you are not using a child theme I recommend using the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:
    Enfold_Support_2680.jpeg
    then add the below code and save.

    function garden_progress_bars_shortcode($atts) {
        $atts = shortcode_atts(
            array(
                'pre_cultivation_start' => '',
                'pre_cultivation_end' => '',
                'planting_start' => '',
                'planting_end' => '',
                'harvest_start' => '',
                'harvest_end' => '',
                'pre_cultivation_color' => '',
                'planting_color' => '',
                'harvest_color' => '',
                'pre_cultivation_label' => '',
                'planting_label' => '',
                'harvest_label' => '',
            ),
            $atts,
            'garden_progress_bars'
        );
        $output = '
        <style>
            .garden-progress-bars {
                font-family: Arial, sans-serif;
                max-width: 960px; 
                margin: 0 auto;
            }
            .progress-header, .progress-header div:not(.header-offset) {
                display: inline-flex;
                width: 100%;
                justify-content: space-evenly;
            }
    		.progress-header div:not(.header-offset) {
        		border-left: 1px solid #eee;
            }
            .month {
                width: calc((100% - 160px)/12); 
                text-align: center;
            }
            .progress-row {
                display: flex;
                align-items: center;
                margin-bottom: 10px;
            }
            .label-container {
                width: 150px; 
                text-align: right;
                padding-right: 10px; 
            }
            .progress-container {
                display: flex;
                width: calc(100% - 160px); 
                align-items: center;
            }
            .progress-bar-container {
                flex-grow: 1;
                background-color: #000;
                height: 20px;
                position: relative;
            }
            .progress-bar {
                height: 100%;
                position: absolute;
            }
            .progress-header .header-offset {
                width: 150px;
    			display: inline-flex;
                flex-shrink: 0;
            }
        </style>
        <div class="garden-progress-bars">
            <div class="progress-header">
                <div class="header-offset"></div>'; 
        $months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
        foreach ($months as $month) {
            $output .= "<div class='month'>$month</div>";
        }
        $output .= '</div>'; 
        $create_progress_bar_row = function($label, $color, $start, $end) use ($months) {
            $start_month_index = array_search($start, $months);
            $end_month_index = array_search($end, $months);
            $width = (($end_month_index - $start_month_index + 1) / 12) * 100;
            $left = ($start_month_index / 12) * 100;
            return "
            <div class='progress-row'>
                <div class='label-container'>$label</div>
                <div class='progress-container'>
                    <div class='progress-bar-container'>
                        <div class='progress-bar' style='background-color: $color; width: $width%; left: $left%;'></div>
                    </div>
                </div>
            </div>";
        };
        $output .= $create_progress_bar_row($atts['pre_cultivation_label'], $atts['pre_cultivation_color'], $atts['pre_cultivation_start'], $atts['pre_cultivation_end']);
        $output .= $create_progress_bar_row($atts['planting_label'], $atts['planting_color'], $atts['planting_start'], $atts['planting_end']);
        $output .= $create_progress_bar_row($atts['harvest_label'], $atts['harvest_color'], $atts['harvest_start'], $atts['harvest_end']);
    
        $output .= '</div>'; 
    
        return $output;
    }
    add_shortcode('garden_progress_bars', 'garden_progress_bars_shortcode');
    

    and then on your page add this shortcode in a code block element to show the growing bars:

    [garden_progress_bars pre_cultivation_start="Feb" pre_cultivation_end="Apr" pre_cultivation_color="#FF5733" pre_cultivation_label="Pre-cultivation" planting_start="Apr" planting_end="Jun" planting_color="#5EBA7D" planting_label="Planting" harvest_start="Jun" harvest_end="Sep" harvest_color="#FFC300" harvest_label="Harvest"]

    This shortcode creates three bars, and for each bar you can change the label text and color of bar and the start & end month.
    First try this shortcode as is to see the working solution as in the screenshot above, then you can try adjusting the attributes to suit.
    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    #1435694
    Bernadette
    Guest

    Good day,

    Does the Enfold theme have a filtered search option or could you recommend a compatible plugin that works with the Enfold theme? My Projects portfolio contains more than a hundred projects, and I would like the main Projects page to have a search bar with filters, so visitors can choose to search for projects either by keyword (in the search field), or by location, and refine their search further by category and even subcategory. So it would be a search bar, with 3 dropdown selection filters (Country, Solution, Technique).

    #1435565
    Dejan
    Guest

    I’m using the WP Job Openings plugin for job listings. I’m facing some challenges when it comes to customizing the job details page.

    Unfortunately, there are no advanced Enfold options available on the page settings itself for the job details page. I’ve searched through the Enfold documentation and the WP Job Openings plugin documentation, but I haven’t been able to find a clear solution.

    I would like to have full width and the top menu as I have on others, but unfortunately I can not find how to make edit on this post type.

    Thanks

    #1435430
    octopussolutions
    Participant

    I’m using the WP Job Openings plugin for job listings. I’m facing some challenges when it comes to customizing the job details page.

    Unfortunately, there are no advanced Enfold options available on the page settings itself for the job details page. I’ve searched through the Enfold documentation and the WP Job Openings plugin documentation, but I haven’t been able to find a clear solution.

    I would like to have full width and the top menu as I have on others, but unfortunately I can not find how to make edit on this post type.

    Thanks

    #1435324

    Hey northorie,
    To edit the language files you will first need to install Poedit, it is a free software, the look for your language version in enfold/lang/ for German there are two versions de_DE.po & de_DE_formal, choose the one you are using, then search for the text for example “When refusing all cookies this site” it should find it like this:
    Enfold_Support_4805.jpeg
    then when you add your translation and save, you also must “Compile to MO
    Enfold_Support_4807.jpeg
    so you will have two new files de_DE.po & de_DE.mo then both must be uploaded to your site and replace the current ones.

    Best regards,
    Mike

    #1435222
    Steve Webgecko
    Participant

    As there is a Theme Option in ENFOLD called «Sidebar Einstellungen» unfortunately not for WooCommerce Standard Templates.
    So how can I achieve hiding the Sidebar on WC Standard Pages, like «Produkt-Schlagwörter» (Product Tags) or Produkt-Kategorie (Product Categories) using the Tag Search function like here:
    https://shop.cleanhouse.ch/produkt-schlagwort/4-farbsystem/

    PHP Snippet is not working:
    function disable_woo_commerce_sidebar() {
    remove_action( ‘woocommerce_sidebar’, ‘woocommerce_get_sidebar’, 10);
    }
    add_action(‘init’, ‘disable_woo_commerce_sidebar’);

    Any ideas for PHP Snippet?

    #1434421
    This reply has been marked as private.
    AnnemarieDoolin
    Participant

    I have so many problems trying to get the right spacing for the mobile header… i.e. making enough room for the logo, burger and search icons and shopping cart. I tried putting styling in but every time I do that another device view goes “skew wiff”. I tried taking out all my css styling so it should default to Enfold settings but still the burger and search icons end up hiding behind the basket on some device sizes.

    POSSIBLE SOLUTION? Thinking outside the box… I thought that if I changed the header layout to “Logo center, Menu below” the mobile menu container options would move down underneath the logo as the main menu DOES ON PC size but it doesn’t.

    ANY SUGGESTIONS from you wonderful genius’ would be so appreciated.
    HerbalCenter.dk

    Regards,
    Annemarie

    Understood, thanks for the explanation. I’m getting an “Incompatible Archive” error when I upload the Enfold child theme zip file using WordPress theme installer.

    From research (see below links) it seems this is a common issue for mac users. I am using a windows machine and did not modify the zip file – I do not want to do custom code just to get this install to work. Please suggest a workaround.

    https://wordpress.org/support/topic/zip-files-created-in-macos-stopped-working-in-wordpress-6-4-3/

    #1433182

    Hey Yaphoon,

    Thank you for the inquiry.

    You can use this css code to adjust the style of the masonry title.

    .av-masonry-entry .av-masonry-entry-title {
        line-height: 1.3em;
        margin: 0;
        font-size: 20px;
        font-family: Verdana;
    }
    

    To adjust the hover color of the menu button, add this.

    #top #wrap_all .header_color #menu-item-174:hover > a .avia-menu-text {
        background-color: #3f75e9;
        color: #ffffff;
        border-color: #3f59e9;
    }

    And to adjust the size of the images in the archive pages, you have to edit the enfold/taxonomy-portfolio_entries.php and adjust the parameters in the avia_post_grid instance around line 38.

    $grid = new avia_post_grid(
    										array(
    											'linking'			=> '',
    											'columns'			=> '3',
    											'contents'			=> 'title',
    											'sort'				=> 'no',
    											'paginate'			=> 'yes',
    											'set_breadcrumb'	=> false,
    											'preview_mode' => 'custom',
    											'image_size' => 'full'
    										));
    

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    #1432557
    phil
    Guest

    Considering your theme for a client. I noticed though in support forum, there are questions that Avia Layout Builder not working with latest version of WordPress as per:

    https://kriesi.at/support/search/editing+pages+page+builder+not+working/?avia_filter_search=yes&avia_search_forums=66&avia_search_dates=6m&avia_search_include=no

    &

    Can you confirm what version WordPress works with your builder or shouldn’t it work with any version, latest or not? Like to be assured your builder is robust so can customize/edit Enfold for the client.

    Thanks & Regards,

    Phil

    #1432435

    Hello, I have the same issue. I purchased the Enfold theme about 2 months ago, and the FAQ page appears first on search engines. I’ve set the homepage through customization settings and WP reading settings, but I can only find the FAQ and legal mention pages. Thanks for your help.

    #1432215

    Topic: Docu Link

    in forum Enfold
    Guenni007
    Participant

    maybe it would be a good idea to place a link to the good docu page, at least as a sticky message similar to the umcomming fixes post, or in the sidebar. A lot of questions could be solved by reading the docu –
    and perhaps a link to the github too.
    https://kriesi.at/documentation/enfold/
    https://github.com/KriesiMedia/enfold-library

    ___________

    there was a presale question on getting the avia shortcodes of a page. – in this case i go to the demo page on github:
    https://github.com/KriesiMedia/enfold-library/tree/master/demos – download the xml of that demo and look inside for that page ( the easiest way is to search for page_id=123) – only the homepage is sometimes harder to find. You find the avia shortcodes in between CDATA as content:encoded

    <content:encoded><![CDATA[  
    … here is the avia shortcode inside
    ]]></content:encoded>
    #1431459

    Hi,

    Thank you for the update.

    Please make sure to remove the add_filter (pre_get_posts) and the include_cpt_search function altogether.

    function include_cpt_search( $query ) {
    if ( $query->is_search ) {
    $query->set( ‘post_type’, array( ‘post’, ‘page’, ‘proyectos_ma’ ) );
    }
    return $query;
    }
    add_filter( ‘pre_get_posts’, ‘include_cpt_search’ );
    

    was created to be able to use the Enfold visual layout designer in the new custom post type: projects_ma

    The filter avf_alb_supported_post_types should be enough to enable the Advance Layout Builder for the custom post type (projects_ma).

    Best regards,
    Ismael

    #1431423

    Hi Ismael,

    I’ve done that and waited 48 hours of the same problem.

    I’m wondering if we have crossed wires here. I’m referring to the search results generated by Enfold.

    To re-create the problem please enter the word ‘fox’ into the search box here ttw.org.uk and look at the top result ‘Fox’s field’ and you will see ‘Aenean massa. Cum sociis natoque’ in the sub text.

    I’m going to ask what may seem like another silly question… Is the theme search managed by Google? Or did you think my original question referred to Google search?

    Always learning… Thank you for your help in advance

    Sincerely

    Phillip

    #1430240
    aintzerga
    Participant

    Hello.

    We have created and activated an Enfold Child on our website https://montealbertia.eus/
    Everything works correctly, except that when we search for a page, article or image in the media in the WordPress administrator, it does not find the requested file. This does not happen with the normal Enfold theme.

    What can we do to solve it?

    Thank you.

    Hi Mike!

    Thank you for your feedback.

    So I fixed the two errors you mentioned and I’m not seeing any other errors…

    …except when I have a mobile-sized window in the DevTools, open my burger menu, and use my mouse to scroll. This causes multiple errors all saying:

    Unable to preventDefault inside passive event listener invocation.
       jquery.min.js?ver=3.7.1:2

    I tracked down where Enfold/Avia enqueues this file–in: config-layerslider/LayerSlider/assets/wp/scripts.php. Searching the web for this error message gives possible solutions, like removing the call to preventDefault(). But I sure as heck don’t want to mess with the Ajax libraries.

    I’m not sure if this is related to my inablity to scroll in my burger menus or not. Since I’m able to scroll through your demo’s burger menu, I assume there is something else in my code that is preventing me from scrolling.

    However, note that this same preventDefault error does appear even in your demo’s burger menu if I scroll past the bottom of it, and multiple instances of the error are displayed as I continue to try to scroll past the bottom of your burger menu. But the preventDefault error appears for my website even if I’m not at the bottom–since I can’t even see the bottom.

    Any help would be appreciated.

    Thanks,
    Gary

    #1430178
    envatobunny
    Participant

    We have built a new website using Enfold theme (/themes/enfold-construction demo download). We have adapted some of the Portfolio items. The ones that were already in the theme, but edited to suit our site ttw.org.uk, still show latin text under the title when searched for within the website search. We have studied the code but there is no trace of it on the page only in the search results. How do we get rid of this latin? (I’m sure the answer is obvious but we just can’t see it)

    #1430160

    In reply to: Web Portal Development

    Hey Marvin,

    Thanks for reaching out to us. Enfold has search functionality, contact form, blog post element, partner logo element, social media element and a gallery element. The rest of your requirements would have to be implemented using plugins or third party code.

    Best regards,
    Rikard

    #1430153
    Marvin
    Guest

    Hi,

    Thank you for the good work!

    I’m inquiring about the Enfold theme whether I can use it to develop a web portal with these key features:

    • Publications Evaluation module
    • Search feature
    • Contact and feedback forms
    • Evaluation Calendar
    • Research Resources repository
    • Bulletins and News
    • Jobs
    • Call for Papers
    • Public and Private Chat rooms
    • Procurement Listings
    • Partner Logos
    • Useful Links
    • Social Media integration
    • Training Opportunities listing
    • Photo Gallery

    Thanks

    #1429979

    Hi,
    My research point to low server settings for this error.
    Try going to WordPress ▸ Tools ▸ Site Health ▸ Info ▸ Server and compare the settings to these:
    Enfold_Support_4402.jpeg
    and if any of these are low:
    PHP max input variables
    PHP time limit
    PHP memory limit
    Max input time
    Upload max filesize
    PHP post max size

    ask your webhost to help adjust them, or try the steps in the article linked above.

    Best regards,
    Mike

    #1429942
    SandraSquires
    Participant

    I have several websites with Enfold Theme and I have them all up to date. When doing a search for them in Google the Favicon does not show. I have tried uploading Favicon.ico but it will not allow me to do so. I saw comments about making sure the site is https and it is.

    Thank you for any help.

    #1429833

    After research I think I’ve figured out the problem. The problem isn’t the need to change layout from stretched to Boxed. The problem is the the FullWidth Area is wider than my content (in General layout –> I have Maximum Container Width = 1296px). I want to keep the Image + page title configuration that’s in the FullWidth area BUT don’t want “Image + page title” to be wider than the content. How can I reduce the width of the FullWidth Area so it matches the content width? If there’s no way to reduce the width of the Fullwidth area, can it be removed? If so, how can I retain the “Image + page title” setup which can be applied to all the pages on my site?

    According to this documentation – https://kriesi.at/documentation/enfold/header/#header-width “By default, the width of the content inside the header is same as the width of the container which is set in Enfold > General Layout > Dimensions > Maximum Container width” but my header seems to be wider than the Maximum width I specified.

    Hey Enfoldfanatic,

    Thank you for the inquiry.

    We made slight adjustments to the css code to make sure that the search icon remains visible alongside the burger menu icon.

    
    /* Activate burger menu */
    @media only screen and (max-width: 1224px) {
      #top #header .av-main-nav>li.menu-item {
        display: none !important;
      }
    
      #top #header .av-burger-menu-main,
      #top #header .menu-item-search-dropdown {
        cursor: pointer;
        display: block !important;
      }
    }

    Best regards,
    Ismael

    Enfoldfanatic
    Participant

    Hi Guys,

    On this page > https://kriesi.at/documentation/enfold/menu/#toggle-id-163 I found the code snippet to control that the Hamburger icon appearing earlier in case the text is crossing the logo on smaller viewports. The only downside of this snippet that somehow is hides / remove the search icon which is normally nicely displayed next to the hamburger menu. Can this snippet be adjusted to ensure that the search icon remains in place?

    Thanks and regards
    S

    goldengate415
    Participant

    Hi there,
    You may remember this thread I created and that we worked on 5 years ago. It comes up #1 on Google search when looking for ways to reduce the wordpress media library size:
    https://kriesi.at/support/topic/photos-taking-up-a-huge-amount-of-space-on-my-site-storage-anything-i-can-do/

    I am once again bumping up against my 10 gig limit and realize that i really use very few of the sizes on my site. I would like to take a look at this but I see that at least one of the plugins involved is no longer supported and has some fairly signifiant issues with PHP 7+ according to support forums that are no longer monitored. :( Having said that, I still have the Simple Image Sizes plugin running on my site and it does appear I can use it to further reduce the number of photo size options.

    Has Enfold added anything in theme functionality to make it easier to seelct the default photo sizes or do we still need to do this in functions.php or the Simple Image Sizes Plugin? Any further advice before I embark on this?

    Thanks!
    Rob

Viewing 30 results - 271 through 300 (of 7,470 total)