Viewing 30 results - 181 through 210 (of 7,486 total)
  • Author
    Search Results
  • #1468403
    mahdyputraa
    Participant

    Hi,

    When I tried to follow the instructions on the following link: https://kriesi.at/support/topic/add-featured-image-to-search-results/, I was confused about where to find the loop-search.php file to place the code. I hope the Enfold team can help clarify this.

    Thank you.

    #1468275

    Hi,

    I added a fix to solve searchbar with #toggle id:

    Please replace C:\xampp\htdocs\wp56\wp-content\themes\enfold\config-templatebuilder\avia-shortcodes\toggles\toggles.js

    with

    https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_6_0_4/toggles/toggles.js
    https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_6_0_4/toggles/toggles.min.js

    Best regards,
    Günter

    #1468264

    Hello,
    I contacted popup maker support and asked them the problem of rendering content made with AVIA editor. I provided them with the credentials and they did some further investigation. Their conclusions are as follows.

    Hi Andrea,
    We tried it out and we’re also unable to render the content built with Avia in our popups. When we searched for similar cases, it looks like it has been this way ever since.
    Could you try reaching out to Avia if they have ideas as to why their content doesn’t show up in Popup Maker?
    As an alternative, you can still use the standard Gutenberg Block Editor in our popups if you want to utilize columns.
    You can enable the block editor by going to Popup Maker > Settings > Enable Block Editor Support.
    Other page builders that still work with Popup Maker are Elementor (using template shortcodes), Divi, Beaver Builder, and WP Bakery Page Builder.
    Let us know if you have other questions.

    In conclusion they also verified the incompatibility of the AVIA editor with the rendering of their plugin … but from what you wrote above there was a time when rendering worked. If we can figure out which version of Enfold and Popup Maker were the ones that worked, we will have a key to understanding the origins of the problem.

    If we are able to find a solution, it is OK if not I would say that I have to abandon this path and switch to use the standard Gutenberg Block Editor in my popups. I tried to use the Gutenberg editor … now I understand the reason for the negative comments I had seen about it … compared to AVIA editor it is really bad! I was hoping it was something similar to AVIA or Elementor, but we are light years away. Yes, it is better than the standard editor but unfortunately it is not a nice choice! Well, I really hope I will find a better solution in the future.

    Thank you for your support
    Andrea

    • This reply was modified 1 year, 4 months ago by cuccarini.
    • This reply was modified 1 year, 4 months ago by cuccarini.
    • This reply was modified 1 year, 4 months ago by cuccarini.
    • This reply was modified 1 year, 4 months ago by cuccarini.
    #1468119

    sadly the topic is closed: . https://kriesi.at/support/topic/search-function-with-link-list/

    what i got so far:
    https://enfold.webers-webdesign.de/pages

    this is only for pages ( if you like to have that for posts – just change the post-type )
    i managed it by a custom shortcode – then place this as : [glossary] on your page

    function az_index($post_id) {
        $AZposts = get_posts(array(
            'numberposts'       => -1,
            'post_type'         => 'page',
            'orderby'           => 'title',
            'order'             => 'ASC',
            // 'category'           => $cat
        ));
    
        $current = "";
        $nav = "";
        $postlist = "";
        foreach($AZposts as $AZpost) {
            $postLink = get_permalink( $AZpost->ID );
            $firstletter = strtoupper(substr($AZpost->post_title,0,1));
            if($firstletter != $current) {
                $nav .= "<span class='firstletters'><a href='#$firstletter'> $firstletter </a></span> ";
                $postlist .= "<h3 class='firstletter' id='$firstletter'> $firstletter </h3>\n";
                $current = $firstletter;
            }
            $postlist .= "<span><a class='postlink' href='".$postLink ."'>" . $AZpost->post_title.  "</a></span><br>\n";
        }
    
        print $nav . "<br><br>" . $postlist;
    }
    add_shortcode( 'glossary', 'az_index' );

    and :

    .firstletters {
      padding: 0 10px ;
      background: #900;
      margin-right: 5px;
      display: inline-block;
    }
    
    .firstletters a {
      color: #FFF;
      text-align: center !important;
    }

    i tried to have unordered list after the h3 headings – but i couldn’t find a way to do that ( loop is hard to find the place to insert that tags ) – maybe a mod got a good idea

    #1468104

    Solution: Reinstate the default woo dropdowns – Applies to all Enfold sites:

    The default woo filters are dequeued in enfold > config-woocommerce > config.php and config-365.php

    We can requeue them and disable the Enfold filters by adding the following to functions.php in the child theme:

    // Removes Enfolds sort by dropdowns
    function avia_woocommerce_frontend_search_params()
    {
       return;
    }
    
    // Re-adds the default sortby dropdown
    add_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 20 );

    Styling fixes
    Add the following css:

    @media only screen and (max-width: 767px) {
        .responsive #top .woocommerce-ordering {
            position: relative;
            float: left;
            clear: both;
            margin: 0;
            padding-bottom: 0px;
            padding-top: 15px;
            top: 0px;
            margin-top:60px;
        }
    }
    
    @media only screen and (min-width: 768px) {
        .responsive #top .woocommerce-ordering {
            position: relative;
            float: left;
            clear: both;
            margin: 0;
            padding-bottom: 15px;
            padding-top: 15px;
            top: 0px;
            margin-top:0px;
        }
    }
    
    #top.woocommerce-page .woocommerce-ordering select {
    width: 100%;
    font-size:16px;
    padding: 8px;
    line-height: 1.2em;
    }
    • This reply was modified 1 year, 4 months ago by thinkjarvis.
    dmansouri1981
    Participant

    hi guys. my website is about tourist attractions and destinations and I want the user to select country and city and even attraction types(waterfall or jungle or beach etc…. based on tags). for search by Category, Tag, Custom Taxonomy, Post Type, Post Date or any combination of these is possible in Enfold? or I must use plugins? I want users to see this search result on the Home page and blog post sidebars or wherever I need it. thanks

    #1467664
    elenagrassi
    Participant

    Hello!

    I would love to be able to add hyphenation to (Italian) texts on my website as there is a lot of spacing between words on mobile in justified text and I don’t like to use aligned text.

    I have already searched through topics, found some threads about this but haven’t really understood what the best solution is. Some sounded pretty complicated. Some mention the plugin Hyphenator, which is not available anymore. I am pretty sure I had an hyphenation option on the Avia builder in a previous Enfold website I had, which had been created by a professional, and I do not know how he did that.

    Any advice?
    Thank you
    Elena

    #1467314
    bleistift
    Participant

    Hi Forum & Enfold-Team,
    I have implemented the contact form and the math question and conditions checkbox are mandatory. Now I am receiving spam messages with the checkbox unchecked. On the mail it says “I have read and understood your reasonable terms: false”.

    How can I prevent receiving spam like this? Why can mails be sent if the terms are marked with “false” – in my understanding the checkbox is not accepted in this way?
    I cannot see whether the mathematical problem has really been solved.

    Can someone read out the e-mail address to which the e-mail was sent? Do I have to implement Google reCAPTCHA?

    Many thanks!
    Kind regards,
    bleistift
    P.S.: I did some research on reCAPTCHA. It seams that it needs a lot of java traffic. Do you have any experiences with the plugin https://dineshkarki.com.np/buy-wp-armour-extended instead?

    • This topic was modified 1 year, 5 months ago by bleistift.
    • This topic was modified 1 year, 5 months ago by bleistift.
    #1467178

    The Ajax search shows only a few results. The results are displayed in a certain order (newest; page order …); Your search term is on a page that is older than the pages shown.
    The number – how many results are displayed – is set to 5 by default in Enfold. This makes sense for the normal placement at the top inside main menu. Where you have the search, you might want to increase this a little.

    Incidentally, if you only want to display pages (or posts) there, you could also restrict this to these post types.

    Put this to your child-theme functions.php :

    function avf_modify_ajax_search_query($search_parameters){
      parse_str($search_parameters, $params);
      $params['numberposts'] = 10;
      $search_parameters = http_build_query($params);
      return $search_parameters;
    }
    add_filter('avf_ajax_search_query', 'avf_modify_ajax_search_query', 10, 1);
    #1467175

    Topic: Indexing Issue

    in forum Enfold
    Annedesign
    Participant

    Hi,

    This note from my marketing colleague:
    in our client sites that we manage we are noticing some Enfold entries in their Google Search Console. Most entries are related to (1) soft 404s and (2) canonical issues. There are a number of entries like this across many of our other clients’ sites, all using Enfold. Please see the screen shot linked here with 1x example. https://paste.pics/f1541bffbf80fd217b530b3832afe6ae

    Can you please advise if there is a solution for Google to not to report these, so that it behaves similar to other sites that we manage which are not on Enfold.

    Additional information for you to be aware of, is that all our websites are hosted by the same provider on servers with the exact same sever configuration.

    Thanks – we look forward to hearing from you.

    #1466096

    Hi,

    Thank you for using Enfold and reporting this.

    First issue:

    We are working on a fix to ignore s=…. for all pages that are not the search page. Will be in the next Release 6.0.4.

    Second issue:

    The warning you mention is in a file that was used with the old Envato update API < 3.0 and is deprecated. If you have entered an "Envato private token" it should not be loaded at all. But we will remove it in next release 6.0.4. Best regards, Günter

    #1466007

    Hi,
    To disable it, open js/avia.js go to line 90 and comment it like this:

    // new $.AviaAjaxSearch({scope:'#header, .avia_search_element'});

    then disable both Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and enable Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files Then clear your browser cache and any cache plugin a few times, and check.
    Please remember that clearing javascript files can take a few tries. I tested this and it works to remove the ajax function:
    Screen Shot 2024 09 01 at 12.57.32 PM

    Best regards,
    Mike

    Robert Massart
    Guest

    Noted problem paging after searching with expressions that contain one of these words:
    jpg, jpeg, gif or png

    To reproduce go to:

    https://kriesi.at/themes/enfold-2017/?s=jpg

    search on ‘jpg’

    Go to bottom of page and try to navigate to page 2,

    instead of going to page 2, it attempts to load on image in a light box.

    #1465720
    Rob – Press Wizards
    Guest

    From WordFence:
    Enfold <= 6.0.3 – Authenticated (Contributor+) Stored Cross-Site Scripting via wrapper_class and class Parameters
    Description

    The Enfold – Responsive Multi-Purpose Theme theme for WordPress is vulnerable to Stored Cross-Site Scripting via the ‘wrapper_class’ and ‘class’ parameters in all versions up to, and including, 6.0.3 due to insufficient input sanitization and output escaping. This makes it possible for authenticated attackers, with Contributor-level access and above, to inject arbitrary web scripts in pages that will execute whenever a user accesses an injected page.

    Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’)
    CVSS VectorCVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:L/I:L/A:N
    CVE CVE-2024-5061
    CVSS 6.4 (Medium)
    Publicly Published August 29, 2024
    Last Updated August 29, 2024
    Researcher stealthcopter

    See: https://www.wordfence.com/threat-intel/vulnerabilities/wordpress-themes/enfold/enfold-603-authenticated-contributor-stored-cross-site-scripting-via-wrapper-class-and-class-parameters

    #1465692

    Hi,
    When I check your site at 1536 x 864, that you wrote was your screen size, but I don’t see the menu over the logo:
    Enfold Support 6472
    To switch the two icons try this css

    .av-burger-menu-main.menu-item-avia-special {
    	  top: -120px;
    }
    #menu-item-search {
    	top: 100px;
    }

    You can also adjust the values and perhaps keep the icons away from the logo

    Best regards,
    Mike

    #1465641

    Hey williamslyd,

    Thank you for the inquiry.

    You can turn off the AJAX search by toggling the Append Search Icon To Main Menu option in the Enfold > Main Menu panel. Let us know how it goes.

    Best regards,
    Ismael

    #1465628

    Hey CityCollege,

    Thank you for the inquiry.

    1.) Why do you need the search query string on your pages? This is a special parameter that can only be used on the root page of the site. All other query parameters should work for other pages. Example:

    https://kriesi.at/themes/enfold-2017?s=test
    

    For other pages:

    https://kriesi.at/themes/enfold-2017/pages/pricing/?test=test
    

    2.) Where do you see this warning? You can temporarily hide it by setting the WP_DEBUG_DISPLAY to false.

    Best regards,
    Ismael

    #1465593
    CityCollege
    Participant

    We got two issues when doing random security check:
    I. When using a search query string in a page, it returns 404 – this should not be the correct behavior. i.e (reproduced on your demo link below)
    https://kriesi.at/themes/enfold-2017/pages/pricing/?s=test
    2. The second one is the following error: Warning: Attempt to read property “item_id” on int in /code/wp-content/themes/enfold/framework/php/auto-updates/class-pixelentity-theme-update.php on line 93
    Our theme is latest version! (6.0.3) and the envato private token was revalidated and shows no issues.

    forestbuzz
    Participant

    Hi Support,

    Three(3) of my sites broke yesterday! Had to revert PHP 8.2 back to 8.1.29 to get the errors to go away.

    They are all updated to the latest Enfold version of 5.6.5. (WP 6.6.1).

    Here are examples of two of the site error messages. Please help, I am not a developer or programmer, a novice.

    Errors:
    Website: WhyCookAlameda.com
    Deprecated: Creation of dynamic property Avia_Popup_Templates::$resp_sizes_options is deprecated in /home/customer/www/whycookalameda.com/public_html/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 65

    Deprecated: Creation of dynamic property Avia_Popup_Templates::$resp_titles is deprecated in /home/customer/www/whycookalameda.com/public_html/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 81

    Warning: Cannot modify header information – headers already sent by (output started at /home/customer/www/whycookalameda.com/public_html/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php:65) in /home/customer/www/whycookalameda.com/public_html/wp-includes/pluggable.php on line 1093

    Website: Excalibersearch.com
    Deprecated: Creation of dynamic property Avia_Popup_Templates::$resp_sizes_options is deprecated in /home/customer/www/excalibursearch.com/public_html/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 65

    Deprecated: Creation of dynamic property Avia_Popup_Templates::$resp_titles is deprecated in /home/customer/www/excalibursearch.com/public_html/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 81

    Deprecated: Creation of dynamic property avia_slideshow::$service is deprecated in /home/customer/www/excalibursearch.com/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcode-helpers/class-avia-slideshow.php on line 800

    Again, please help. I have given you access in the private section.

    #1465195

    In reply to: Site Logo issue

    Hi,

    If you don’t want to manually create your own logo, you can also search Google for a logo creator or maker. There are many online tools that automate the creation of logos and only require your registration. After creating the logo, you can upload it to the site by going to the Enfold > Theme Options > Logo settings. Let us know if you need more assistance.

    Best regards,
    Ismael

    #1464932
    steve3434
    Participant

    Hello,

    I’m trying to replicate the three blue boxes on the home page of your medical theme. The blue boxes read Departments, Medical Services, Research. How do you add left and right padding? Also, how do you overlap the hero with the three blue boxes? Here is the link to the theme I’m referring to.
    LINK

    Thanks for your help,

    Steve

    #1464640

    Hi,
    To show the search icon on the desktop menu try enabling Enfold Theme Options ▸ Main Menu ▸ General ▸ Append search icon to main menu
    I can’t see your images as they require a login, to add a screenshot please try using an Screenshot service and pasting the image URL in your post.

    Best regards,
    Mike

    #1464557
    SHR Design
    Participant

    Hi

    NB!
    Even though a Media Library image is defined as Norwegian or English we need to have access to ALL images for ALL posts and pages. As the same images is used for both languages.

    Today they are not.

    ————–

    I have come across what seems like a bug.
    In a pages and posts inserting an image only 32 images of the 230 images that are in the Media Library is seen. (I am not sure if this is also impacting WooCommerce product pages.) This is forcing the customer to reupload images to the Media Library to be able to use the correct images.

    I have deactivated various plugins and noticed that Polylang language plugin and Enfold is causing this error.
    I have also tried with the default WordPress theme of Twenty Twenty Four and all images were seen. So this seems limited to Enfold.

    I made a search and came across this older issue from 2015 which is similar and it seems WPML is causing the error there.

    Some exploration. Default language is Norwegian. Secondary language is English.
    English page: https://industrihuset.no/en/heatingdrying-heatingcabinets-co2-incubators/
    In the backend. Clicking to edit where the Memert image is seen. Then clicking to insert image. I noticed only 37 images from the Media Library.
    Norwegian page: https://industrihuset.no/varmeskap-co2-inkubator/
    Here 126 images are seen of the 230 images that are available.

    We need to have all images available for all posts and pages independent of language used.

    • This topic was modified 1 year, 6 months ago by SHR Design. Reason: Adjusting
    • This topic was modified 1 year, 6 months ago by SHR Design.
    #1464166

    Topic: Title page font color

    in forum Enfold
    Bruno
    Participant

    Hi. I can’t change the title color of the pages, it keeps being white.

    https://ibb.co/4sg5qdv

    I have also searched in the css but I can’t find any “forcing”. Would you be so kind as to show me where to find, in the Enfold panel, the setup for the page title color? Thank you for your support. Best regards. Bruno

    #1464073

    Dear Günni, my answer wasn’t meant cynical or snarky at all! I tried to say it with humor, but I obviously failed. So it’s me to apologise. Serious: I am no coder. All of my very minor knowledge of CSS is coming from this forum or other websites. To be clear: If I got a problem designing a website (and I mostly use Enfold) I search for a solution in this forum here. Sometimes I combine the hints given here with some from other forums or websites – and all of this combined mostly does the job for me.
    So to be clear: My last comment was meant as a kind of bow to you and people like you, who continuously post suggestions and helpful snippets in here without receiving a cent for it. And it should say something like that (now said without trying to be funny): “I don’t have any idea if my workaround with the box-shadow is appropriate – and if it is not, I would be thankful for a hint from a experienced Forum Member like Günni is.”

    #1463902

    In reply to: Info template

    Hey Mariarita,

    Thank you for the inquiry.

    1.) To create a megamenu, please go to the Appearance > Menus panel, add a new link, then toggle the “Use as a Mega Menu” option. Please check the link below for more info.

    // https://kriesi.at/documentation/enfold/mega-menu/#how-to-use-the-mega-menu

    2.) In order to lower the logo, add this css code:

    .logo img, .logo svg {
        top: 20px;
    }
    

    3.) And to remove the description from the menu, please edit the menu item in the Appearance > Menus panel, then look for the description field.

    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

    #1463830

    PS : did you switch in this moment to hamburger from the beginning – a few minutes ago – there was the normal desktop navigation seen.?

    PPS: i see now the reason – you have a switch rule for 2000px – my recommendation is to only have hamburger for your navigation:
    Enfold Options – Main Menu – Menu Items For Desktop : “Display as Icon”

    and remove then the rules concerning to that switch point.

    After doing this we will see if the problem is solved so far. because your rules do set all menu items to display none – even the #menu-item-search

    #1463763

    Yes, very true!

    I am concerned with search menu on flyout, when you click on hamburger icon.
    There IS no search icon on the flyout.

    If I change back to Enfold theme itself, I see a search icon on flyout, so assume that is default? OR there is some handy-dandy option that I’m no choosing?

    #1463759
    CharlieTh
    Participant

    Think I may have gotten too complex (for me!) and I can’t seem to “find” the flyout icon. I have one on desktop view…but not in hamburger.
    To test, I HAD turned off my child theme and just put on the wonderful Enfold…and voila! The search icon appeared in the flyout.
    But it disappears now when I have child theme in place.
    Could you take a look and see where I have taken a wrong turn? I tried to make mobile the always menu…
    Thanks!

    Oh yes, the site url! https://calvarybaptistdunnellon.com

    #1463745

    thanks: didn’t know about that extra filter in portfolio registration

    did you try
    for ajax search ( thats the menu search) :

    function avf_ajax_search_query_mod( $search_parameters ){
      $defaults = array(
        'numberposts' => 5, 
        'post_type' => array( 'page', 'post' ), 
        '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;
    }
    add_filter('avf_ajax_search_query', 'avf_ajax_search_query_mod', 10, 1);

    and in addition for search resultspage :

    function post_types_for_search_results($query) {
      if ( !$query->is_admin && $query->is_search) {
        $query->set('post_type', array('page','post') );
        $query->set('post_status', array( 'publish' ) );
      }
      return $query;
    }
    add_filter( 'pre_get_posts', 'post_types_for_search_results' );

    In this case, your code snippet would be unnecessary.
    btw: because of new cpt support in enfold – there is a similar filter for any other cpt: avf_custom_elements_cpt_args – maybe it is possible to use it for specific post-types ( portfolio, product, etc. to have that analog to your code snippet.

Viewing 30 results - 181 through 210 (of 7,486 total)