Forum Replies Created

Viewing 30 posts - 22,981 through 23,010 (of 66,864 total)
  • Author
    Posts
  • in reply to: Tab Section Element #1094258

    Hi,

    Thanks for the update.

    Try to edit the first column in the row, set the columns to have an equal height (Colonne In Eguale Altezza) and choose “Medio” or middle as the vertical alignment of the content (Allineamento Verticale).

    Best regards,
    Ismael

    in reply to: Image shows up twice in post when viewed on iPhone. #1094252

    Hi,

    I looked in Posts (with thumbtack image next to it)

    You have to actually go to or edit the post. In the post editor’s sidebar, you’ll see the Layout > Sidebar Settings. At the very bottom of that Layout panel, you should see the “Featured Image” settings. Set that to “Hide on single entry”. You have to repeat these steps for every single post.

    Best regards,
    Ismael

    Hi,

    Yes, adding the pipe in between the pattern should work. We’ll forward this to the dev team. Please note that this feature is not intended to work for any other contact forms aside from the default one from the theme.

    Best regards,
    Ismael

    in reply to: Dreamhost Enfold Update Loads to Page not Found #1094247

    Hi,

    Thanks for the update.

    The FTP login details above are invalid. Please provide another so that we can access the files. We would like to inspect the “function-set-avia-frontend.php” file.

    Best regards,
    Ismael

    in reply to: where to find Enfold version 4.5.3? #1094243

    Hi,

    Thanks. Let’s continue on that thread. We’ll close this one for now.

    Best regards,
    Ismael

    Hi!

    Thanks for the update.

    The elements are not responsive because their containers are rendered outside the main wrapper. We are trying to set the builder to debug mode to enable the shortcode parser but we keep getting an error during update. Please set the builder to debug mode and then update the CPT items.

    Just add this code in the functions.php file:

    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
      return "debug";
    }

    You can also try this script to relocate the containers inside the main wrapper.

     function ava_enqueue_custom_script() {
        if ( wp_script_is( 'avia-default', 'registered' ) ) {
            wp_add_inline_script( 'avia-default', " (function($){
                (function() ) {
                    var grid = $('body').children('.av-submenu-container, .avia-section, .av-layout-grid-container, .av-tab-section-container, #footer, #socket');
                    $(grid).appendTo('#wrap_all #main');
    
                    var child = $('.avia-section, .av-layout-grid-container').find('.avia-section, .av-layout-grid-container, #footer, .av-submenu-container, #footer'),
                    parent = child.parents('.avia-section, .av-layout-grid-container');
    
                    child.insertAfter(parent);
                }();
            })(jQuery);" );
        }
    
    add_action( 'wp_enqueue_scripts', 'ava_enqueue_custom_script', 9999);}
    

    Regards,
    Ismael

    Hi,

    Thanks for the update.

    Did you apply a custom css class attribute to the image element after enabling the custom css class field? What is it? Please post the login details in the private field so that we can check the page directly.

    Best regards,
    Ismael

    in reply to: Adding a script in code block #1094012

    Hi,

    UPDATE: You need to load the following js files.

    <script src="//cdnjs.cloudflare.com/ajax/libs/zepto/1.1.2/zepto.min.js"></script>
    <script>window.Zepto || document.write('<script src="scripts/vendor/zepto.min.js"><\/script>')</script>
    <script src="scripts/wtf.js"></script>
    <script src="scripts/main.js"></script>
    

    Copy the css code in the child theme’s style.css file or the Quick CSS Field. And then make sure that the following markup exists in the page.

    <article>
    <div id="output">
    		            <noscript>
    <dl>
     	<dt>What the fuck! You don't even have JavaScript enabled!</dt>
     	<dd>You need to enable it to see all the fucking cool shit on this website...</dd>
    </dl>
    </noscript></div>
    <a id="generate" href="#" title="Hit me again!"></a>
    		    </article>
    

    // https://github.com/soulwire/WTFEngine/blob/master/index.html

    You can put that in a code or text block. If I am not mistaken, the script will render something in the “#output” container once you hit the “#generate” link or button.

    Best regards,
    Ismael

    in reply to: Adding a script in code block #1094007

    Hi,

    Sorry about that. I misread “particular” as “particle”, so I assumed you’re referring to that old “particle.js” script. We’ll give you an update once we learn more about that script.

    Best regards,
    Ismael

    in reply to: Layer Slider Small on Mobile #1093998

    Hi,

    Yes, maybe it’s not working because of the video source. We haven’t seen anyone use that media provider before. Try to use youtube or vimeo instead of mediazilla.

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    We’re not really sure why would that happen. Have you tried to manually set the width of that container to 100% or full width? You can also hide the element using the Screen Options and display another.

    Best regards,
    Ismael

    in reply to: Lay out issue #1093961

    Hi,

    Thank you for using Enfold.

    Use this css code to display the booking fields on a single column for smaller devices.

    @media only screen and (max-width: 767px) {
    #booking_search_form .well {
        background: #f8f8f8;
        display: flex;
        flex-direction: column;
    }
    }

    Screenshot: https://imgur.com/a/c1zG2Sy

    Best regards,
    Ismael

    in reply to: Anchor Links Not Scrolling to Tab Section Tabs #1093952

    Hi,

    Glad it worked. And thank you for the follow up. Please don’t hesitate to open a new thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Google Analytics IP anonymization #1093949

    Hi,

    Thanks for the update.

    Where can we see the issue? Please post the site url along with its login credentials in the private field.

    Best regards,
    Ismael

    in reply to: how to remove the Burger Mobile menu option? #1093947

    Hi,

    Thanks for the update.

    The password is incorrect. Please check the login details carefully. Try to set the posts’ Layout > Featured Image settings to the second option in order to hide the main image.

    Best regards,
    Ismael

    in reply to: Slideshow (full width) > Dalay for Text Animation #1093940

    Hi,

    Thanks for the update.

    We created a new keyframe animation and modified the css code a bit.

    @-webkit-keyframes caption-top-mod {
      0%   { -webkit-transform:translate(0,-20px); opacity: 0;  }
      100% { -webkit-transform:translate(0,0); opacity: 1; }
    }
    @keyframes caption-top-mod {
      0%   { transform:translate(0,-20px); opacity: 0;  }
      100% { transform:translate(0,0); opacity: 1; }
    }
    
    .av_slideshow_full.avia-fade-slider .avia-caption-title {
    opacity: 0;
    }
    
    .avia_transform .av_slideshow_full.avia-fade-slider .active-slide .avia-caption-title {
       -webkit-animation: caption-top-mod 2s linear 4s;
       animation: caption-top-mod 2s linear 4s;
       animation-fill-mode: forwards;
    }

    Please remove the browser cache prior to checking the page.

    Best regards,
    Ismael

    in reply to: Blog page not showing full text #1093856

    Hi,

    Thanks for the update.

    Yes, we recommend switching all posts to the default editor. It gives you the additional convenience of not having to add the excerpt manually for the blog overview page. It can be enabled from the Enfold > Theme Options > “Select Your Editor” settings.

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    Your reply didn’t answer my question or fix the issue.

    You wanted someone to login to your site and manually fix the issue. We did modify the said file and fixed the issue, so I’m not really sure what you mean by that. We do like to apologize that we missed including the file in the latest patch. That was unintentional as previously mentioned.

    Once these were disabled my site returned to normal.

    The file modification fixed the issue on your site the last time we checked, so you probably visited a cached version of the page.

    (apparently due to the large number of issues).

    Are there any other issues in the site? Please let us know so that we can help you fix them.

    Best regards,
    Ismael

    in reply to: Blurry Images on Shop page #1093851

    Hi,

    Thanks for the update.

    Have you tried to adjust the size of the product thumbnails from the Appearance > Customize > Woocommerce > Product Images panel? You have to regenerate the product images after the adjustment.

    // https://wordpress.org/plugins/regenerate-thumbnails/

    Please let us know once the site is live or moved to a staging domain so that we can inspect the product images.

    Best regards,
    Ismael

    in reply to: modify featured image in blog post #1093848

    Hi,

    Thanks for the update.

    1.) Set the Enfold > Blog Layout > Blog Layout to “Single author, big preview” or “Multi author” to adjust the width of the featured image.

    OR

    2.) Follow the previous suggestion above to hide the featured image or use this css code.

    .single-post .single-small.with-slider .small-preview {
        display: none !important; 
    }

    Best regards,
    Ismael

    • This reply was modified 6 years, 7 months ago by Ismael.

    Hi,

    Thanks for the update.

    1.) Did you set the header as a fixed container? You need to adjust the top padding of the main container in order to move it under the header. Add this css code inside the previous css media query.

    .responsive #top #main {
        padding-top: 169px !important;
        margin: 0;
    }

    2.) Unfortunately, that type of footer is not possible by default. You can try to recreate it by setting a 3 column footer and adjusting the width of the first column. Or try to use css flex to re-align the columns. Unfortunately, that will require modification that is beyond the scope of support. Please a hire a freelance developer or contact our partner, Codeable.

    3.) The following css code sets the font-weight of the phone number and the menu items to bold.

    .phone-info {
        float: left;
        font-weight: bold;
        line-height: 20px;
        font-size: 11px;
        padding: 5px 0;
    }
    
    #top #header .av-main-nav > li > a {
        color: #000000;
        background-color: #fcfcfc;
        border-color: #f2f2f2;
        font-size: 18px;
        font-weight: bold;
    }

    Did you add that?

    Best regards,
    Ismael

    in reply to: Help: Event Countdown completely missing! #1093829

    Hi,

    Thanks for the update.

    What is the current version of the theme? We couldn’t check it because the theme options and the themes panel are not accessible, and the theme debug info is disabled. Please make sure that the site is running on version 4.5.6.

    Best regards,
    Ismael

    in reply to: Blog Page Issues #1093827

    Hi,

    Thanks for the update.

    Could you test it again on your end? We reset the Settings > Reading options back to default. As you can see in the following screenshot, the text editor is working properly.

    // https://imgur.com/a/O8biche

    Please don’t forget to purge the cache or remove the browser history.


    @andreamangialardo
    : Please open a new ticket or thread and provide the site url in the private field.

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    We just found out that the fix for the compression was not merged or included in the latest patch. It was unintentional of course. Please update the asset-manager.php file as described in this thread.

    // https://kriesi.at/support/topic/again-one-problem-with-merged-css/#post-1082689

    We would like to apologize for the inconvenience.

    Best regards,
    Ismael

    in reply to: Fatal error: Uncaught Error: Call to undefined function #1093815

    Hi,

    Thanks for the update.

    It seems to be an issue with the bbPress plugin. Please go to the wp-content directory and rename the “plugins” folder to deactivate the plugins temporarily. Or download the latest version of the bbPress plugin and override the current plugin folder.

    Best regards,
    Ismael

    in reply to: Website broke when upgrading to WordPress 5.1.1 #1093810

    Hi,

    Thanks for the update.

    The site is loading properly on our end. It’s currently on version 4.5.6. Did you try to upgrade the actual site to that version? Please post the FTP details for the staging site so that we can activate the debug mode.

    Best regards,
    Ismael

    in reply to: Avia Builder Masonry Grid and others not working. #1093809

    Hi,

    Thanks for the update.

    Are you using the masonry element in a product item? The “avia_wc_clear_catalog_ordering_args_filters” function should NOT be executed when WooCoomerce is not active or installed, so we are not really sure why it’s throwing that error.

    Best regards,
    Ismael

    in reply to: Leaflet Maps Marker #1093806

    Hi,

    The admin-ajax.php file is not loading properly because there’s an internal server error while the plugin is active. Is it working on a default theme? Please contact the plugin authors for additional help and enable the debug mode so that we can see more info about the issue.

    // https://codex.wordpress.org/Debugging_in_WordPress

    What’s wrong with the default map element from Google?

    Best regards,
    Ismael

    in reply to: Portfolio entry only loads with URL …/?preview=true #1093802

    Hi,

    Thanks for the update.

    Yes, that’s a known issue with the builder in general. You have to use the entity number of the character or symbol.

    // https://www.freeformatter.com/html-entities.html

    We don’t recommend it though because once the page is updated, the entity numbers will be converted to the actual characters. Then it will break again after another page update.

    Unfortunately, we haven’t found a conclusive fix for this issue, yet.

    Best regards,
    Ismael

    in reply to: Top bar – Menu – header merged with main content #1093797

    Hi,

    Great! Glad it’s fixed. Please don’t hesitate to open a new thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

Viewing 30 posts - 22,981 through 23,010 (of 66,864 total)