Viewing 18 posts - 1 through 18 (of 18 total)
  • Author
    Posts
  • #1092792
    Kathy Zech
    Guest

    I purchased the Enfold Theme almost a year ago. Started working on building my church’s website (Non-profit), but the Church Board/Pastor didn’t have content ready for me to place on the website (so we put the website on hold – stop building the website). They recently have given me content to start building pages. I went in the other day and realized the Avia Layout Builder is totally messed up. I am not able to edit content on the pages.
    What do I need to do to get this back functioning like it was when I bought the theme? I need to work on finishing the site, so we can launch the website. I am not sure what changed to make this happen. Please help. Thanks.

    #1093166

    Hey Kathy Zech,
    Sorry for the late reply, I took a look at your site and I see that you are using Enfold v4.4 with WordPress v5.1.1
    You will need to update manually via ftp to Enfold v4.5.5
    I can assist with this if you include your ftp access in the Private Content area.

    Best regards,
    Mike

    #1093176
    Kathy Zech
    Guest
    This reply has been marked as private.
    #1093186

    Hi,
    Thank you for the login, but I also need ftp access so I can upload the files, thank you.
    Here is a good resource that explains FTP a little more.
    Also please note that we will need access to your public_html/ directory, so when creating the ftp user give them “/” access.

    Best regards,
    Mike

    #1093205
    Kathy Zech
    Guest
    This reply has been marked as private.
    #1093209

    Hi,
    Thank you, I was able to login to your cPanel and upload the files.
    Your theme is updated and you can edit your pages again.
    Please check over everything well, and if it’s working well then let me know, there is a folder I should delete so it won’t confuse people in the future.

    Best regards,
    Mike

    #1093799
    Kathy Zech
    Guest

    Hi Mike,
    Sorry for the late response. It’s been a crazy couple of days.
    YOU ARE AWESOME!!!
    I just took a very quick look around the site and it looks like things are back to normal again.
    The Avia Layout Builder seems to be working properly (I can at least see my text that I loaded there).

    In the future if I run into any problems, which is the best way to get a hold of support? My login to support doesn’t seem to be working. I tried the forgot password and that link is broken (just sent me an email saying the link was invalid).

    Thank you so much from the bottom of my heart.
    I will now be able to start working on the site this weekend.
    Thanks,
    Kathy

    #1094240

    Hi,

    The best way of obtaining support is via our forums here :-)

    Best regards,
    Jordan Shannon

    #1095005
    Kathy Zech
    Guest
    This reply has been marked as private.
    #1095050

    Hi,
    Thanks for the login info, So to correct this we will first disable the auto sidebar nav, by going to
    Enfold Theme Options > Sidebar Settings > Page Sidebar navigation and unchecking, and saving.
    Now we will create a new menu for the sidebar, and add your pages.
    Then we will add the “Navagation Menu” widget and select your new menu.
    I have done this for you, Please clear your browser cache and check.

    Best regards,
    Mike

    #1095127
    Kathy Zech
    Guest
    This reply has been marked as private.
    #1096150

    Hi,
    Sorry for the late reply, I put the previous settings back and then I added this code to the end of your functions.php file:

    add_filter('avia_sidebar_menu_args', 'avia_sort_sidebar_pages',10, 2);
    function avia_sort_sidebar_pages($args, $post)
    {
    $args['sort_column'] = 'menu_order, post_title';
    return $args;
    }
    

    This will allow you to set the menu order in the “Quick Edit” order option:
    2019-05-01-052337
    I set the order for the “About Us” pages with “about us” as “0” and “FAQ” as “8”
    Please review and then try setting your order for the other pages.

    Best regards,
    Mike

    #1096292
    Kathy Zech
    Guest
    This reply has been marked as private.
    #1096358

    Hi,
    I have taken a look at your page, but unfortunately, I don’t see a practical way to add the headings you are looking for. We may be able to add these headings with some javascript, if there is just a couple that you want to add.
    It seems that all the ones you want to add are “Church header: Church ” is this correct?

    Best regards,
    Mike

    #1096686
    Kathy Zech
    Guest
    This reply has been marked as private.
    #1096702

    Hi,
    I added this function to your functions.php to add the widget titles:

    function custom_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
        $( "<h3 class='widgettitle'>Church</h3>" ).insertBefore( "#top.page-id-236 .widget_nav_menu" );
        $( "<h3 class='widgettitle'>Church</h3>" ).insertBefore( "#top.parent-pageid-236 .widget_nav_menu" );
        $( "<h3 class='widgettitle'>Education</h3>" ).insertBefore( "#top.page-id-31 .widget_nav_menu" );
        $( "<h3 class='widgettitle'>Education</h3>" ).insertBefore( "#top.parent-pageid-31 .widget_nav_menu" );
        $( "<h3 class='widgettitle'>Calendar</h3>" ).insertBefore( "#top.page-id-472 .widget_nav_menu" );
        $( "<h3 class='widgettitle'>Calendar</h3>" ).insertBefore( "#top.parent-pageid-472 .widget_nav_menu" );
        $(".widget.widget_nav_menu").css({'padding-top': '0px'});
      });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    it seems to be working, Please clear your browser cache and check.

    Best regards,
    Mike

    #1098687
    Kathy Zech
    Guest
    This reply has been marked as private.
    #1099196

    Hi,
    Glad to hear the widget titles are working for you.
    To get the Google Maps to work you will need to setup a billing account with Google Maps and add your API to the Google Maps field within the theme settings. Please look in the theme settings for the link to create a Google account.
    To correct the widegt highlight color, please try this css:

    .main_color .widget_nav_menu ul:first-child>li.page-item-472.current_page_item {
        background: #fff !important; 
        box-shadow: 0px 0px 1px 0px rgba(0,0,0,0) !important; 
    }
    .main_color .widget_nav_menu ul.nested_nav > li.current_page_item > a {
        background: #f8f8f8 !important; 
        padding-right: 0px !important; 
        margin-right: -62px !important;
    }
    .main_color .widget_nav_menu ul.children>li.current_page_item {
        background: #f8f8f8 !important; 
        padding-right: 52px !important; 
        margin-right: -62px !important;
    }
    

    Best regards,
    Mike

Viewing 18 posts - 1 through 18 (of 18 total)
  • You must be logged in to reply to this topic.