Forum Replies Created

Viewing 30 posts - 13,171 through 13,200 (of 35,286 total)
  • Author
    Posts
  • in reply to: Corrupted Thumbnails on Enfold Latest News Sidebar Widget #1340266

    Hi,
    Thank you for the link to your site and the screenshot, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    .news-link .news-thumb .wp-caption {
    	margin: 0;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Stye for a link added to the Cookie Consent Message Bar #1340265

    Hi,
    Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: link color and article date #1340262

    Hi,
    Thank you, I adjusted for these also, please clear your browser cache and check again.

    Best regards,
    Mike

    in reply to: Cannot Center Widget Title #1340261

    Hi,
    To center these footer “widgettitle” you can use this css:

    #footer strong.widgettitle {
    	width: 100% !important;
    	display: block;
    	text-align: center;
    }

    or since these titles are manually added in a text widgets you could edit them to be H3 instead of “strong” tags and use this css instead

    #footer h3.widgettitle {
    	width: 100% !important;
    	display: block;
    	text-align: center;
    }
    in reply to: link color and article date #1340259

    Hi,
    Please link to the pages so I can create css rules that filter for these, I have checked many pages but don’t see any links that are red.

    Best regards,
    Mike

    in reply to: link color and article date #1340224

    Hi,
    Thanks for the link, I adjusted for these, please clear your browser cache and check if you can find any more.

    Best regards,
    Mike

    in reply to: Open menu from a link #1340159

    Hey arasaac,
    You could try this script, I tested it with a slideshow button and it worked, so you will need to adjust it to use the class you are going to use.
    Try adding this code to the end of your functions.php file in Appearance ▸ Editor:

    function custom_script() { ?>
        <script>
    (function($){
        $('a.avia-slideshow-button').on('click', function(e) {
            e.preventDefault();
            $('.av-burger-menu-main a').trigger('click');
        });
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_script');

    If you need help adjusting this then include an admin login in the Private Content area and a link to a text page with the element you want to use as the trigger.

    Best regards,
    Mike

    in reply to: link color and article date #1340156

    Hi,
    Thank you for your patience, I have added this css to address the three types of links that were still red in your posts:

    #top #main p > strong > span > a,
    #top #main .abh_name.fn.name a,
    #top #main .entry-content p > span > a {
    	color: #0000ff!important;
    }

    2022-02-11_062904.jpg
    if you find anymore links in a post that is still red please link to it so we ca examine it.

    Best regards,
    Mike

    in reply to: Gallery and Page Title Bug #1340070

    Hi,
    Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Accordeon #1340069

    Hey fgiotto,
    Thanks for the link to your page, I would not foresee any issues, it should work fine.

    Best regards,
    Mike

    in reply to: Accordion Toggle Not Working #1340068

    Hi,
    This is not occurring when I test your page, please explain what device and browser you are using.
    Does this have anything to do with why your shortcodes.js was customized in the first place? I see that you have quite a few files in your child theme are all of these customized?

    Best regards,
    Mike

    in reply to: Custom ID images #1340064

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Cannot Center Widget Title #1340063

    Hi,
    The footer widgets are h3 on our demo we could help better if you linked to your page.

    Best regards,
    Mike

    Hi,
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 50, 1);
    function avf_header_setting_filter_mod($header_settings) {
    	if ( is_singular() ) {
    		
    		$header_settings['header_transparency'] .= " header_transparency";
    		$header_settings['header_class'] .= " av_header_top av_logo_left av_main_nav_header av_menu_right av_custom av_header_shrinking_disabled av_header_stretch_disabled av_mobile_menu_phone av_header_transparency av_header_searchicon av_header_unstick_top_disabled av_minimal_header av_bottom_nav_disabled  av_alternate_logo_active av_header_border_disabled";
    	}
    	return $header_settings;
    }

    Best regards,
    Mike

    in reply to: Cannot Center Widget Title #1340060

    Hi,
    Please include the url to the page in question so we can take a look.

    Best regards,
    Mike

    Hi,
    To force the featured image full width on posts please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #top.single-post .big-preview.single-big {
      width: 100vw !important; 
      position: relative !important; 
      left: calc(-50vw + 50%) !important; 
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    To use a custom screen width for the burger menu please see here in our documentation:

    @media only screen and (max-width: 890px) {
      #top #header .av-main-nav > li.menu-item  {
          display: none!important;
      }
      #top #header .av-burger-menu-main {
          cursor: pointer;
          display: block!important;
      }
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Accordion Toggle Not Working #1339967

    Hi,
    I reason only one opens at a time is because you have it set to Only one toggle open at a time (Accordion Mode) if you want then use the Multiple toggles open allowed (Toggle Mode) option
    2022-02-10_001.jpg
    other that that your toggles are working as expected, see our demo here.

    Best regards,
    Mike

    in reply to: Layerslider change color hover button #1339895

    Hey Angèle,
    Thanks for your question in your slider editor while the button layer is active, go to Transition then in the dropdown choose Hover Transition
    2022-02-09_004.jpg
    then go down to the Style Properties and choose the change you wish like background color or text color, etc.
    2022-02-09_003.jpg

    Best regards,
    Mike

    in reply to: Cannot make any changes in the backend, everything is white #1339894

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Remove a Line in open toggle accordion #1339890

    Hi,
    Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: update new version ? #1339888

    Hi,
    Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Accordion Toggle Not Working #1339887

    Hi,
    Thanks for the login, disabling your child theme /js/shortcodes.js by disabling this function in your functions.php solves the issue:

    function wp_change_shortcodesjs() {
       wp_dequeue_script( 'avia-shortcodes' );
       wp_enqueue_script( 'avia-shortcodes-child', get_stylesheet_directory_uri().'/js/shortcodes.js', array('jquery'), 2, true );
    }
    add_action( 'wp_print_scripts', 'wp_change_shortcodesjs', 100 );

    so there is an error in your shortcodes.js, please review, if you can not find the error then replace with a new copy of the current parent theme shortcodes.js

    Best regards,
    Mike

    in reply to: Cannot Center Widget Title #1339885

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

    h3.widgettitle {
    	text-align: center;
    }
    

    After applying the css, please clear your browser cache and check.
    If this doesn’t help please include the url to the page in question so we can take a closer look.

    Best regards,
    Mike

    in reply to: Remove 'description' title in Woocommerce #1339881

    Hi,
    Please remove the script above and the css above that hid the h2 tag and add this code to the end of your functions.php file in Appearance ▸ Editor:

    function add_product_title_to_description_tab() { ?>
        <script>
    (function($){
        var text = $('#top.single-product #wrap_all h1.product_title.entry-title').text();
        $('#tab-description h2').text(text.replace('Beschrijving', text)); 
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'add_product_title_to_description_tab');

    Best regards,
    Mike

    in reply to: Remove 'description' title in Woocommerce #1339820

    Hi,
    Thanks, I see that the Tekst 1 is added text, so while that text could be replaced with the product title, it doesn’t seem logical to add text or shortcode to be replaced when you could just as easily add the product title in the first place, do you see what I mean?

    Best regards,
    Mike

    in reply to: Products not being added to cart #1339814

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Woocommerce advanced layout editor #1339812

    Hi,
    Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Enfold gallery shows each column duplicate #1339810

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Default size font problem #1339806

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 30 posts - 13,171 through 13,200 (of 35,286 total)