Viewing 30 results - 2,011 through 2,040 (of 7,495 total)
  • Author
    Search Results
  • #1113206

    Hi support.

    I contacted both Envato support and the support from the host (Dandomain) of the website. Envato didnt get back, but Dandomain. I here translate their answer from Danish. Does this help you.
    Thanks / Jørn

    “Hi Jørn

    I have looked at it with a colleague, and from the log files we can see that the page is looking for a folder under the theme that does not exist.
    A folder called enfold is searched for within the folders folder, and it does not exist.

    Maybe the developers on the theme can see which files are failing from the log files? You can find them in FTP in the root directory.

    You can also retrieve log files yourself if you have made changes and want to see if there are still errors. You can access it through your Dandomain control panel.

    I hope this gets you closer to getting the problem fixed.

    Sincerely”

    #1113117

    Hi,

    Thanks for the clarification. Please try the following in Quick CSS under Enfold->General Styling:

    #searchform input[type=submit] {
        font-size: 13px;
        padding: 15px 25px;
        border-radius: 2px;
    }
    
    #searchform input[type=submit]:hover {
        background-color: #055c84;
        opacity: 0.9;
    }

    Best regards,
    Rikard

    Hey madsonic,

    Thank you for using Enfold.

    You have to re-initialize the toggles after the AJAX request or after the toggler in the search results load.

     //activates the toggle shortcode
    if($.fn.avia_sc_toggle)
    {
        $('.togglecontainer', container).avia_sc_toggle();
    }
    

    Just add that inside the complete or success AJAX callback.

    Best regards,
    Ismael

    This reply has been marked as private.
    #1112840

    Hello Ismael! I activated ” Search Everything ” after the comment from Basilis, but now I deactivated it again since I realized that the custom search does not work when it is activated. Now you can access https://www.guttogjente.no/?s=359017
    I updated my reply from June 13, 2019 at 4:53 am, where I meant to write that the former developer had changed the code to:
    $defaults = array('numberposts' => 5, 'post_type' => array('post','Ordliste'), 'post_password' => '', );
    I refer to that post again to see how I modified the code based on comparing with the latest Enfold code.
    ‘Ordliste’ is another custom post category, so it seems like it first handles the normal cases where no password is needed and all posts shall be displayed? It is only for q_a that some posts are private so code is needed. For all other post types (standard posts and ‘Ordliste’ they are always visible.

    #1112728

    Hi,
    Perhaps this solution will work for you, this function adds the search bar to the menu and the css hides the ajax search icon.
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    add_filter( 'wp_nav_menu_items', 'avia_append_search_side_nav', 10, 2 );
    function avia_append_search_side_nav( $items, $args )
    {
    	if (is_object($args) && $args->theme_location == 'avia')
    	{
    		global $avia_config;
    		ob_start();
    		get_search_form();
    		$form = ob_get_clean();
    
    		$items .= '<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown">'.$form.' </li>';
    	}
    	return $items;
    }

    then add this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top .menu-item #searchform {
        top: 26px;
        position: relative;
    }
    
    #top #searchform > div {
        opacity: 1 !important;
        display: block !important;
    }
    #menu-item-search.menu-item-avia-special {
    display: none !important;
    }

    This is the result I got on my localhost:
    2019-06-23-125816
    To answer your question, the code above can be found at line 134 in functions-enfold.php

    Best regards,
    Mike

    madsonic
    Participant

    Hi, i am building a custom search with toolset.
    I use the Enfold Accordion for the results (not with shortcodes).

    This is my loop:

    <section class="av_toggle_section" itemscope="itemscope" itemtype="https://schema.org/CreativeWork">    <div class="single_toggle" data-tags="{Alle} ">        <p data-fake-id="#toggle-id-[tssnippet-loop-iteration]" class="toggler " itemprop="headline">[wpv-post-title]<span class="toggle_icon">        <span class="vert_icon"></span><span class="hor_icon"></span></span></p>
      <div id="toggle-id-[tssnippet-loop-iteration]-container" class="toggle_wrap" style="display: block;"><div class="toggle_content invers-color " itemprop="text">
    <h3>[wpv-post-link]</h3>
        
    <p class="seminarkurztext">[wpv-post-excerpt]</p></br>
    <p><strong>Seminar-Art:</strong> [wpv-post-taxonomy type="seminar-arten" format="name"]</p>
    <p><strong>Kategorien:</strong> <span class="seminarkategorien">[wpv-post-taxonomy type="seminar-kategorie" format="name"]</span></p>
    [wpv-conditional if="( $(price) ne '' )"]<p><strong>Teilnahmegebühr:</strong> <span class="seminarpreis">[types field="price"][/types] €</span>[/wpv-conditional]</div></div>
    </div></section>

    it is working really good. But when i do an Ajax-Search on this loop, the results – Toggles won’t open when clicked. They do nothing.

    There is no Error in the console, the syntax of the source is also absolutely correct. When i reload the page, the toggles work like expected. I guess there is a compiling of the toggles? I worked on it the whole day … I could not figure it out.

    Any idea how i can solve this, without renouncing Ajax functionality?

    #1112565

    It’s too complicated for me I’m afraid :( I’m not a PHP codde ;( I don’t know what to do one the google_maps.php… Any instruction?

    I did : “Search for maptype_id and below it you should see the list of map types.”

    And indeed I have this :

    “name” => __( “Choose initial map view”, ‘avia_framework’ ),
    “desc” => __( “Choose the initial map view after loading the map”, ‘avia_framework’ ),
    “id” => “maptype_id”,
    “type” => “select”,
    “std” => ”,
    “subtype” => array(
    __( ‘Roadmap’, ‘avia_framework’ ) => ”,
    __( ‘Hybrid’, ‘avia_framework’ ) => ‘HYBRID’,
    __( ‘Satellite’, ‘avia_framework’ ) => ‘SATELLITE’,
    __( ‘Terrain’, ‘avia_framework’ ) => ‘TERRAIN’,

    I tried to invert things but don’t works :(

    Why we simple chose the type map on the option ? Could you send me the modified file please? My customer don’t want the Roadmap type, he want the hybrid type…

    That could be a must have option to have this on the Enfold setting.

    #1112024

    Hi webmasterynl,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    @media only screen and (min-width: 768px) and (max-width: 1100px) {
      nav.main_menu, #menu-item-search {
        display: block !important;
      }
      .menu-item {
        display: none;
      }
      .av-burger-menu-main.menu-item-avia-special {
        display: block;
      }
      #header_main_alternate {
        display: none;
      }
      .html_header_top.html_header_topbar_active.html_header_sticky.html_large.html_bottom_nav_header #top #main {
        padding-top: 170px;
      }
      .responsive  .header-scrolled .logo {
        margin-top: -5px;
      }
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1111969

    Hi Cthulhus,

    You will need to modify google_maps.php file, located in wp-content > themes > enfold > config-templatebuilder > avia-shortcodes > google_maps folder.
    Search for maptype_id and below it you should see the list of map types.

    In order for the change to be permanent you’ll need to follow this instruction: https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb

    Best regards,
    Nikko

    #1111788

    In reply to: Font upload issue

    Hi,
    Thanks for the login, I see that your default color for the “strong” tag is red, while you can change this in your Enfold Theme Options > Advanced Styling > Strong I will assume that there are cases on your site that you wish to continue with this color scheme. So please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .avia-image-container strong {
    color: #fff !important;
    }

    This will give you the white color on this element.
    Each of the titles are “strong” but I don’t see your COMMUNITY & CONNECTIONS title to see if it’s also “strong” is this on a different page? I searched your pages but didn’t find that title.

    Best regards,
    Mike

    lucky19
    Participant

    Hello,

    I have a weird issue that I’ve never encountered before.

    I have links within the code of my pages which are old/outdated and I cannot figure out where to change them within Enfold’s infrastructure. I tried using Better Search and Replace plugin but it didn’t find any of the links.

    I’ve included the specific information in the private content section of this thread. I just need to know where I can go to fix/edit/replace the links with the active ones.

    It’s throwing off my performance and SEO results. Thanks for your help!

    #1111427

    With the solution on this thread which is linked in your linked thread:
    https://kriesi.at/support/topic/adding-search-bar-to-header-cant-find-enfoldincludes-folder/#post-476685

    It looks like this on my stage version:

    Two wrong things with this solution, maybe you have fixes for me?
    #1 It doesnt replace the current “pop up-searchbox” (look at the magnifying glass at the right side of the main menu)
    #2 The added search box isnt in the main menu div – it was integrated right after the “header_main”-div which you can see in the screenshot. I need it at the right side of my main menu which shows you the screenshot in my first post.

    Can you help me?

    some words to that plugin. Seems to be a good one. But:
    ask the developer if it is compatible with Enfold – or search the internet for some hints if it is working with enfold.
    This plugin – does it work with its own lightbox script. Can you use both lightbox (magnific popup from Dmitry Semenov) and that of your plugin?
    Etc pp.

    ;)

    https://enviragallery.com/docs/enfold-theme-enviras-automatic-gallery/

    #1110805
    This reply has been marked as private.
    MCGWebmaster
    Participant

    Hi – On a homepage only (not the other pages of the website), I wanted to create a section above the menu bar. Once the user scrolls down and reaches the menu bar, the menu bar stays at the top while the user continues to scroll down below. I believe I have to create a widget, but can anyone please either direct me on instructions how to do this or recommend a plugin that works with Enfold, that can be used to create this? We also want to put a button at the top of this section (above the menu bar) but we want the button to go to our Contact Us page. I will put the link to our website and the website we are trying to emulate below. I have been searching for the answer to this but don’t see it, so I wanted to ask Support. THANK YOU as always for being the rock stars you are!!! Much appreciated.

    • This topic was modified 6 years, 9 months ago by MCGWebmaster. Reason: Title change
    Takara22
    Participant

    I’ve been pulling my hair out trying to figure out why my google traffic took a nose dive a couple of months ago. Sadly, I just noticed. Anyway, I decided to do some online scans for malware thinking maybe I’d been hacked. The scanners can’t read the website. I tried 3 of them. Plus I ran the google scan of “is my site mobile friendly.” That couldn’t read my website either. I had my hosting company check into it and they discovered that if I switched themes to something other than Enfold, it fixed the problem. I find that deeply disturbing as I’ve used your theme for years and have 5 or so client websites using it too. I tried a few things myself:
    1) disabling all plugins – didn’t fix the problem so enabled them again
    2) switched to a default wordpress theme – fixed the problem.

    I did think of this as a potential issue: Like I said, I have several websites running Enfold and I’ve purchased Enfold for each of them. However, some time back you did an update that required us to download and upload the theme again. Since I have no idea which copy of Enfold in my downloads screen on ThemeForest I used on the various websites, I’m pretty sure I used the latest one for all of them. Perhaps the verification code (because it was duplicated) caused something to not work right … perhaps some sort of security measure on your end.?????

    I’ve been online for years. Website traffic means a LOT to me and my business. This issue desperately needs to be fixed. HELP!!!!

    #1110271

    Not using Yoast. I tried WP Date Remover with no success.

    Maybe it is easier to remove the date from Enfold itself? That way there is no date and that’s it.

    Any suggestions? I really need to remove dates from search engines results.

    Thanks.

    studiovene
    Participant

    When creating an Envato personal token, there is a long list of permissions needed. One is selected by default – View and search Envato sites. Please advise on the minimum requirements for validating successfully on my Enfold theme.

    Thanks
    :-)

    #1110156
    terra3110
    Participant

    Hi,

    The AVIA Layout Builder disappeared in the last days.

    I can still see and edit existing pages and elements, but I cannot add a new one. See Screenshot here:
    https://www.dropbox.com/s/mplepoht6yfrkuy/Editor1.png?dl=0

    Using WordPress 5.2.1 since release. It was working until some days ago. I am running Php 5.6.0 on Ubuntu 16, but as I mentioned. It was working all the time.

    I tried already the following:

    – Disabling all Plugins (Deleting of all Caches) to check, it is not a side-effect of a Plugin
    – Disabling CDN, in case it is related to the CDN
    – Check Debugger in Safari and Firefox, if anything is not loading (not the case)
    – Check Apache Error Logfile for any errors (none)
    – Disabling Gutenberg, Install Classic Editor and going back (no effect)

    Did research via Google and the Enfold Community. It seems the problem shows up with others in earlier years too and I tried different responses including:

    (Nothing to uncomment, seems not to be related).

    (No effect)

    (No effect)

    No idea, where I have to look anymore.

    Frank

    • This topic was modified 6 years, 9 months ago by terra3110.
    #1109957

    Hey Ritchie,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    CSS Snippet:

    
    #top #searchform .ajax_search_response {
        background-color: white;
    }
    
    

    Best regards,
    Yigit

    #1109669

    Hello Ismael!
    I definitely agree that the best solution would have been to get i touch with the previous developer. As I mentioned earlier in this tread, I also tried to contact the company who made the webpage, but the company had changed and they could no longer help me. Our webpage is mostly run by me and another volunteers to answer questions from youths, which they ask anonymously. They do not leave any contact information in the Gravity Form, but get a 6-digit code in the confirmation message that is generated automatically (this coding I managed to add successfully). On submission, a draft of a custom post type with their question and the code is automatically generated. The custom post type is made with the plugins CPT UI and contains Advanced Custom Fields (ACF) .One ACF is “status” that can be set to either “public” or “private”. Later, they can check their answer by searching for that code. If the answer is not suitable for being public, because it contains private information that can be tracked back to the person, it is made private so only the person with the code can view it. Therefore, we can not use the built in “private” function in WordPress.”

    If you have other solutions to achieve the same functionality I appreciate your suggestions.

    Except for in one sentence, I did not modify the code, I just pasted the old modifications to the code in between the existing code where it had been before.

    One change that I suspect could make the code above break down is that Enfold 2.4.1 had:
    $defaults = array('numberposts' => 5, 'post_type' => 'any', 'post_status' => 'publish', 'post_password' => '', 'suppress_filters' => false);
    which the former developer modified to:
    $defaults = array('numberposts' => 5, 'post_type' => array('post','Ordliste'), 'post_password' => '', );
    The latest Enfold had:
    $defaults = array('numberposts' => 5, 'post_type' => 'any', 'post_status' => 'publish', 'post_password' => '', 'suppress_filters' => false, 'results_hide_fields' => '');
    So I tried to combine the latest version and the modification to:
    $defaults = array('numberposts' => 5, 'post_type' => array('post','Ordliste'), 'post_password' => '', 'suppress_filters' => false, 'results_hide_fields' => '');

    Also, I noticed that this is an “if”-sentence without any “else”-argument.

    #1108999
    mickfollari
    Participant

    Hi guys,
    For a client, I need to edit the magnific pop up so that it will show the image ‘caption’ as saved in the WP Media) in addition to the title. I have researched it at length and not found something that works, at least now in 2019. I know that in the new Enfold there is avia-snippet-lightbox.js and in there you grab the ‘title’ attribute. However, I can’t get the Alt Text, nor the Caption nor anything else like it, because I think that stuff is just not being written to the page at all. Here is the inspected Masonry Gallery: https://www.screencast.com/t/WhH0gj4m, there is only the Title being written, nowhere is there any alt text or caption (this image has both specified in the WP Media). I experimented with various things in the JS file, and was able to get the ID since I knew at least that was being written out. https://www.screencast.com/t/C5Bh6ilv

    For the life of me I can’t find the HTML output for the masonry gallery on the page. I scoured all the files I thought it would be. My plan is to adjust the HTML output to include the Alt, Caption and maybe even Description attributes so they are available to that JS file.

    Thanks
    Mick

    Hi,

    I don’t have the budget for it though.

    Moving to a child theme is quite easy, so there’s no need to hire someone else. Just follow the instructions in the documentation.

    // https://kriesi.at/documentation/enfold/child-theme/#how-to-install-the-child-theme

    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

    #1108744

    Hi guttogjente,

    If you’re using the latest version of Enfold, I would suggest #3 and then tweak it, with some modifications made by the dev in #2, it would be easier to track the modified code since you have the original version of the file in 2.4.1.

    As for modifying the content, just place the modified if(!function_exists(‘avia_ajax_search’)) in the functions.php of your child and it should work, and then for your own functions, just place it also in functions.php of your child theme. The child theme’s functions.php is designed that it won’t replace the functions.php of your parent theme but it just adds to it (you’ll notice this if you have a child theme with nothing in functions.php yet you can still use the functions in the parent’s functions.php).

    Best regards,
    Nikko

    #1108672

    Yes, I have the header.php under my child theme, and I have not made any changes to the header file. I use the child style sheet for custom css, and the functions file for customization. But I don’t add any “updates” in these files. What do I need to do in the header file (under my child theme) to update it? When I update Enfold, doesn’t it take care of all the updates needed for the theme? I should i be doing other updates elsewhere? Does this have something to do with changing the Yoast to “YES” in the search appearance/media section? Thanks!

    #1108556

    The problem now is that I have three versions of the content in if(!function_exists(‘avia_ajax_search’)) in functions-enfold.php, which makes it difficult to compare them and know what to keep and what to delete:
    1) The orginial from version 2.4.1
    2) The modified version 2.4.1 with custom code added by the person why made my webpage
    3) The newest version of functions-enfold.php from the current Enfold theme

    I see there have been some modifications in of the content in if(!function_exists(‘avia_ajax_search’)) from version 2.4.1 to the latest Enfold version. Do you think it might work to simply replace the content in if(!function_exists(‘avia_ajax_search’)) in functions-enfold.php in my child theme with the version that the person who made my webpage some years ago created? Or do I need to compare it with the changes in the newest version of Enfold as well?

    If I only want to modify the content in if(!function_exists(‘avia_ajax_search’)) in functions-enfold.php, do I only include that part in my child theme functions-enfold.php or should I include all the contact from the functions-enfold.php in my child theme as well? For functions.php I see that I only include my own functions in the child theme, so this file does not replace functions.php in the original theme files but just add on to it?

    • This reply was modified 6 years, 9 months ago by guttogjente.
    #1108436
    peterolle
    Participant

    How can I remove portfolio items from enfold search results?

    I have 100 portfolio items linking to an actual post. So having 2 results for each thing is not good, I just need the actual post with all the information.

    Thanks.

    #1108250

    That removes everything.

    I need to remove dates from enfold itself, so posts have no date in search results.

    How can I do that?

    Thanks.

    #1107575

    You are right, that selection should be deselected if someone chooses “No custom 404 page selected”.

    Regarding your question:
    Sure you can without a plugin … when you choose the Enfold 404 option “Redirect to selected page” it’s the same as with the plugin you mentioned.

    BUT:

    Short version:
    => You shouldn’t redirect all 404 error to the home page.
    Why would you do that? A visitor, who tries to open a page on your site, that doesn’t exist … and you just whop him to the front door? … Tell him what’s wrong on a dedicated error page and which possibilities are there (“sorry, we couldn’t find what you are looking for, maybe you wan’t go this way or search or something …”).

    Long version:
    => https://yoast.com/seo-anti-patterns-301-redirect-all-your-404s-to-your-homepage/

    “Sometimes I encounter new “SEO hacks” that people apply, that are actually anti-patterns. One of these new anti-patterns I noticed is the pattern of 301 redirecting all your 404 pages to your homepage. Let me explain why this is a lot like cleaning up your room by throwing everything into a drawer and what the better solution would be.”

Viewing 30 results - 2,011 through 2,040 (of 7,495 total)