Viewing 30 results - 2,011 through 2,040 (of 7,502 total)
  • Author
    Search Results
  • #1113885
    #1113819

    Hello Ismael!
    I have added a PHP-file in the private content (zipped it to upload it in WordPress) which contains what I added to functions PHP with a clearer commenting of what the developer added, so it is easier for you to read the code. I meant to say that “Ordliste” is another custom post TYPE, (not category). I tried to change it to “any” and I also tried to replace that line with the default Enfold-code, but my site shows “Techical problem” if I try a search when the code from the attached PHP-file is added to my functions.php (you my try and log in and add the code to functions.php and see).

    Can it have to do with what Nikko pointed out in the first reply in this thread, where he wrote “header-q_a.php will not be called”?

    #1113625

    the page went totally white :

    1. i change the enfold-child folder name to enfold-child2
    2. enter to my site as admin and it worked but without the custom styles
    3. change enfold-child2 folder name to enfold-child again. Te pages recovers it’s styles
    4. when i enter as admin i go to pages and search for a page.the site goes white again (backend) the front end seems fine.
    5. two days later the whole site goes white again and i have to start changin the child’s theme folder name all over again

    I hope you can give me a hint of what could be happening

    logerber
    Participant

    Hi Team,

    I added the domain-property to the google search console.
    When i want to index the homepage it says: crwaling 404 not found.
    However, i can index ANY other site expect of the homepage

    So far i found out it happens because in the enfold settings i have “redirect 404 sites to the following site: startseite”
    this causes the issue. However, i want that 404 sites are getting redirected to the homepage but it is important to get this site indexed.

    how should we proceed?
    Please be aware: The old website is still on google. so if you search “restaurant buck” you will get the old links.

    #1113373

    Hey bimsenfold,

    Here is the piece of code in the loop-search.php that you can edit and put whatever you need in there.
    Screen Shot 2019-06-25 at 21.52.01.jpg

    Best regards,
    Victoria

    Hey shinseul,

    How did you add the search form to the header?

    Please, have a look at the thread here
    https://kriesi.at/support/topic/adding-search-bar-to-header-cant-find-enfoldincludes-folder/#post-476871

    Best regards,
    Victoria

    Hi and thanks for your reply.
    I should ask if we can allow access from external.

    Anyways, after some further research i found out that i can use a filter to change the Masonry query to get posts.
    For others looking for the same hook here it is:
    avia_masonry_entries_query
    and here‘s how to use it, under the Change the sort order of Masonry Elements section.
    (Just be careful because you’d need some conditionals to allow the different sorting only for some specific Masonry in your site).

    But i guess the problem remains: why the backend settings are not respected so that we should use a filter?

    Don’t know if the documentation page i mentioned is old, but surely is gold :)

    #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, 10 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, 10 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

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