Forum Replies Created

Viewing 30 posts - 13,831 through 13,860 (of 34,601 total)
  • Author
    Posts
  • in reply to: Header with logo and textwidget on the right #1316958

    Hi,
    Thank you for the screencast, so there are a couple of things going on, first you are view the page at 90% zoom
    2021-08-16_002.jpg
    perhaps you are not aware that this is not the same as viewing the site in Responsive Design Mode
    2021-08-16_003.jpg
    anyways please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    @media only screen and (min-width: 1850px) { 
    #top #header #header_main .widget {
        left: 33% !important;
    }
    }

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

    Best regards,
    Mike

    in reply to: Remove fullscreen slider animation on caption #1316954

    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: Transparent Header #1316942

    Hi,
    Why would you want to add a code block to the start of each post, this would not change the header to transparency.
    Perhaps I’m not fully understanding, please try to fully explain what you are trying to do with examples, links and screenshots.

    Best regards,
    Mike

    in reply to: Remove fullscreen slider animation on caption #1316940

    Hi,
    Thanks for the feedback, I see there is an error in your css, you have added this before the rule breaking it:
    //Eliminar animació please try removing this and clearing your browser cache.
    2021-08-16_001.jpg

    Best regards,
    Mike

    in reply to: Header with logo and textwidget on the right #1316938

    Hi,
    Thanks for the feedback and I understand this but I’m unable to reproduce this on your site, what screen size do you see this at?
    I referenced the menu because it points to this happening before the mobile size.

    Best regards,
    Mike

    in reply to: Post slider question? #1316936

    Hi,
    Sorry, I have not investigated any such plugins but a quick search on WordPress gives these results for: post carousel try seeing if any of these match your needs. I would recommend not using any that require an additional frontend builder to be installed, typically this leads to conflicts.
    I hope you also have a great week and 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 element not showing text in the backend #1316934

    Hi,
    When you delete the child theme style.css it is the same as deactivating the child theme, the line at the very top:
    Template: enfold
    is what tells WordPress what parent theme to use, so if removing all of the style.css except for the top 8 lines doesn’t solve then the issue is not in that file. Did you try removing your child theme functions.php file?

    Best regards,
    Mike

    • This reply was modified 3 years, 11 months ago by Mike. Reason: moved remark per customer request
    in reply to: Footer in tablet view in two colums and two rows #1316831

    Hey profumopuntoit,
    Thank you for your patience and for the link to your page, for tablet to have your footer two columns two rows please try this css:

    @media only screen and (min-width: 767px) and (max-width: 1024px) { 
    	#footer .flex_column.av_one_fourth {
    		  width: 44%;
    	}
    }

    Please see the screenshot in the Private Content area for the expected results.
    In this screenshot you will note that the first column with the news thumbnails has a 70px by 70px image but the frame around it is 143px by 72px this is due to your custom css:

    @media only screen and (min-width: 767px) and (max-width: 989px) {
    span.news-thumb {
        width: 46% !important;
        height: 46% !important;
    }
    }

    please remove or adjust this css to correct.

    Best regards,
    Mike

    in reply to: Cannot open/close accordion tabs #1316827

    Hey ThorstenFB,
    Thank you for your patience and for the link to your site, I see in the console you are getting this jQuery error
    Uncaught Error: Syntax error, unrecognized expression: #b%C3%BCroetagen-entkernung
    2021-08-15_007.jpg
    I don’t recognize Croetagen-entkernung and I can’t find it in your source code, perhaps you do?
    If you have some custom script or a plugin try disabling it and your page should work correctly, otherwise please include admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

    in reply to: uploaded fontello icons not showing #1316826

    Hey gregcarrollLMG,
    Thank you for your patience I assume that you followed these steps in our documentation and that you didn’t get any errors that might point to PHP ZipArchive Extension not being enabled on your webhosting server. So can you link to the zip file you uploaded so I can test it?

    Best regards,
    Mike

    in reply to: Transparent Header #1316824

    Hey marladesign,
    Thank you for your patience, there is not a default setting for setting the header for all blog posts, you will need to set each one as you create the post with the Header visibility and transparency option.
    2021-08-15_006.jpg

    Best regards,
    Mike

    in reply to: Favicon not appearing #1316823

    Hi,
    I don’t believe the dev team has changed anything with the favicon, I didn’t find anything in github. I also don’t recall any specific child theme suggestions for the favicon, except for the login and admin pages.
    Did you try converting to “favicon.ico” and then uploading via FTP to your root directory, the same place as your WordPress “index.php”?
    Browsers seem to always respect a “favicon.ico” in the root directory.
    But currently many devices and browsers are looking for specific file types and sizes and some favicon generators will create them all at once for you and also provide the header code for you.
    2021-08-15_005.jpg

    Best regards,
    Mike

    in reply to: Accordion element not showing text in the backend #1316820

    Hi,
    I’m not sure which files in your child theme could be causing this as I’m not sure what the root cause is, so you will need to try through trial and error, removing all and then add back a little at a time. Try starting with your functions.php

    Best regards,
    Mike

    in reply to: Code is not visible on frontend #1316818

    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: Header with logo and textwidget on the right #1316816

    Hi,
    Thank you for your patience, your screenshot shows the main menu below your logo when your widget text is behind the logo, but I’m unable to reproduce this because the menu turns into the burger menu and the widget never shows behind the logo. What screen size are you seeing this error, I tried resizing my browser but couldn’t make the widget to show behind the logo, perhaps you have already solved this?
    2021-08-15_004.jpg

    Best regards,
    Mike

    in reply to: Post slider question? #1316815

    Hey Bertrand,
    Thank you for your patience, as I imagine your question you would like a post slider to have an animation of sliding from one side to the next when showing the next posts, I imagine this is the element you mean
    2021-08-15_003.jpg
    So as it is not this element’s animation and function is in javascript and to have a robust carousel experience it would need to be rewriten, but as an example css could be used for a basic carousel:

    #top .slide-entry-wrap.active-slide {
    animation: moveFirst 2s linear .2s;
      animation-iteration-count: 1;
    }
    @-webkit-keyframes moveFirst {
      from {
        left: 100%;
      }
      to {
        left: 0%;
      }
    }

    the problem with this is the visibility and opacity is controlled by javascript so with this css there is a flash of the element on page load, so you would really need to override the whole function with javascript, if you would like to try this you could try this article. But considering there are so many plugins that would do this it doesn’t seem like a good use of time to try to write your own.
    I recommend using a plugin that has a shortcode that you can place on the page to show it.

    Best regards,
    Mike

    in reply to: Remove fullscreen slider animation on caption #1316813

    Hey albadbdb,
    Thank you for your patience, to remove the animation on the captions and buttons on your homepage slider, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #top.home #fullscreen_slider_1 .avia-slideshow li.av-single-slide,
    #top.home #fullscreen_slider_1 .avia-caption-title,
    #top.home #fullscreen_slider_1 .avia-caption-content,
    #top.home #fullscreen_slider_1 .avia-slideshow-button {
    	-webkit-animation: 0s ease 0s normal none 1 running none !important;
    	animation: 0s ease 0s normal none 1 running none !important;
    	visibility: visible !important;
    	opacity: 1 !important;
    }

    Best regards,
    Mike

    in reply to: Dual pricing table (monthly/yearly pricing) #1316811

    Hi,
    Hopefully, Ismael’s suggestion leads you to find something that will 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

    Hi,
    Thank you for your patience, I see that Yigit has been helping you but with the recent update I thought to try to assist, so I see that on mobile the calendar element under NEJBLIŽŠÍ UDÁLOSTI doesn’t seem to show when clicked, but what is happening is the plugin script is increasing the height of the iframe via javascript and is not stoping, for example, in this screenshot the height is at 460012px and doesn’t stop.
    2021-08-15_001.jpg
    On your page I see many errors such as Failed to execute 'postMessage' on 'DOMWindow' ... does not match the recipient window's origin & parser-blocking, cross site (i.e. different eTLD+1) script, is invoked via document.write. The network request for this script MAY be blocked by the brow
    2021-08-15_002.jpg
    but I see these same errors on your /kulturni-program/ page where the plugin script seems to be working, so I don’t know why this element of the plugin doesn’t work while the other seems to work even with the errors.
    Since this is happening inside on an iframe we can not control it with css or javascript, try asking the plugin author if they have any insight.
    Sorry I was not much help.

    Best regards,
    Mike

    in reply to: Accordion element not showing text in the backend #1316766

    Hi,
    Sorry, your right I “spaced it”, I tried enabling the Enfold theme you had installed, v4.8.6.1 and the backed element content showed correctly, please see the backend screenshot in the Private Content area.
    So this points to one of the many customizations in your child theme, please check.

    Best regards,
    Mike

    in reply to: SiteGround Security plugin prevents gradients from showing #1316765

    Hey Ben,
    Thank you for sharing this, while we don’t support the SiteGround Security plugin other users may find this helpful.
    You can remove the WordPress & WooCommerce generator meta with this snippet in your functions.php
    2021-08-14_008.jpg
    remove_action('wp_head', 'wp_generator');
    and this doesn’t seem to effect the color section background gradient
    2021-08-14_009.jpg

    Best regards,
    Mike

    Hey profumopuntoit,
    Thank you for your patience, I see that your page is a woocommerce archive page, so you would go to that category and upload a thumbnail and choose Display product image and description as fullwidth page banner
    2021-08-14_005.jpg
    then you will have a full width banner on the frontend for the category
    2021-08-14_006.jpg
    Please note that Tags don’t have this option, but the shop page does in the theme options, you can also set one banner for all category pages.
    2021-08-14_007.jpg

    Best regards,
    Mike

    in reply to: Tracking contact form with Google Analytics #1316761

    Hi,
    Thank you for your patience, to change the attribute for different pages you could use an IF statment that includes the page ID like this:

    add_filter('avf_contact_form_submit_button_attr','avia_add_submit_attributes_to_cf', 10, 3);
    function avia_add_submit_attributes_to_cf($att, $formID, $form_params){
        if(is_page('500'){
      $att = "onclick=\"_gaq.push(['_trackEvent','Contact Form one Send','Click/Touch','Footer']);\"";
        }
        if(is_page('400'){
      $att = "onclick=\"_gaq.push(['_trackEvent','Contact Form two Send','Click/Touch','Footer']);\"";
        }
      return $att;
    }

    there are Conditional Tags For Home, Front & others if you wish.

    Best regards,
    Mike

    in reply to: Change breadcrumb link title #1316760

    Hey ctadlock,
    Thank you for your patience, I assume that you mean changing the PHP files when you say change the breadcrumb logic but the problem with that is you would want to use a child theme so your customization would not be lost after the next update, but you don’t seem to want to do that. Did you see the Enfold child theme that is included with the most recent full theme download?
    If you did decide to use a child theme it seems that you would want to trim the breadcrumbs after the spaces so / Furry Animals / becomes / Furry / but unfortunately I don’t believe that I can achieve this in PHP, but perhaps I could in javascript. The best way to achieve this would be to use the Say What plugin and have it do a string replace of the few breadcrumbs that you would want to change, there probably are only a few right?

    Best regards,
    Mike

    Hi,
    Thank you for your patience and for the login, since it is a live site I made no changes.
    I examined the search results for Webinars with the error and for thank with no errors, and found that the error is a result of a misplased footer element for the Webinars result
    <footer class="entry-footer"></footer>
    2021-08-14_004.jpg
    in this screenshot I show two results for comparison, the first arrow is correct the second is the arrow, the error causes the closing of misplaced tags main & two div’s
    I’m not sure why this would be occuring, I would recommend creating a staging clone of the site and try removing the content of the page to see if it corrects the search results, and if not try removing the page and creating a new blank page with the same title, and if that doesn’t help then start disabling all of your plugins until the error is corrected.
    I don’t see that you have any custom templates or functions but if you do try looking at those.

    Best regards,
    Mike

    in reply to: Video does not play on mobile in color section #1316755

    Hey Sergio,
    Thank you for your patience, this is because the video is a background video in a color section, background videos or images do not have user interaction because they are in the background. Videos do not automatically play on mobile devices and because it is a background element it has no user interaction.
    You will need to use the video element on mobile so the user will be able to start it.

    Best regards,
    Mike

    Hi,
    Glad Günter was able to clarify this for you, 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: blog image autosize #1316751

    Hi,
    Sorry for the very late reply and thank you for your patience, to remove the crop from those images in the child theme, add this code to the end of your functions.php file in Appearance ▸ Editor:

    	add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 );
    	function enfold_customization_modify_thumb_size( $size ) {
    			$size['entry_with_sidebar'] = array('width'=>845, 'height'=>321, 'crop' => false);
    			$size['entry_without_sidebar'] = array('width'=>1210, 'height'=>423, 'crop' => false);		
    		return $size;	
    	}

    Best regards,
    Mike

    in reply to: Accordion element not showing text in the backend #1316745

    Hi,
    Try clearing your browser cache because it’s showing for me now, please see the screenshot in the Private Content area.

    Best regards,
    Mike

    Hi,
    Glad this helped, the dev team has added this css to the core, for your second question you could probably achieve this with a masonry element displaying the title & excerpt as an overlay on mouse-over
    2021-08-14_002.jpg
    you will need to add some custom css to get the same look, try searching the forum as there are many users that have posted their custom css to achieve similar styles, like this one for example.

    Best regards,
    Mike

Viewing 30 posts - 13,831 through 13,860 (of 34,601 total)