Viewing 30 results - 421 through 450 (of 7,495 total)
  • Author
    Search Results
  • #1415666

    Hi,
    Thank you for your patience, Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    if ( ! function_exists( 'bb_filter_search_results' ) )
    {
    	add_action( 'pre_get_posts', 'bb_filter_search_results' );
    	function bb_filter_search_results( $query )
    	{
    		
    		if ( ! $query->is_admin && $query->is_search )
    		{
    			$query->set( 'post_type', array( 'post', 'portfolio', 'page' ) );
    			$query->set( 'cat', array(43,44) );
    		}
    		
    		return $query;
    	}
    }
    
    if ( ! function_exists( 'bb_filter_ajax_search_results' ) )
    {
    	add_filter('avf_ajax_search_query', 'bb_filter_ajax_search_results', 10, 1);
    	function bb_filter_ajax_search_results( $search_parameters )
    	{
    		
    		$defaults = array('numberposts' => 5, 'post_type' => array( 'post', 'portfolio', 'page' ), 'cat' => array(43,44), 'post_status' => 'publish', 'post_password' => '', 'suppress_filters' => false);
    		$_REQUEST['s'] = apply_filters( 'get_search_query', $_REQUEST['s']);
    		$search_parameters = array_merge( $defaults, $_REQUEST );
    		return $search_parameters;
    	}
    	
    }

    it will limit the search to an array of categories, in the code look for ‘cat’ => array(43,44) and change the numbers to your categories.
    Please note there are two places to make this change.
    I tested this with the search element filter Post Types set to All, and with the filter set to Posts
    Enfold_Support_2860.jpeg
    and it only gave me results from the two categories in the code.

    Best regards,
    Mike

    Okay, well, as it turns out, the more important issue is that I’m trying to have the flip boxes show head shots of 3 people, and the entire image needs to be on the front of the flip box.

    So to accomplish that, I searched the Enfold Forum and found this CSS:

    .avia-icon-grid-container,.avia-icongrid-wrapper,.article-icon-entry {
    height:50vh;
    }
    .responsive #av_section_1 > .container {
    max-width: 1810px;
    }

    And it looks great on a large desktop computer screen, but not great on other screen sizes. They get vertical and cut off part of their face and name.

    So I’m wondering if there is a way to customize these boxes to be exactly the size of the images or image proportion, take the full image? I hope that makes sense. And thank you. I have a coming soon page up, so I’ll provide login credentials in Private Content.

    thank you as always for your help!

    #1415311

    No problem,

    Thanks again for finding a solution to this – really happy with this. I used to use an old script for adding SKUs to the default search however it now uses depreciated code (and it was a slow query) so this is a much better solution.

    Can the documentation be updated with the new snippet/filter once 5.6.6 gets released?

    There are a few highly ranking Enfold forum entries with the incorrect solution on them. If they are still open to comment I’ll add the new solution to the posts once 5.6.6 is released.

    #1415203

    Thanks Gunter,

    The main reason for using Relevanssi for me was a speed improvement (where the SKU is included in the search). Relevanssi creates its own search index which helps keep the lookups quick.

    I now have a couple of extremely large woocommerce sites with Enfold that are all running extremely smoothly so Relevanssi is a natural progression to improve search.

    #1415189

    Hi,

    Filter will be in 5.6.6:

    https://github.com/KriesiMedia/enfold-library/blob/master/actions%20and%20filters/Compatibility%20Plugins/Relevanssi/avf_relevanssi_ajax_search.php

    searchform.php

    This is the default that a form collects all input on submit.

    Try this (adding the disabled attribute):

    https://stackoverflow.com/questions/3008035/stop-an-input-field-in-a-form-from-being-submitted/#answer-3008066

    Best regards,
    Günter

    #1415185

    Hi,
    Yes basically, the translation.txt at the plugin GitHub page shows these:
    Enfold_Support_2776.jpeg
    but you real only need to use the “less than” = < and the "greater than" = > that makes your HTML code.
    So for your headings use ###lt###u class=special-type###gt### ... ###lt###/u###gt### and change the “three dots” to the word you want orange.
    I would not use any “search & replace” if that is what you mean.
    I would only manually change the HTML that you have in elements when you see the red warning like in this screenshot
    Enfold_Support_2740.jpeg

    Best regards,
    Mike

    #1415180

    Hi Gunter,

    Sorry crossed wires here.
    I have updated my response to your original post.
    The second fix enfold\config-relevanssi\class-avia-relevanssi.php seems to work

    However both of your suggestions cause the ajax search to have different results to the search page.
    BUT
    The longer and more specific the search term – The less this is a problem.

    I have changed the value to 25 in class-avia-relevanssi.php and also used the css below to control the size of the dropdown:

    .ajax_search_response {
        max-height: 300px;
        overflow-y: scroll;
    }
    #1415178

    Hi,

    Have a look into enfold\config-relevanssi\class-avia-relevanssi.php

    Around line 170 you find:

    
    			$tempquery->query_vars = $search_parameters;
    			relevanssi_do_query( $tempquery );
    

    Try the following:

    
    			$tempquery->query_vars = $search_parameters;
    			$tempquery->set( 'posts_per_page', 5 );
    			relevanssi_do_query( $tempquery );
    

    Best regards,
    Günter

    #1415158
    thinkjarvis
    Participant

    Hi guys,
    I have raised this as a ticket with Relevanssi but wondered if there has been an update from Enfold’s end.
    Previous posts have not provided a valid solution.

    When Relevanssi is installed the Ajax search results that appear from the Enfold Search bar is set to all results meaning you get an extremely long load time for ajax results and a list as long as the entire page!
    If you turn on Throttling in Relevanssi settings it limits this to 500 entries but also limits the full search results page to 500 entries.

    If I add the following function it limits the Ajax search to 5 entries BUT also limits the full search results page to 5 entries. This is obviously not great for users and in solving the ajax issue it causes another problem!
    add_filter( 'pre_option_relevanssi_throttle_limit', function( $limit ) { return 5; } );

    Is there a way to limit just the Ajax search results to 5 rather than globally adjusting the Relevanssi search to 5.

    I want to limit Ajax instant searches to between 5 – 50 results and let the actual search results page display all or use the standard 500 throttle limit.

    #1414557
    zimbo
    Participant

    Tried to use the search facility on the support forum (https://kriesi.at/support/forum/enfold/) just now, 6 pm UK time, type in my search words of “load featured image”, click on the magnifying glass and I get this error every time:

    There has been a critical error on this website.
    
    Learn more about troubleshooting WordPress.

    “featured image” does work.

    #1414316

    Hi Alan,

    Please try to add this CSS code in Enfold > General Styling > Quick CSS:

    @media only screen and (max-width:767px) {
      .responsive #top .av-main-nav #menu-item-search {
        display: none;
      }
    }

    Hope it helps.

    Best regards,
    Nikko

    #1414279
    BenjaminSpeedtsberg
    Participant

    I use the column function in the Text Block which is great, but I miss one thing about it.
    I have searched for how I could set up, when the text should break up in two columns.

    Is this possible, maybe with a shortcode ort something? :-)

    #1414218
    Schmidtgrafisk
    Participant

    Hi Enfold

    How do I delete the search icon on mobile screens

    Cheer
    Alan ;)

    #1413964

    In reply to: AJAX search CSS

    Hey Tim,

    Sorry for the late reply.

    Please check enfold\css\layout.css

    Around line 2076 you find:

    
    .ajax_load_inner{
    	background: url("../images/layout/loading.gif") no-repeat scroll center center #fff;
    	opacity: 0.5;
    	position: absolute;
    	top:0;
    	left:0;
    	right:0;
    	bottom:0;
    }
    

    I think this is what you need.

    To override it you can use selector:

    
    #searchform .ajax_load .ajax_load_inner{
    
    }
    

    Hope this helps you.

    Best regards,
    Günter

    #1413782

    Topic: AJAX search CSS

    in forum Enfold
    THP Studio
    Participant

    Hey guys,

    Can I get your help with some CSS please?

    When you run an AJAX search, Enfold has a little spinner icon and behind it is the theme colour (in my case red).

    Client wants to remove the red background and only show the spinner, but due to the way this is injected I’m having a hard time isolating the CSS needed to do this.

    Could you please assist?

    Thanks

    Tim

    Andreas
    Guest

    Hey there!
    I’m considering getting an Enfold theme (They’re all fantastic btw), as I´m currently helping my father set up a Website for his ‘handyman’ business. Doing some research I found this website – https://cronerenovering.dk/
    I can see it was built with Kriesi + Enfold. Do you have any idea what demo they’re using?

    I’m NOT going to pirate an entire website, I just want to show my father the possibilities and customizations of you guys’ themes. Hope you can help me out and get me further in the purchase process :)

    Very kind regards,
    Andreas G.

    #1413383

    Topic: google search result

    in forum Enfold
    smarta-brett
    Participant

    Hi

    I recently did a site at https://gropodtreeguards.com.au
    when i do a google search for “gro pod tree guards”
    the first result for thsis site comes up as

    which has an enfold logo –
    is there a way to get the sites gropod logo to display on this page?

    #1413155

    Topic: License

    Dablec di Tiziano Moletta
    Guest

    Good morning,

    On April 8, 2023, I updated the license for the Enfold theme that was regularly installed on my website, Dablec.com.

    Unfortunately, this domain experienced a hacker attack that caused significant damage to its search engine indexing.

    The domain is expiring on the 21st of this month, and I will not be renewing it because I have created a new one with the IT extension.

    Is it possible to transfer your license to the new site, dablec.it?

    Thank you,
    Tiziano Moletta

    #1412962
    rosiet5
    Participant

    Hello,
    I put a new site live recently, changing it from a different WordPress template to Enfold. I was careful to keep all content and URL structure the same.
    After going live, I now have only 1 page showing as indexed in Google Search Console, the rest are not indexed, apparently due to a redirect on each page.
    I am struggling to work out why this is, as I’ve not set up any redirects. Can anyone offer any help?!
    I’d be really grateful as the rankings and traffic have drastically decreased as a result. SEMRush audit is also showing pages with permanent re-directs but I can’t see how or why they have occurred.
    Login details are in the private content.
    Many thanks

    • This topic was modified 2 years, 8 months ago by rosiet5.
    #1412960
    thinkjarvis
    Participant

    Hi guys,

    I am trying to remove some of the options from the Woocommerce default product sorting options.
    As per this post here: https://www.businessbloomer.com/woocommerce-remove-rename-add-default-sorting-options-shop/

    This code doesnt do anything On my Enfold sites.

    I found this on another forum post which seems to suggest that the default filters hook has a different name.

    function avia_remove_woocommerce_frontend_search_params() { 
    remove_action('woocommerce_before_shop_loop','avia_woocommerce_frontend_search_params', 20);
    } 
    add_action( 'init', 'avia_remove_woocommerce_frontend_search_params');

    Can you provide me with the correct code to remove some of the options.

    Copied from the article – This code doesnt work with Enfold.

    
    /**
    * @snippet       Remove Sorting Option @ WooCommerce Shop
    * @how-to        Get CustomizeWoo.com FREE
    * @author        Rodolfo Melogli
    * @testedwith    WooCommerce 3.8
    * @donate $9     https://businessbloomer.com/bloomer-armada/
    */
      
    add_filter( 'woocommerce_catalog_orderby', 'bbloomer_remove_sorting_option_woocommerce_shop' );
      
    function bbloomer_remove_sorting_option_woocommerce_shop( $options ) {
       unset( $options['rating'] );   
       return $options;
    }
      
    // Note: you can unset other sorting options by adding more "unset" calls... here's the list: 'menu_order', 'popularity', 'rating', 'date', 'price', 'price-desc'
    #1412643

    Topic: Cannot Instal Enfold

    in forum Enfold
    Saka
    Participant

    Hi,

    I have a dedicated server and have a WP site with Enfold for several years and have no issues with it.

    I am now making a new site so purchased another license, downloaded the latest files and created a new WP installation but I cannot install it.

    In the dashboard if I try to install I get the error: “The link you followed has expired.”

    I have searched for how to fix this and have been directed to the php.ini and .ht access to make changes to the limits. I have tried all of this but no sucess.

    Then I tried the Cpanel file manager to upload the Zip of Enfold to the Themes directory. Extracted it. Can see it in the Appearance menu. When I select activate I get an error message: “There has been a critical error on this website. Please check your site admin email inbox for instructions.”

    I have tried for hours and just can’t get this to install.

    Thanks,

    Jason

    #1412254

    In reply to: Noindex

    Hey germanvoice,
    Try checking WordPress ▸ Settings ▸ Reading ▸ Search engine visibility and ensure the box in not checked.
    Or if you have Yoast SEO installed check the Yoast SEO ▸ Advanced ▸ Allow search engines to show this Page in search results to ensure that it is “Yes”
    Enfold_Support_2512.jpeg

    Best regards,
    Mike

    #1412233

    Hi,
    Thanks for your screenshot, it looks like a post created with the Classic Editor, when I check on my demo site it is working for me:
    Enfold_Support_2507.jpeg
    I see in your screenshot there is a shortcode, try enabling SEO Support ▸ Search Engine Optimization Support ▸ Preprocessing Shortcodes In Header ▸ allow to preprocess shortcodes:
    Enfold_Support_2509.jpeg
    If this doesn’t help Try disabling your plugins. If that resolves the issue, reactivate each one individually until you find the cause.

    Best regards,
    Mike

    #1412209

    In reply to: Change search slug

    please go to that example page and search for : web
    ( that example page is an enfold page ( at 5.6.3 ) –
    https://webers-testseite.de/

    what is the permalink for search-results page ?
    it is: https://webers-testseite.de/suche/web

    #1412193

    Mike,

    So i dug further and it’s not a matter of even using it in the content anywhere. Just by virtue of having the plugin (GravityView) installed is causing this error.

    “I don’t see that we can correct this plugin in the theme.” – It’s not a matter of fixing the plugin, it’s about fixing how the theme handles shortcodes from other developers. Enfold’s “balance shortcode” feature is what is throwing the errors. Somehow, however Enfold grabs the available shortcodes it’s trying to balance, it grabs that as one of the available shortcodes. It tries to create a regex from it and fails.

    In class-shortcode-parser.php in balance_shortcode() this is the $shortcodes variable it’s trying to process and dying on. With that you should be able to patch the theme so it handles anomalies like this properly.

    Array
    (
        [0] => wp_caption
        [1] => caption
        [2] => gallery
        [3] => playlist
        [4] => audio
        [5] => video
        [6] => embed
        [7] => expand
        [8] => colomat
        [9] => expandsub1
        [10] => expandsub2
        [11] => expandsub3
        [12] => expandsub4
        [13] => expandsub5
        [14] => expandsub6
        [15] => expandsub7
        [16] => expandsub8
        [17] => expandsub9
        [18] => expandsub10
        [19] => expandsub11
        [20] => expandsub12
        [21] => expandsub13
        [22] => expandsub14
        [23] => expandsub15
        [24] => expandsub16
        [25] => expandsub17
        [26] => expandsub18
        [27] => expandsub19
        [28] => expandsub20
        [29] => expandsub21
        [30] => expandsub22
        [31] => expandsub23
        [32] => expandsub24
        [33] => expandsub25
        [34] => expandsub26
        [35] => expandsub27
        [36] => expandsub28
        [37] => expandsub29
        [38] => gv_note_add
        [39] => gv_entry_link
        [40] => gv_edit_entry_link
        [41] => gv_delete_entry_link
        [42] => year
        [43] => av_privacy_allow_cookies
        [44] => av_privacy_accept_essential_cookies
        [45] => av_privacy_google_tracking
        [46] => av_privacy_google_webfonts
        [47] => av_privacy_google_maps
        [48] => av_privacy_video_embeds
        [49] => av_privacy_google_recaptcha
        [50] => av_privacy_custom_cookie
        [51] => av_privacy_accept_button
        [52] => av_privacy_accept_all_button
        [53] => av_privacy_do_not_accept_button
        [54] => av_privacy_modal_popup_button
        [55] => av_privacy_link
        [56] => av_privacy_cookie_info
        [57] => av_sb_instagram_feed
        [58] => av_leaflet_map
        [59] => av_productgrid
        [60] => av_productlist
        [61] => av_product_button
        [62] => av_product_info
        [63] => av_product_review
        [64] => av_product_tabs
        [65] => av_product_upsells
        [66] => avia_sc_product_meta
        [67] => av_product_price
        [68] => av_productslider
        [69] => gravityform
        [70] => gravityforms
        [71] => wpseo_breadcrumb
        [72] => gravityview
        [73] => gventry
        [74] => gvfield
        [75] => gvlogic
        [76] => gvlogic2
        [77] => gvlogic3
        [78] => gvlogicelse
        [79] => tribe:event-details
        [80] => boxzilla_link
        [81] => av_player
        [82] => av_playlist_element
        [83] => av_blog
        [84] => av_buttonrow
        [85] => av_buttonrow_item
        [86] => av_button
        [87] => av_button_big
        [88] => av_catalogue
        [89] => av_catalogue_item
        [90] => av_chart
        [91] => av_chart_dataset
        [92] => av_codeblock
        [93] => av_one_full
        [94] => av_one_half
        [95] => av_one_third
        [96] => av_two_third
        [97] => av_one_fourth
        [98] => av_three_fourth
        [99] => av_one_fifth
        [100] => av_two_fifth
        [101] => av_three_fifth
        [102] => av_four_fifth
        [103] => av_comments_list
        [104] => av_contact
        [105] => av_contact_field
        [106] => av_content_slider
        [107] => av_content_slide
        [108] => av_countdown
        [109] => av_events_countdown
        [110] => av_upcoming_events
        [111] => av_gallery
        [112] => av_horizontal_gallery
        [113] => av_google_map
        [114] => av_gmap_location
        [115] => av_layout_row
        [116] => av_cell_one_full
        [117] => av_cell_one_half
        [118] => av_cell_one_third
        [119] => av_cell_two_third
        [120] => av_cell_one_fourth
        [121] => av_cell_three_fourth
        [122] => av_cell_one_fifth
        [123] => av_cell_two_fifth
        [124] => av_cell_three_fifth
        [125] => av_cell_four_fifth
        [126] => av_heading
        [127] => av_headline_rotator
        [128] => av_rotator_item
        [129] => av_hr
        [130] => av_font_icon
        [131] => av_icon_circles
        [132] => av_icon_circle_item
        [133] => av_icon_box
        [134] => av_icongrid
        [135] => av_icongrid_item
        [136] => av_iconlist
        [137] => av_iconlist_item
        [138] => av_image
        [139] => av_image_diff
        [140] => av_image_hotspot
        [141] => av_image_spot
        [142] => av_partner
        [143] => av_partner_logo
        [144] => av_lottie
        [145] => av_magazine
        [146] => av_mailchimp
        [147] => av_mailchimp_field
        [148] => av_masonry_entries
        [149] => av_masonry_gallery
        [150] => av_submenu
        [151] => av_submenu_item
        [152] => av_notification
        [153] => av_animated_numbers
        [154] => av_portfolio
        [155] => av_post_metadata
        [156] => av_metadata_item
        [157] => av_postcontent
        [158] => av_postslider
        [159] => av_progress
        [160] => av_progress_bar
        [161] => av_promobox
        [162] => avia_sc_search
        [163] => av_section
        [164] => av_slideshow
        [165] => av_slide
        [166] => av_slideshow_accordion
        [167] => av_slide_accordion
        [168] => av_feature_image_slider
        [169] => av_fullscreen
        [170] => av_fullscreen_slide
        [171] => av_slideshow_full
        [172] => av_slide_full
        [173] => av_social_share
        [174] => av_tab_section
        [175] => av_tab_sub_section
        [176] => av_table
        [177] => av_row
        [178] => av_cell
        [179] => av_tab_container
        [180] => av_tab
        [181] => av_team_member
        [182] => av_team_icon
        [183] => av_testimonials
        [184] => av_testimonial_single
        [185] => av_textblock
        [186] => av_timeline
        [187] => av_timeline_item
        [188] => av_toggle_container
        [189] => av_toggle
        [190] => av_video
        [191] => av_sidebar
        [192] => av_dropcap1
        [193] => av_dropcap2
        [194] => gravityview_widget_search
        [195] => gravityview_widget_custom_content
        [196] => gravityview_widget_gravity_forms
        [197] => gv\widgets\page_size
        [198] => gravityview_widget_pagination_info
        [199] => gravityview_widget_page_links
    )
    #1412171

    Hi Mike,

    There is no such functionality in Enfold by default, but I’m sure you could find a plugin which offers that functionality: https://wordpress.org/plugins/search/jobs/. We haven’t tested the theme with any plugins like that, so we don’t have anything to recommend unfortunately.

    Best regards,
    Rikard

    #1412057
    daves1997
    Participant

    Received this from Yoast support:

    Mushrit replied
    Jun 29, 5:55
    Hi Dave,

    Thank you for your reply and for confirming.

    We understand you are facing readability is not available. I am sorry for the situation you are facing. We are here to help.

    From the screenshot, it seems you are not using the default block editor of WordPress. Are you adding the content from a page builder of your theme? If yes, please know that Yoast SEO can analyze the content and detect it correctly when added from the default block editor of WordPress.

    I understand you would not want to change your theme, which may ruin the structure of your pages. However, please have a look at the workaround below:

    Workaround:

    We offer a workaround in such cases that you can use to avoid the limitation of page builder within Yoast SEO Premium.

    First create a staging site.

    Some popular web hosts offer quick setups for a staging site, so please contact your web host for assistance. They will probably be able to help you out. If your web host does not offer staging sites, the WordPress plugin repository offers staging plugins or you can create your own staging site.

    Test the content from Staging site

    Kindly log into your staging site, activate a default theme like Twenty Twenty three and also make sure you have the page builder deactivated. Then add the content of your post using the default WordPress block editor. Check the suggestions made by Yoast SEO Premium’s readability analysis, adjust the content as required. Once you are happy with the content, you can add the content back the page builder in your live site.

    Why Yoast SEO’s readability analysis fails when content is added using a page builder:

    Yoast SEO Premium analyzes the default WordPress content areas like the title, URL, the main content box (WordPress editor). If you are adding your content through other plugin or theme content boxes (as most page builders do), Yoast SEO Premium may not be able to detect it by default. Currently, we are compatible with the Elementor page builder. The Yoast SEO Elementor integration is free to use for everyone; no premium or add-on is required for core functionality.

    If you are using another page builder, please understand that page builders commonly use a custom editor designed by their team. Because plugins rely on the default editor, some page builders make the data entered into their editor available in the default editor. In these cases, Yoast SEO will see and analyze the content as if created with the default editor. When this is not the case, an integration feature must be available to parse the page builder content into Yoast SEO for analysis.

    It’s like opening a room to find a safe inside it. Unless you have the code to unlock the safe, you can only see the inside of the room. To get the code to open the safe, you must contact the person who set the unlock code. We have tried to automatically unlock and parse content from other plugins and themes with inferior results in the past. Therefore, we opted to provide an API that developers can use to unlock their content and pass it to our page analysis.

    For a permanent fix, if you are using a plugin or theme that doesn’t send their content to our page analysis, please reach out to the author or developer to request an integration feature for better SEO compatibility. Our development team provides information about creating a custom integration here. Although our plugin does not detect your content and shows an incorrect analysis report from a content page builder, this does not affect how search engines crawl and analyze your site. Search engines process the front end of your site and will detect your content.

    Feel free to let us know should you have additional questions on this.

    How would you rate my reply?
    Satisfaction Rating Icons

    Thanks and regards,
    Mushrit


    Mushrit Shabnam
    Support Engineer at Yoast

    Want to further optimize your website? Improve your SEO skills with our online SEO training courses!

    Have you seen our Help Center? This will probably have the answer you’re looking for!
    Dave Sorenson replied
    Jun 28, 16:56
    yes to both, they have been this way for quite awhile
    Mushrit replied
    Jun 28, 14:43
    Hi Dave,

    Thank you for your reply

    We understand you are facing Readability: Not available from the Yoast SEO. I am sorry for the situation you are facing. We are here to help.

    Kindly confirm you have configured the following settings:

    Can you confirm you have the right user permissions? You can check by going to WordPress dashboard > Users >Profile >Yoast SEO settings (may need to scroll down) and confirm that both “Disable SEO analysis” and “Disable readability analysis” are not checked? Please remove checkmarks if you have any and then click save. Please check the screenshot attached to this email named “permission”.
    Can you confirm that the SEO, Readability, and Insights are all enabled by going to Yoast SEO > Settings >Site Features and checking that SEO Analysis, Readability Analysis, and Insights are all set to ‘On’? Please check the screenshot attached to this email named “Settings”
    Kindly make sure you have configured as suggested above. Then check if the issue exists.

    We look forward to your reply.

    divedave
    Participant

    We have now built more than 30 websites with Enfold for our customers. Previously, we built all websites in Typo3 and there it was easily possible to show and hide a content element by date and time.
    Are there such possibilities in Enfold as well?

    Im searching for a solution for a website of one customer.

    • This topic was modified 2 years, 8 months ago by divedave.
    #1411719
    sitecloudpl
    Participant

    Hi
    I have an old bug that has not disappeared after the update.
    Is there a way?
    Under PHP 8.0 the page does not load .

    WordPress has detected an error in the theme it is using: Enfold. WordPress Version 6.2.2
    Current theme: Enfold (version 5.6.2)
    Current plugin: (version )
    PHP Version: 7.4.30

    The E_ERROR error was caused on line 17 of the …/wp-content/themes/enfold/searchform.php file.
    Error message: Uncaught Error: Call to undefined function av_icon_char() in …/wp-content/themes/enfold/searchform.php:17
    Stack trace:
    # 0 …/wp-includes/general-template.php(308): require()
    # 1 …/wp-content/themes/enfold/includes/error404.php(17): get_search_form()
    # 2 …/wp-includes/template.php(785): require(‘/home/users/…’)
    # 3 …/wp-includes/template.php(718): load_template(‘/home/users/…’, false, Array)
    # 4 …/wp-includes/general-template.php(204): locate_template(Array, true, false, Array)
    # 5 …/wp-content/themes/enfold/404.php(30): get_template_part(‘includes/error4…’)
    # 6 …/wp-content/plugins/wp-cerber/cerber-load.php(4658): include(‘/home/users/…’)

    Daniel

    #1411500

    In reply to: Pricing table

    Hi,
    Sorry, I don’t know of any table plugins that include these features and I can not install each table plugin and test for you, it would just take too much time and since we don’t support third party plugins this would be outside our support scope.
    You could try narrowing down the table plugins to ones that have the features you wish and then search the fourm for threads about them and search the table’s support forum for references about Enfold to gain a general sense if there is a conflict, but ultimately you will need to install and test the remaining plugins to determine if they match your needs and work with Enfold.

    Best regards,
    Mike

Viewing 30 results - 421 through 450 (of 7,495 total)