Forum Replies Created

Viewing 30 posts - 21,931 through 21,960 (of 66,745 total)
  • Author
    Posts
  • in reply to: How to add EDIT link in breadcrumbs? #1115810

    Hi,

    You’re welcome! Glad we could help. Please don’t hesitate to open a new thread if you need anything else.

    Have a nice day!

    Best regards,
    Ismael

    in reply to: Erweiterter LayerSlider in second Language #1115808

    Hi,


    @tebitrongmbh
    : Thanks for the info. That could also happen when the duplicates of the original slider still exist, so make sure that they are gone before doing the translation.


    @xeovision
    : Did you remove the duplicate before translating the text?

    Best regards,
    Ismael

    in reply to: Mobile View Issues #1115805

    Hi,

    Thank you for the update.

    Try to change the media condition in the css media query from (max-width: 479px) to (max-width: 989px) so that it applies to tablet view. After adjusting the media condition, add this css code inside that same css media query.

    .responsive #top #header .av-logo-container .social_bookmarks {
        display: none;
    }

    Best regards,
    Ismael

    Hi,

    We would like to apologize for the delay.

    The slider seems to be running properly. Is it fixed? Are you referring to the very first slider in the home page?

    Best regards,
    Ismael

    in reply to: Disable image to open #1115801

    Hey Charlotte,

    Add this code in the Quick CSS field or the child theme’s style.css file to remove or disable the image overlay.

    .image-overlay {
        display: none !important;
    }
    

    Thank you for using Enfold.

    Best regards,
    Ismael

    in reply to: Blog page sidebar edit #1115800

    Hi,

    Thank you for the update.

    We added this code in the functions.php file to change the blog style of the archive or category pages.

    add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); 
    function avia_change_category_blog_layout($layout, $context){
        if($context == 'archive') $layout = 'single-big';
        return $layout;
    }
    

    Best regards,
    Ismael

    Hey sony1208,

    Thank you for using Enfold.

    Are you using the block or Gutenberg editor? The modification from the previous thread will only work if the classic editor is enabled, so you should try switching to a different editor in the Enfold > Theme Options > Select Your Editor settings.

    Best regards,
    Ismael

    Hey!

    Sorry for the delay.

    You should be able to change the blog layout or style in the Enfold > Blog Layout panel and disable the date info from there. If you want to move the featured image beside the post title, select the “Blog Single Author Small” blog layout. If you want to learn more about how to setup your blog, please visit the documentation.

    // https://kriesi.at/documentation/enfold/page-setup/#blog
    // https://kriesi.at/documentation/enfold/blog-post/

    Thank you for using Enfold.

    Cheers!
    Ismael

    Hey Rui,

    Thank you for using Enfold.

    1.) Did you replace the slider with a Layer Slider? Did you translate the media files or at least reselect the existing images when you’re on the translated page?

    // https://wpml.org/documentation/getting-started-guide/media-translation/

    2.) The menu looks the same on an Edge browser. What are the differences that you see on your end?

    3.) And the header behaves the same way. Did you configure the languages’ Theme Options?

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    We can’t find any errors when we reenable the shortcodes.js file in the child theme, so it’s a kind of difficult to debug. Did you modify anything else aside from the suggested modification from the previous thread?

    Best regards,
    Ismael

    in reply to: LayerSliderWP changes not showing #1115786

    Hey!

    Did you remove the other sliders before translating the strings or text? You probably translated some of the text of the duplicated sliders instead of the original slider.

    Thank you for the update.

    Regards,
    Ismael

    in reply to: Yoast not working with Enfold #1115780

    Hi,

    Thank you for the update.

    Are you using the block editor? Please try to switch between the editors and see how it goes.

    Best regards,
    Ismael

    in reply to: Blank Pages after Plugin Install #1115778

    Hi,

    Great! Glad that the issue is solved. Please don’t hesitate to open a new thread if you need anything else.

    Have a nice day!

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Did you change the shotcode from “[rpost]” to “[rpostport]”? That’s the new name or tag of your shortcode.

    Best regards,
    Ismael

    in reply to: Submenu (mega menu) images on right side #1115703

    Hi,

    Thank you for the update.

    You can use this css code to change the link color on hover.

    #top #header .mega_menu_title:hover a {
        color: red;
    }
    

    Best regards,
    Ismael

    in reply to: Enable Related Posts #1115699

    Hi,

    According to the enfold-related-posts-element.php > avia_include_shortcode_template function, the shortcode file should remain inside the shortcodes folder of the plugin directory. Do you see any errors after activation? I will tag @Mike to the thread.

    Best regards,
    Ismael

    in reply to: Private post made public after update #1115498

    Hi!

    Thanks for the update.

    You didn’t mention that “status” is a custom field, and not the default post status. Maybe I just missed it. Anyway, we adjusted the query a bit to query posts with that custom field.. The “test-2/” posts should appear in the AJAX search when you search for the code “359017”.

    Regards,
    Ismael

    in reply to: Enfold latest portfolio widget order reverse #1115484

    Hey!

    My bad. I missed the link to the single portfolio page, so I actually thought you are referring to the portfolio grid elements in the home page. We’d like to edit the widget file, but the Appearance > Editor panel is not accessible. Please enable it or create a new thread and post the FTP details in the private field.

    Thank you for the update.

    Best regards,
    Ismael

    in reply to: Flyout Menu two columns #1115482

    Hi,

    Thanks for the update.

    You can use this css code to group the menu items into two columns.

    #top #av-burger-menu-ul {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        max-width: 800px;
        margin: 0 auto;
    }
    
    #top #wrap_all #header #av-burger-menu-ul > li {
        width: 50%;
        text-align: left;
    }

    Please don’t forget to toggle the Enfold > Performance > File Compression settings after adding the code.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    How did you add that information? It’s not included in the upcoming events template by default.

    Best regards,
    Ismael

    in reply to: Coupon field in cart widget #1115480

    Hi,

    Thank you for using Enfold.

    Have you tried using the “woocommerce_mini_cart_contents” or the “woocommerce_widget_shopping_cart_before_buttons” hook to insert the coupon field after the product column?

    An example can be found here: http://hookr.io/actions/woocommerce_widget_shopping_cart_before_buttons/

    Best regards,
    Ismael

    in reply to: Enfold latest portfolio widget order reverse #1115468

    Hi,

    Thank you for the update.

    The above modification is for the Portfolio Widget, which is different from the Portfolio Grid element. You can actually adjust the order of the items directly from the element’s panel. Edit the Portfolio Grid element, scroll down a bit and you should see the “Order by” and “Display order” settings. Let us know if it works.

    Best regards,
    Ismael

    in reply to: Preventing IMAGE TITLE showing as TOOLTIP #1115465

    Hi,

    Thank you for using Enfold.

    Try to replace it with the following code.

    // remove title attribute
    add_action('wp_footer', 'ava_new_custom_script_masonry');
    function ava_new_custom_script_masonry(){
    ?>
    <script type="text/javascript">
    (function($) {
        $(window).on('debouncedresize av-height-change load', function() {
            setTimeout( function() {
                 $('a, img').removeAttr('title');
            }, 300 );
        });
    })(jQuery);
    </script>
    <?php
    }

    This should remove the title attribute once the next set of masonry items are loaded.

    Best regards,
    Ismael

    in reply to: LayerSliderWP changes not showing #1115459

    Hi,

    This is the same issue as in the following thread. You don’t need to create duplicates of the slider because you can translate the content in the Polylang > String Translation panel.

    // https://kriesi.at/support/topic/erweiterter-layerslider-in-second-language/#post-1115013

    And do not set a specific width to the button because the button text might get cut off when the translation is longer than the original text.

    Best regards,
    Ismael

    in reply to: Blog-Module error #1115456

    Hi,

    Thank you for the update.

    There are a few errors related to the Contact Form 7 and Cleaver Reach plugins. Have you tried disabling those plugins temporarily? Did you modify the logoslider.php file in your child theme? We tried to check it but the Appearance > Editor panel is not accessible.

    Best regards,
    Ismael

    in reply to: recaptcha v3 keeps authenticating #1115455

    Hi,

    Thank you for the update.

    The site is not running on the latest version of the theme. Please upgrade to version 4.5.7, then toggle the Performance > File Compression settings afterwards.

    Best regards,
    Ismael

    in reply to: Language flags management > footer & header #1115454

    Hi,

    Thank you for the update.

    The theme will automatically append the language flags to the main menu, so you don’t have to configure the language switch in the WPML settings. We removed the language switcher configuration.

    Best regards,
    Ismael

    Hey datadirt,

    Thank you for using Enfold.

    The “schmitt-gibt-krone-at-fuehrung-ab/” post or page redirects to the home page, so we can’t see the magazine element. Did you set a redirect? Does the page/post exists?

    Best regards,
    Ismael

    in reply to: Password protected content #1115443

    Hi,

    Thank you for the update.

    1.) We’ve added this code in the Quick CSS field to hide the gray box or the meta container in the password protection page.

    .post-password-required .av-single-event-meta-bar {
        display: none !important;
    }

    2.) We can’t reproduce this issue on our end, so there is probably a plugin conflict somewhere. Have you tried to disable the plugins temporarily? Did you add any custom scripts or snippets?

    Best regards,
    Ismael

    Hi,

    Have you tried to temporarily disable the plugins including WordFence? And if I am not mistaken, your server is blocking the admin-ajax.php file according to the error logs. Please ask your host if they can rule out this file.

    [Sat Jun 08 10:32:50 2019] [error] [client 93.85.78.188] ModSecurity: Access denied with code 418 (phase 1). Pattern match “^Mozilla/5.0 \\(Windows NT 6.1; WOW64; rv:40.0\\) Gecko/20100101 Firefox/40.1$” at REQUEST_HEADERS:User-Agent. [file “/dh/apache2/template/etc/mod_sec2/99_dreamhost_rules.conf”] [line “345”] [id “1990098”] [msg “Malicious Bot UA”] [hostname “gatehealing.com”] [uri “/wp-login.php”] [unique_id “XPvxQq3srLoAABdq-JsAAAAJ”]
    [Sat Jun 08 10:32:51 2019] [error] [client 93.85.78.188] ModSecurity: Access denied with code 418 (phase 1). Pattern match “^Mozilla/5.0 \\(Windows NT 6.1; WOW64; rv:40.0\\) Gecko/20100101 Firefox/40.1$” at REQUEST_HEADERS:User-Agent. [file “/dh/apache2/template/etc/mod_sec2/99_dreamhost_rules.conf”] [line “345”] [id “1990098”] [msg “Malicious Bot UA”] [hostname “gatehealing.com”] [uri “/”] [unique_id “XPvxQ63srLoAAALHKIAAAAAI”]

    Best regards,
    Ismael

Viewing 30 posts - 21,931 through 21,960 (of 66,745 total)