Forum Replies Created

Viewing 30 posts - 17,581 through 17,610 (of 25,536 total)
  • Author
    Posts
  • Hey mikejohnsimports,

    You don’t need to get all files from the parent theme, because wordpress by default will try to look for the file in the child theme, if it can’t find the file it will default to the parent theme, so you only need to copy files from the parent theme that you want to modify to override it. For example for google tag manager, you can just copy header.php from Enfold to the child theme and tweak it in the child theme and add the google tag manager script. Hope this helps :)

    Best regards,
    Nikko

    Hey Fabian,

    Can you give us your ftp access? so we can try to check it further and debug.

    Best regards,
    Nikko

    in reply to: How to remove the bold color only on the blog page? #921557

    Hey DROR,

    Try adding this css code in Quick CSS (located in Enfold > General Styling):

    .page-id-945 .main_color strong {
        color: black;
    }

    Hope this helps :)

    Best regards,
    Nikko

    in reply to: The Enfold I have installed does not look like Enfold! #921555

    Hey Louise_Brace,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( do be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create a admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    in reply to: Unable to Edit Pages #921553

    Hi,

    I have moved your login details in private content, so it can only be seen by moderators and you. I tried to login to your site, using the details given but it doesn’t work on my end, please check.

    Best regards,
    Nikko

    Hi Katharina,

    Let us know your feedback, we will keep this thread open :)

    Best regards,
    Nikko

    Hi,

    I could not assure the fix would be made before the next release but we will try to help you with it and update you once a fix is made. For the meantime, as a temporary workaround, add an image to the product gallery just to enable the lightbox.

    Best regards,
    Nikko

    in reply to: Tabsection broke #921542

    Hi Videmi,

    Glad to hear that! Thanks for using Enfold :)

    Best regards,
    Nikko

    in reply to: Tabsection broke #921540

    Hi Videmi,

    Glad to hear that! Thanks for using Enfold :)

    Best regards,
    Nikko

    in reply to: Breadcrumbs not reflecting URL structure #920429

    Hi,

    Try adding this php code in functions.php to remove the News page (page selected as the blog page):

    add_action('after_setup_theme','avia_remove_blog_breadcrumb', 90);
    
    function avia_remove_blog_breadcrumb(){
    	remove_filter('avia_breadcrumbs_trail','avia_modify_breadcrumb');
    }

    Hope this helps :)

    Best regards,
    Nikko

    in reply to: Tabsection broke #920423

    Hi,

    Glad that we could help :) The issue is now fixed, the tab section was having layout issues when a tab content doesn’t have the complete columns added, for example adding just 1/3 column breaks the other tab content, to fix it I just completed/filled in the 2 1/3 columns. Let us know if you need further assistance :)

    Best regards,
    Nikko

    in reply to: Blog post width + image #920418

    Hi,

    Can you try this css code:

    #top .fullsize .template-blog .post-title,
    #top .fullsize .template-blog .post .entry-content-wrapper > * {
        max-width: 100% !important;
     }

    Hope this helps. :)

    Best regards,
    Nikko

    Hi,

    You’re welcome :) At the moment a ticket has already been made though the developers are still busy working on other issues. We assure you that our devs will look into it as soon as they can.

    Best regards,
    Nikko

    in reply to: Page Showing multiple Galleries #920409

    Hi,

    You’re very much welcome, just glad that we could help. Thanks for using Enfold :)

    Best regards,
    Nikko

    in reply to: Breadcrumbs not reflecting URL structure #920408

    Hi,

    Thanks for giving us admin access, I have checked in Appearance > Editor and found that this file is causing the issue: enfold > framework > php > class-breadcrumb.php (line 282-305):

            /*if('post' == $post_type && $show_categories)
            {
                    $category = get_the_category();
    				
                    foreach($category as $cat)
                    {
                        if(!empty($cat->parent))
                        {
                            $parents = get_category_parents($cat->cat_ID, TRUE, '$$$', FALSE );
                            $parents = explode("$$$", $parents);
                            foreach ($parents as $parent_item)
                            {
                                if($parent_item) $trail[] = $parent_item;
                            }
                            break;
                        }
                    }
                    
                    if(isset($category[0]) && empty($parents))
                    {
                    	$trail[] = '<a href="'.get_category_link($category[0]->term_id ).'">'.$category[0]->cat_name.'</a>';
                    }
                    
            }*/

    Please remove the comment, so the code can work again, it doesn’t allow changes via Appearance > Editor, so changing it via ftp is the other option.

    Best regards,
    Nikko

    in reply to: Blog post width + image #920394

    Hi,

    I see, can you try to give us few links of your pages that uses blogposts, we’ll check and try to post a solution.

    Best regards,
    Nikko

    in reply to: Change Title H3 contct form enfold #920372

    Hi,

    Glad to hear that! Thanks for using Enfold and have a nice weekend :)

    Best regards,
    Nikko

    in reply to: Blog post width + image #920370

    Hi,

    You can use the code in #2. and just use this format:

    #top.page-id-x #main .container,
    #top.page-id-2328 #main .container {
        padding-left: 5px;
        padding-right: 5px;
    }

    You will notice the pattern, the difference is #top.page-id-x where x is the page id number. If this doesn’t help, please give us all links of your pages that has blogposts.

    Best regards,
    Nikko

    in reply to: Worker #920366

    Hi,

    Thanks for explaining what you are trying to achieve however, I don’t think we can do that with small tweaks since progressbars works with percentages, we can easily change % to orders however 100 to 2200 would be complicated since the value which is used in js that determines that width of the progressbar is just between 0-100. The only thing I can think of is to create a new element, based on progressbars and tweak it, the instructions is in our documentation: https://kriesi.at/documentation/enfold/add-new-or-replace-advanced-layout-builder-elements-from-child-theme/ however this would a lot of time to do and test, we would be glad to help you with this customization, but at the moment there is no easy way to do this by using a small custom code snippet, so I am afraid its out of the scope of our support.

    But please feel free to request such feature at our feature request system: https://kriesi.at/support/enfold-feature-requests/

    This system allows us to keep track of user suggestions and lets you vote on the feature you would like to see the most. I am afraid though there is no guarantee that a feature will get implemented. If that’s something you really need you can always try to hire a developer for the task :)

    Best regards,
    Nikko

    in reply to: Button style (colored) in mobile menu #920362

    Hi,

    Can you try adding this css code in Quick CSS (located in Enfold > General Styling):

    @media only screen and (max-width:959px) {
      #top #header .av-menu-button > a {
        border-bottom: 1px solid #e1e1e1 !important;
      }
    
      #top #header .av-menu-button > a .avia-menu-text {
        border: none !important;
        border-radius: 0 !important;
        background-color: transparent !important;
        color: inherit !important;
      }
    }

    Hope this helps :)

    Best regards,
    Nikko

    in reply to: Change Title H3 contct form enfold #920350

    Hi,

    Glad we could help! Let us know if you need further assistance or if we can close this thread :)

    Best regards,
    Nikko

    in reply to: Consistent single blog entry layout #920324

    Hi,

    You’re very much welcome, just glad that we could help :) Thanks for using Enfold!

    Best regards,
    Nikko

    Hi,

    I see, glad that it is resolved and thanks for sharing the solution :) Thanks for using Enfold and have a nice weekend!

    Best regards,
    Nikko

    in reply to: Tabsection broke #920319

    Hi,

    Thanks for trusting us and giving us all access we need, I have modified enfold > js > shortcodes.js (line 47):

    $('.grid-links-ajax').avia_portfolio_preview();

    and replaced it with:

    if($.fn.avia_portfolio_preview)
    {
    	$('.grid-links-ajax').avia_portfolio_preview();
    }

    and all seems to be working fine now :)

    There’s also another js error which is also fixed now (though it didn’t contribute to the tab section not working):

    Uncaught TypeError: $ is not a function     (index):358

    which is caused by your js code in child theme:

    <script type="text/javascript">
    /* The first line waits until the page has finished to load and is ready to manipulate */
    $(document).ready(function(){
        /* remove the 'title' attribute of all <img /> tags */
        $("img").removeAttr("title");
    });
    </script>

    I modified it to this:

    <script type="text/javascript">
    /* The first line waits until the page has finished to load and is ready to manipulate */
    jQuery(document).ready(function(){
        /* remove the 'title' attribute of all <img /> tags */
        jQuery("img").removeAttr("title");
    });
    </script>

    Everything seems good now, just let us know if there are issues caused by these changes :)

    Best regards,
    Nikko

    Hey Knut,

    Can you give us a screenshot showing the tracker? and can you tell us how we can see it?

    Best regards,
    Nikko

    Hey Switzer,

    The latest version of Enfold is tested, I have checked this on my local installation and I don’t have any issues, my current setup are:
    Enfold 4.2.5
    WP 4.9.4
    The Events Calendar 4.6.11.1
    The Events Calendar PRO 4.4.23

    Can you give us temporary admin access and ftp access? so we can try to check on it.

    Best regards,
    Nikko

    in reply to: Change Title H3 contct form enfold #920297

    Hey Luc,

    Try to use this css code for the footer:

    #top #wrap_all #footer h3.widgettitle {
        color: #fff;
    }

    Hope this helps :)

    Best regards,
    Nikko

    in reply to: Warning: include() [function.include] #920290

    Hi,

    Glad that Basilis helped you :) Let us know if you need further assistance or if we can close this thread.

    Best regards,
    Nikko

    in reply to: Enfold + Woocommerce + Yoast error #920288

    Hey celuluk,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( do be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create a admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    in reply to: website in error 500 after update 4.2.5 #920287

    Hi serge esteves,

    Can you give us ftp access? so we can try to debug and check further.


    @trabisafari
    : Please create a new thread and post your login details and ftp access in private content so only the moderators and thread creator can view it.

    Best regards,
    Nikko

Viewing 30 posts - 17,581 through 17,610 (of 25,536 total)