Forum Replies Created

Viewing 30 posts - 20,971 through 21,000 (of 35,064 total)
  • Author
    Posts
  • in reply to: Theme questions (Angular) #1112737

    Hey Phoenix,
    Thanks for contacting us, it is true that our Angular theme will have no further updates and we are now only supporting our Enfold theme
    But this is not exactly a “new” theme, we have been developing it for about six years now and is very versatile.
    Here is a link to our Enfold demos
    Unfortunately, Enfold is not compatible with the Angular theme. But Enfold does include our most advanced portfolio with 8 different styles, please see our demo here.

    Can you describe the nature of your attacks, there are quite a few plugins and tools available to protect sites now, perhaps one will help you.

    Best regards,
    Mike

    in reply to: Animation not working #1112734

    Hi,
    Glad to hear you have sorted this out, we will close as directed. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Change button form #1112732

    Hi,
    Glad Rikard could help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Close gap up above button #1112731

    Hey Joe,
    Unfortunately, your link to the page and the screenshot is not showing for me, please repost so we can be of more assistance.

    Best regards,
    Mike

    in reply to: Show element if a previous action is true #1112730

    Hey peterolle,
    Interesting idea, I believe this can be done with JQuery using .click() and .css()
    How many steps do you plan to have? Does the form submit have to get feedback from the site or can the clicking of the submission count as a submit?
    Have you looked for any plugins yet? In a quick search I found this one, perhaps there are others.

    Best regards,
    Mike

    in reply to: Need search box right of the main menu – how? #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

    Hi,
    Thanks for the feedback, in order to target only pages with a black background we will need to find something unique to them, so in this case you say that they are portfolio pages, so we will use the class single-portfolio like this:

    #top.single-portfolio .av-share-link a {
        color: #fff !important; 
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Remove Featured Image from Shop Page #1112722

    Hey Ronald,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.archive .page-thumb {
    display: none !important;
    }

    Best regards,
    Mike

    in reply to: Fullwidth left side bar background color #1112721

    Hi,
    In the css above the ID of “#after_layer_slider_1” in the inspector looks like this:
    2019-06-23-115924
    but this ID is on every page that has a layerslider, the only reason this css is not working on other pages is due to the page id class which is right after the body ID #top:
    2019-06-23-120341
    so if you remove the #top.page-id-3366 from the css it will work on every page and post, but I recommend first testing with #top.page to target all pages and no posts, to reduce possible future conflicts.

    #top.page #main #after_layer_slider_1 {
        background: #009aff;
        background: -moz-linear-gradient(left, #009aff 0%, #009aff 49%, #ffffff 49%, #ffffff 100%);
        background: -webkit-linear-gradient(left, #009aff 0%,#009aff 49%,#ffffff 49%,#ffffff 100%);
        background: linear-gradient(to right, #009aff 0%,#009aff 49%,#ffffff 49%,#ffffff 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#009aff', endColorstr='#ffffff',GradientType=1 );
    }
    
    #top.page #main #after_layer_slider_1 .template-page.content {
        background-color: white;
    }
    
    #top.page #main .sidebar_left .sidebar {
        background-color: #009aff;
    }
    
    #top.page #main .sidebar_left .sidebar h3, 
    #top.page #main .sidebar_left .sidebar a {
        color: white !important;
    }

    Best regards,
    Mike

    in reply to: fullwidth submenu logo position #1112718

    Hey jarred,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #sub_menu1 {
        margin-left: 50px !important; 
    }

    Then clear your browser cache and any cache plugin, and check.

    Best regards,
    Mike

    in reply to: Babysitter webpage #1112717

    Hey Alexander Berger,
    Sorry, we don’t create websites, we create the software that allows you to create your own website.
    So with a little time to learn the software you can create your own site for very little cost.
    Or if you wish you can hire a freelancer to create your site with our software, we recommend the developers at Codeable, please summit a request with your details and time frame to get started.
    But many people use our software to create their sites with very little experience, and we include a support forum should you have any questions.

    Best regards,
    Mike

    Hey coolicious,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.home .avia_ajax_form .first_form.form_element_third {
        clear: right !important; 
        margin-left: 5px !important; 
        width: 31.6% !important; 
    }
    #top.home #avia_0_1 {
       max-height: 44px !important; 
    }

    Then add this code to the end of your functions.php file in Appearance > Editor:

    function custom_gdpr_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
    $( 'fieldset' ).each(function() {
    $( this ).find( '.form_element_third' ).insertBefore( $(this).find('.av_mailchimp_privacy_check') );
    });
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_gdpr_script');

    Best regards,
    Mike

    in reply to: how to increase thumbnail size image for watchlist #1112713

    Hi,
    Sorry for the late reply, does your auction plugin have shortcodes that can be used instead of the widgets?
    Perhaps we can add the shortcodes to code block elements and align them better on your page.

    Best regards,
    Mike

    Hi,
    Glad this helped, yes you can change the post entry # to apply to a new section, or if you add a custom class to the element and use this class instead of the post entry # you can apply it to anywhere on your site.
    Please let us know if you want a hand in setting this up.

    Best regards,
    Mike

    in reply to: Another – Avia Layout Builder Loading #1112711

    Hi,
    What I mean is that there is no restore after using “Reset all option”, but your webhost typically automatically creates backups and perhaps you can restore from a few days ago. If it’s not a big deal to you then don’t worry, I only point this out because I saw your site before and feel bad that you have lost your work now.

    Thank you for the FTP access, I renamed your current theme to “enfold-old” then I uploaded the new “enfold” and checked that your site is working correctly. Please also check for yourself.
    Once you are happy you, (or I) can delete the “enfold-old” via ftp, (not the WP theme page)
    Should for some reason you wish to roll-back to the old version, it’s easy to do, simply rename the new “enfold” to “enfold-new” via ftp and then rename “enfold-old” to “enfold” then refresh your page.

    But I see that updating your site didn’t solve, you still have an error from: #wp-auth-check-form and you also have: Last time we checked the token we were not able to connected to Envato

    Please ensure that your token has the correct permissions checked off, please read here for more info

    Best regards,
    Mike

    in reply to: Multiple errors on enfold site #1112707

    Hi,
    Thanks for the login, I took a look at your site and backend, and tested by creating a new user with the details that you posted above for us that you said you couldn’t create. I then tried to edit your contact page a saw the error above the title field.
    I found that you had checked “Load jQuery in your footer” in your theme settings which can cause errors because when a plugin or script is loading before the footer is loaded the jQuery will not be available. I also changed your default WordPress editor to the Classic Editor at: Enfold Theme Options > Select Your Editor > Use WP Classic Editor
    I then made a small change to your contact page, saved, checked, and then undid without issue.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Multiple errors on enfold site #1112688

    Hey craig_corfield,
    Thanks for the link, but I don’t see your error on your site. But when you manually updated did you try to overwrite the theme folder?
    Please don’t try to overwrite the theme folder, as this will leave old files behind and cause errors.
    Please note that you should rename the “enfold” folder in /wp-content/themes/ to “enfold-old” via FTP, then upload the new “enfold” folder, once you see the new “enfold” is working you can delete the “enfold-old” folder.
    Otherwise if it doesn’t work, rename the new enfold folder to “enfold-new” and rename the “enfold-old” back to “enfold” and let us know.

    Best regards,
    Mike

    in reply to: Iframe not working #1112680

    Hi,
    Thanks for the link, I tested your iframe and js on my localhost after cleaning the code of curly quotes and it seems to work fine.
    I’m not sure how you were trying to add it to your Advanced Layout Builder, but I used the code block element for the iframe and code.
    If you would like me to try to add it to your site, please let me know where you want it, otherwise please try to add it again in a code block element.

    Best regards,
    Mike

    in reply to: Steps to Update 3.8 to 4.5.7 #1112678

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: How to Center Blog Meta #1112676

    Hi,
    Glad Victoria could help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Subtitle of a special heading, How to center it? #1112675

    Hi,
    Thanks for the link, the reason your sub-title is not centered on mobile is because of this custom css in your child theme stylesheet:

    /* Allineamento testo solo per desktop */
    @media (max-width: 768px) {
    p {text-align: left;}
    }
    

    You could remove this to correct it, but I assume you want this for your text blocks, so please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media only screen and (max-width: 768px) { 
    .av-subheading p {
    text-align: center!important
    }
    }

    Best regards,
    Mike

    in reply to: Toogle #1112670

    Hi,
    Thanks for the link to your site, the toggle is designed to “slide” down to show the content.
    I tried to find some javascript to center the content on click, but it was not reliable.

    Best regards,
    Mike

    Hi,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media only screen and (max-width: 767px) { 
    .post-entry-734 div .av_one_fifth {
        margin-left: 6% !important; 
        width: 15.2% !important; 
    }
    .post-entry-734 div .av_one_fifth.avia-builder-el-36 {
        margin-left: 0% !important; 
        width: 15.2% !important; 
    }
    }

    Then clear your browser cache and any cache plugin, and check.

    Best regards,
    Mike

    in reply to: MEGA MENU OFFSET NOT CENTERTED. #1112664

    Hey nickgreaves,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #menu-item-2048 > div {
        left: -205px !important; 
    }
    #menu-item-2975 > div {
        left: -235px !important; 
    }

    Best regards,
    Mike

    in reply to: Shape Dividers #1112663

    Hey sumio17,
    When using the color sections you do have the option of “slanted border” which can be seen here. But for creating your own “wavy” borders, you can upload background images to columns or color sections.
    Another option is to apply the background image with css. Here is a good video on how to do this.

    Best regards,
    Mike

    in reply to: Add a comment not showing up on blog #1112662

    Hey Aurora,
    Thanks for the login, I see that you are using the Advanced Layout Builder for your Blog page, when using the Advanced Layout Builder you will need to manually add the “comment element” to display the comments. This is to give you better control over your layout when compared to the default layout.

    Best regards,
    Mike

    in reply to: trouble manually updating theme #1112661

    Hey sutara,
    I see that at the end of your post is “Fixed”, so I assume this is resolved and we can close this now, but if you still need help Please include an admin login & FTP access in the Private Content area.

    Best regards,
    Mike

    in reply to: delete line #1112660

    Hi,
    Sorry, there is not an option to adjust the borders in the advanced css options.
    After you try this, please let us know if it works for you.
    Please ensure to clear your browser cache when you test.

    Best regards,
    Mike

    in reply to: Center Logo alignent and logo linking issues #1112657

    Hey tguarente,
    Thanks for the login, I see that your logo had a lower z-index than your menu container, so it was behind it.
    I adjusted your css to this:

    .container.av-logo-container {
      top: 0;
      z-index: 50;
    }

    so the logo is on top now and can be clicked, Please clear your browser cache twice and check.
    For your token I see you are using Enfold v4.5.5, unfortunately, there was an error in this version that will require a manual update via ftp for the token and future updates to work, if you would like a hand with manually updating Please include FTP access in the Private Content area.

    Best regards,
    Mike

    Hey plafonta,
    Odd, I see that you are using a child theme do you have any custom files in the child theme such as header.php?
    I also see that “Download Brochure” works with .pdf but “Download Inclusions” doesn’t.
    Please include admin login in the Private Content area so we can investigate further, ftp access would also be nice.

    Best regards,
    Mike

Viewing 30 posts - 20,971 through 21,000 (of 35,064 total)