Viewing 30 results - 5,731 through 5,760 (of 244,367 total)
  • Author
    Search Results
  • #1468153

    Hey whdsolutions,

    Please try the following in Quick CSS under Enfold->General Styling:

    .html_header_top.html_main_nav_header #top .av_menu_left .main_menu, .html_header_top.html_main_nav_header #top .av_menu_left .main_menu .av-main-nav-wrap {
      width: 100%;
    }
    
    #top #header .av-main-nav > li {
      width: 25%;
    }

    Best regards,
    Rikard

    #1468150

    Ups¡¡ Wait a minute ;)

    I copy template-builder.php as template-builder-single.php and in the new file I write the name:

    <?php
    /*
    	 Template Name: Single ABL
    */

    In which folder will I save the new file, for this will appear in the Template List Selector on the Post Page?
    I copied in my enfold-child (root) and not appear, neither in enfold-child/includes ;(
    Thanks.

    #1468136

    In reply to: Translation with WPML

    Hey Flipper5183,

    Thank you for the inquiry.

    How did you translate the page? Please note that when translating pages built using the Advanced Layout Builder (ALB), you should avoid duplicating the pages and instead use the WPML Translation Editor. Please check the links below for more info.

    // https://wpml.org/tutorials/2016/02/enfold-theme-and-wpml/
    // https://kriesi.at/documentation/enfold/translation/

    Best regards,
    Ismael

    #1468128
    dameonjamie
    Participant

    My website is painfully slow. I can no longer ignore it. I’m at the point where I am considering swapping over to Shopify.

    I am going to provide you with a login so that you can see what is going on, hopefully find the problem, and offer solutions. I use caches, CDNs, etc. I’m not an expert, I need things to work without getting a doctorate in website engineering.

    https://www.wildsugar.fashion

    I have used Enfold for many years, and my other websites run fine. It just seems to be this one that is struggling.

    • This topic was modified 1 year, 5 months ago by dameonjamie. Reason: proofing
    • This topic was modified 1 year, 5 months ago by dameonjamie.
    #1468127
    digitalt20
    Participant

    Hi team, thanks in advance.

    I just copied single.php from ENFOLD folder to ENFOLD-CHILD folder as phb-tbwa-single-post.php and in the top of php i write:

    <?php
    /*
    	 Template Name: Single Post
       Template Post Type: post
    */

    Is the same file as single.php but with this extra name to appear in the selected list of templates in POST ENTRY.

    The problem is that the content is different when I use one of both.

    Here is the video file with the problem
    https://drive.google.com/file/d/13-X3gCsNpuK2bEM2H8dhmdbtOb6B1kyp/view?usp=sharing

    Thanks.

    #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

    #1468109

    Hey Thomas,

    Sorry for the late reply.

    I think the problem is in ..\enfold\config-templatebuilder\avia-shortcodes\toggles\toggles.js around line 92:

    
    allContent.not(content).slideUp( slideSpeed, function()
    {
    	$(this).removeClass('active_tc').attr({style:''});
    	scroll_to_viewport();
    });
    

    Can you try to remove

    
    scroll_to_viewport();
    

    and check if this helps.

    If not, can you give us admin access to a staging site where we can reproduce the problem (and we can modify this file to debug further) ??

    Best regards,
    Günter

    #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, 5 months ago by thinkjarvis.
    #1468101

    Hi,

    Thanks for the update, we’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    #1468099

    In reply to: Download 5.7.1

    Hi,

    Thanks for the update, we’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    #1468088

    Topic: OpenStreet Map Problem

    in forum Enfold
    Paolo
    Participant

    Hello, I’ve been using Enfold’s Open Street Map block for a while on many websites with no issues.
    Now I have one on this particular page https://www.invebi.it/contatti/.
    As you can see, I can’t manage to make the map work as expected. Gray squares are all around as the plugin couldn’t retrieve the map infos.
    Any clue on how to solve it?
    Thanks

    #1468085

    Hi,
    I mean custom elements. There are 3 team elements and 1 icon list in the avia layout architect choice of elements (layout, content, media, plugin and custom elements).

    And these I can’t edit and save.
    Thanks, Stefan

    #1468079

    In reply to: I need wp-config.php

    Hi,

    Thank you for the update.

    You can download the theme package from your Themeforest account, extract the enfold.zip file, extract the content of the zip file and upload it to the wp-content > themes directory manually via S/FTP. Please check the link below for more info.

    // https://kriesi.at/documentation/enfold/install-enfold-theme/#ftp-install

    Best regards,
    Ismael

    #1468070

    In reply to: I need wp-config.php

    So you’re saying my hosting provider has my wp-config.php file and all the ‘wp-‘ files and folders? And what about the install video at https://kriesi.at/documentation/enfold/install-enfold-theme/#ftp-install

    Looks like they’ve got a standard WP installation going. Please be kind enough to view this screenshot that compares what he’s looking at and what I’m looking at:
    https://idsclientservices.com/-delivery/Enfold-install-tutorial.png

    I think the ‘problem’ is in your court.

    Please tell me whether you can send a proper ENFOLD installation or not.

    #1468061

    In reply to: categories answer

    Hey Tim,
    I would need to see your post or page to offer a solution.

    Please note that we typically ask that you have a activate support contract for support, as the contact form is not appropriate for support questions.
    If you are unable to login to the support forum because you don’t have a activate support contract, please try going to your Theme Forest account and renew your support and then log in to the support forum and open a new thread.

    Best regards,
    Mike

    #1468060

    In reply to: categories

    Hey Tim,
    I don’t see any screenshots in the post, please reply to the thread https://kriesi.at/support/topic/categories-5/?avia_support_contact=avs_66f932b44f1ab8.19832496_1468049
    instead of starting a new one for each reply.

    Please note that we typically ask that you have a activate support contract for support, as the contact form is not appropriate for support questions.
    If you are unable to login to the support forum because you don’t have a activate support contract, please try going to your Theme Forest account and renew your support and then log in to the support forum and open a new thread.

    Best regards,
    Mike

    #1468058
    Tim
    Guest

    Related to: https://kriesi.at/support/topic/categories-5/?avia_support_contact=avs_66f932b44f1ab8.19832496_1468049
    Dear Mike,
    Thank you very much for your quick reply. I have tried to illustrate it:
    Screenshot-2024-09-29-151058
    Normally it seems to look like in part 1 with Enfold. As in part 2 it would be great: I found out how to left-align the heading from an earlier post of yours. But I have not been able to find out whether you can also set the categories (in each post) left-aligned via CSS in your theme. Best regards!

    the_digital_manager
    Participant

    Hello Enfold team,

    i’d like to change several things of the dia slideshow element:
    >The title gets the h1-tag, i’d like to change this to h3
    >add a transparant overlay
    >center the title
    >configure the font size of the title

    in quite a few things it becomes similar to this (masonry)
    example

    #1468055

    Topic: categories

    Tim
    Guest

    Related to: https://kriesi.at/support/topic/categories-5/?avia_support_contact=avs_66f932b44f1ab8.19832496_1468049

    Dear Mike,
    Thank you very much for your quick reply. I have tried to illustrate it. Normally it seems to look like in part 1 with Enfold.
    As in part 2 it would be great: I found out how to left-align the heading from an earlier post of yours. But I have not been able to find out whether you can also set the categories (in each post) left-aligned via CSS in your theme.
    Best regards!

    #1468045

    In reply to: Mobile on enfold

    Hey jcombatfitness,

    I’m not sure exactly what you are referring to, but you can set text sizes for all screens under Enfold->General Styling->Typography.

    Best regards,
    Rikard

    #1468043
    #1468036

    In reply to: I need wp-config.php

    Thank you for replying. You may have misunderstood my problem. I’m used to installing WP the ‘old’ way. Upload zip file, extract files, create DB, edit wp-config.php, and carry on. The page I was sent to instructed me to download Bitnami, (whatever that is), and after telling me how much I would love this new approach, presented me with a laborious install process that I could not understand the least bit. There wasn’t even a wp-config.php file anywhere to be found. Here’s my question — can I get the latest version of Enfold that includes the typical ‘old’ install method. Is that even possible? If it is, and if you can send me a download link to retrieve it, I will follow the same steps I always have to install WP and be able to carry on. BTW, I do very much appreciate you getting back, and I truly hope there is a way to simply install Enfold as I always have. Thank you.

    #1468034

    by the way –
    how to have a child-theme avia_layout.php

    via filter: avf_theme_options_pages

    this child-theme solution works as expected with the edited files from the bottom:

    require_once( get_stylesheet_directory() . '/functions-enfold.php' );
    
    function my_avia_layout_mod($avia_pages){
        $avia_pages['layout']['include'] = get_stylesheet_directory().'/includes/avia_layout.php';
        return $avia_pages;
    }
    add_filter( 'avf_theme_options_pages', 'my_avia_layout_mod', 10, 1 );

    functions-enfold.php: https://pastebin.com/dl/UTGvNGKB (see lines 1556 – 1561)
    – put into root directory of your child-theme
    avia_layout.php: https://pastebin.com/dl/RnmpK2Mu
    – put into includes folder (subfolder of child-theme)

    #1468032
    jcombatfitness
    Participant

    Im not sure how to edit the mobile version text in the Enfold theme.
    Is there a video showing how because the desktop version is too big on the mobile version.
    thank you

    #1468031

    In reply to: Edit: Logo on Header

    Hi,
    Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    #1468027

    In reply to: Edit: Logo on Header

    Hey brookjames,

    You can change the logo to be used when the header is transparent under Enfold->Theme Options->Transparency Options.

    Best regards,
    Rikard

    #1468023

    Hi Mike,
    Oh, this really helped now. Allowing cookies on Safari for iPhone and all the mentioned features are visible. Please accept my apologies, it seems I may have blocked cookies in the recent past and forgot about that. Appreciated.

    On my desktop PC I am working with different browsers like Firefox, Opera, Microsoft Edge preferably in private mode. And since the last two updates the mentioned features are not working anymore on Firefox. So this is still not clear to me although I allow Firefox to set cookies.

    So here’s the update:
    Enfold Cookie-Disclaimer does not work on Firefox
    Scroll to top button does not work on Firefox
    Plugin Portfolio Filter Gallery does not work on Firefox
    Plugin NextGEN Gallery does not work on Firefox

    Many thanks & all the best!
    Matthias

    #1468022

    Topic: Edit: Logo on Header

    in forum Enfold
    brookjames
    Participant

    Just starting setting up my second Enfold Site. I’m using the Single page restaurant demo.

    I have changed my Logo in Enfold Theme Options, but my Logo only shows when it shrinks on sticky header. When at the top of the page where it integrates into the Fullscreen slider, it still shows the Enfold Logo. If I turn off the sticky header, only the Enfold Logo shows, but only on Desktop. Mobile shows the correct Logo.

    Where do I change this?

    TIA for any assistance.

    • This topic was modified 1 year, 5 months ago by brookjames.
    • This topic was modified 1 year, 5 months ago by brookjames.
    • This topic was modified 1 year, 5 months ago by brookjames.
    #1468018

    Hi,
    Ok, I thought that you wrote:

    This is what I found:
    Enfold Cookie-Disclaimer does not work on Firefox and Safari
    Scroll to top button does not work on Firefox and Safari
    Plugin Portfolio Filter Gallery does not work on Firefox and Safari
    Plugin NextGEN Gallery does not work on Firefox and Safari
    Menue does not work on Safari

    But when I check I don’t see an issue with these.
    But note that Safari has changed their AD block settings to now block FB and other items, so you would need to manually disable this.
    Also note that you typically need to accept the cookie settings for some elements to work like the NextGEN Gallery.

    Best regards,
    Mike

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 30 results - 5,731 through 5,760 (of 244,367 total)