Forum Replies Created

Viewing 30 posts - 12,391 through 12,420 (of 34,552 total)
  • Author
    Posts
  • in reply to: Post slider dots indicator #1340411

    Hi,

    @venocl
    I tested Guenni007’s edited file in my child theme as posted here ensuring the directory structure is: /wp-content/themes/enfold-child/shortcodes/postslider/postslider.php
    and it works correctly with the latest version
    2022-02-13_019.jpg
    Thanks Guenni007

    Best regards,
    Mike

    in reply to: Editor not working without saving as a draft before #1340409

    Hey Nicolas,
    Thank you for your patience, but the login you posted is not working.
    I tried to test this on a new install using an editor role and was able to use the Advanced Layout Builder on a Post and a Page without saving, I could add and edit elements creating a full page/post. What user role did you have trouble with?
    Did you test by disabling your plugins?
    Are you using any user role or security plugins?
    Did you try multiple user logins to ensure it was not only one user with this error?

    Best regards,
    Mike

    Hi,
    Thank you for your patience, I took a look at your page https://domain.com/blog/page/2/ but it didn’t load as https://domain.com/blog/page/2/?s= for me, I tried a few other paginations and none of them loaded with the trailing /?s=
    You said that you tried the solution here and it didn’t work for you, I found that your page source code for this solution is showing the < and > html entities incorrectly &lt; and &gt;
    2022-02-13_017.jpg
    so please check your code and ensure when you paste it the html entities don’t change.
    I also found that if you search the source code for ?s= the yoast-schema-graph is adding it:
    2022-02-13_018.jpg
    so you may want to also look at that.
    I hope this helps.

    Best regards,
    Mike

    in reply to: Cannot Center Widget Title #1340406

    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 #1340400

    Hi,
    Your css is still being served from wpo-minify cache:
    2022-02-13_014.jpg
    /wp-content/cache/wpo-minify/1644759388/assets/wpo-minify-header-070ae8c4.min.css
    and it looks like cloudflare is active
    2022-02-13_015.jpg
    are you also using litespeed caching on your server?
    2022-02-13_016.jpg
    Try disabling all of these and check again in a few hours, it can take a while for these to stop serving the cache.
    Please note that yesterday in my screenshot showing that the widget titles were centered, you can see that the “back to top” arrow was working fine, see the screenshot below in the Private Content area.

    Best regards,
    Mike

    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

    Hey mebi,
    Thank you for your patience, I see that you are using Version: 4.8.6.2, I tried to recreate this issue on our current version 4.8.9.1 and was not able to recreate so I recommend updating to the current version.
    Here is how I tested, I used a different address for each field describing the field used:
    2022-02-13_011.jpg
    and I used (Email address hidden if logged out) as the contact form email, ie. the visitors email:
    2022-02-13_010.jpg
    the email sent from the Autoresponder only shows the two Autoresponder address:
    2022-02-13_012.jpg
    and the email sent to “you” the admin has the Reply-To as the contact’s email:
    2022-02-13_013.jpg
    since this test was with the default WordPress PHP Mailer the only thing I can imagine is that either there was a bug in that version or you are using a SMTP plugin which is directing the emails through your mail server which is changing the email due to the server’s policies to combat spam, which if that is the reason you will have to talk to your web host as we can’t control them.
    From the above test you can see that using the current theme with a new install the Autoresponder doesn’t show the admin email address.

    Best regards,
    Mike

    in reply to: link color and article date #1340393

    Hi,
    Ok, to display the post meta data you either need to manually add the shortcode Yigit posted above to every post, which you don’t want to do, or change the Theme Options ▸ Blog Styling to one that shows the post meta data, the only issue you seem to have with this is that the excerpts are too short and the meta was above the excerpts, so I added this to your functions.php to make the excerpts longer:

    add_filter('avf_postgrid_excerpt_length','avia_change_postgrid_excerpt_length', 10, 1);
    function avia_change_postgrid_excerpt_length($length)
    {
       $length = 300;
       return $length;
    }

    and this to more the blog grid meta below the excerpt:

    function custom_script() { ?>
        <script>
    (function($){
      $( '.slide-entry' ).each(function() {
      $( this ).find( '.slide-meta' ).insertAfter( $(this).find('.entry-footer'));
      });
     })(jQuery);
     </script>
        <?php
    }
    add_action('wp_footer', 'custom_script');

    I believe that it is very close to matching, probably no one will notice the change:
    2022-02-13_103828.jpg
    and now the posts have the meta:
    2022-02-13_009.jpg

    Best regards,
    Mike

    in reply to: Cannot Center Widget Title #1340390

    Hi,
    Do you mean you “back to top” arrow? I see your caching is active again, try disabling it and your cloudflare, then wait a while and check again.

    Best regards,
    Mike

    in reply to: Buttons flipping below each other in responsive view #1340388

    Hi,
    Thanks for the screenshot, I see that Yigit’s css is meant to work up to 767px, which it does, at 768px is when the error begins until 990px
    so please leave that css and include this css also:

    @media only screen and (min-width: 768px) and (max-width: 989px) { 
    #top .flex_column.av-b06jd-7aa723c4880ea8922c045f58448a9c6d, #top .flex_column.av-3yndl-7bbbd9cec1b3026b5be7583f5d30dfb1 {
      width: 50% !important;
      display: inline-block;
      float: none;
    }
    #top .flex_column.av-am57p-d4ca5034c8232c647ae2a808fa9f3665,#top .flex_column.av-49jyx-6d77460c89009f4c568b495af470f2f4  {
      width: 100% !important;
    }	
    }

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

    Best regards,
    Mike

    in reply to: Logo in the Sockel #1340384

    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: Plugin Problem with the theme #1340382

    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: logo in burger menu #1340379

    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: Meta Title Showing — Gallery Element #1340378

    Hey Corina,
    Please see this solution for the contentURL meta tag error.

    Best regards,
    Mike

    in reply to: Font-size and center text in footer #1340376

    Hi,
    For mobile you will need to use a smaller font size than 14px, but even then you will probably need to use two lines, I’m not sure how small you will want to go, but here is an example:

    @media only screen and (max-width: 767px) { 
    #socket .copyright {
        font-size: 10px;
        display: inline-block!important;
    }
    }

    2022-02-13_006.jpg

    Best regards,
    Mike

    Hi,
    To have a transparent mobile header please use Yigit’s css above:

    @media only screen and (max-width: 990px) {
    .responsive.html_mobile_menu_tablet #top #wrap_all #header { 
            position: absolute;
    }
    .html_mobile_menu_tablet #top #wrap_all .av_header_transparency {
    	background: transparent;
    }
    }

    2022-02-13_004.jpg
    Now currently on desktop you have a fixed header that is transparent until you scroll, then it is blue, to have that blue transparent add the second css separately:

    #top .header_bg {
      background-color: transparent;
    }

    2022-02-13_005.jpg

    Best regards,
    Mike

    in reply to: Font-size and center text in footer #1340367

    Hi,
    Glad this helps, sorry about the other thread, it sounded like we were done,
    So a shadow to the burger menu icon will be a square shadow because the png image is square, you have two options inset box-shadow:
    box-shadow: rgba(0, 0, 0, 0.6) 3px 2px 9px -3px inset;
    2022-02-13_001.jpg
    and regular box-shadow:
    box-shadow: 5px 5px 5px rgba(0,0,0,0.3);
    2022-02-13_002.jpg
    you would add them to the other css like this:
    2022-02-13_003.jpg
    But I don’t think this is what you really want, I believe you want a shadow that outlines the hamburger image and for that you will need to add it via photoshop, you can probably get it done on fivver this afternoon.

    Best regards,
    Mike

    in reply to: Styling of burger fly-out-menue #1340364

    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: Font-size and center text in footer #1340324

    Hi,
    I see, sorry you need to add it like this:

    #socket .copyright {
    float: none;
    width: 100%;
    display: inline-flex;
    justify-content: center;
    font-family: 'press-start-2p';
    font-size: 15px;
    }
    #socket .copyright a {
    	padding: 0 10px;
    }

    one rule for copyright text, and one rule for copyright links.

    Best regards,
    Mike

    in reply to: Styling of burger fly-out-menue #1340322

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

    .html_av-overlay-side-classic #top #wrap_all .av-burger-overlay #av-burger-menu-ul li a {
        border-color: #fff;
    }
    #top #wrap_all .av-burger-overlay #av-burger-menu-ul li a .avia-menu-text {
    	font-size: 18px;
    	font-family: 'verdana';
    }
    #av-burger-menu-ul {
        background-repeat: no-repeat;
        background-image: url(https://joakims.art/wp-content/uploads/2022/02/bg-intro-2000px.jpg);
        background-position: 50% 100%;
        background-attachment: scroll;
        background-size: cover;
    }

    adjust the background image to suit but ensure it is in a profile image that meets the desktop size at minimum, the mobile should be the same aspect and scales down fine.
    2022-02-12_011.jpg

    Best regards,
    Mike

    in reply to: Font-size and center text in footer #1340319

    Hi,
    I don’t see the css above in your stylesheet, please check or add it in the WordPress ▸ Customize ▸ Additional CSS field

    Best regards,
    Mike

    in reply to: Cannot Center Widget Title #1340318

    Hi,

    ok

    Best regards,
    Mike

    in reply to: Font-size and center text in footer #1340315

    Hi,
    Try adding this:

    #socket .copyright a {
    	padding: 0 10px;
    }

    Then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: how can i make the burgee menu bigger and more noticeable? #1340313

    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 #1340310

    Hi,
    Glad to hear, if you have other changes to make I would recommend leaving these off until you have made them so you are not fighting with them, shall we close this then?

    Best regards,
    Mike

    in reply to: Icon box colors not showing up correctly on live website #1340309

    Hi,
    Glad to hear that you have this sorted out, please note that if you are minifying in WP Fastest Cache and merging in the theme options the second minification could lead to errors because minifying looks to remove spaces and some characters. Try to use the theme merging and the WP Fastest Caching, but disable the WP Fastest minifying.
    I’m not knocking WP Fastest Cache, just multiple minifying, Autoptimize creates this error the most.
    Shall we close this thread then?

    Best regards,
    Mike

    in reply to: Corrupted Thumbnails on Enfold Latest News Sidebar Widget #1340308

    Hi,
    Glad to hear, it looks like the news thumbnail that is also the featured image for that post is getting the classes wp-caption featured , which has the extra margin that the above css adjusted for, I’m not sure why I will need to test more and let the Dev Team know of my findings. Either way, I don’t expect this to affect you further in the future.
    You can move your Quick CSS to your child theme stylesheet and comment out rules one at a time to check if they are still needed, this is probably a huge job :(
    Another option is to use the chrome extension CSS Used, this will output all of the css used for the page you are viewing, if you copy the code to a text file and check a page, a post, an event, etc then you can compare it to your Quick CSS and see if any rules are not used, probably still a big job :|
    I thought there used to be an extension that would output the un-used css from your stylesheet but I couldn’t find it, perhaps there is a plugin or a website that now does this, try searching for one as this would be the easiest solution :)

    Best regards,
    Mike

    in reply to: Cannot Center Widget Title #1340306

    Hi,
    My screenshot above is in Chrome, please disable all caching and minifying plugins and leave it disabled for a day while the Cloudflare server cache catches up, if you are using Safari please note that testing with iPads & iPhones can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.

    Best regards,
    Mike

    in reply to: how can i make the burgee menu bigger and more noticeable? #1340305

    Hey Jak73,
    Ok, burger icon replaced with a hamburger:
    2022-02-12_010.jpg
    Please add this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    .av-hamburger::before {
      content: url(https://img.icons8.com/external-sbts2018-lineal-color-sbts2018/58/000000/external-hamburger-fast-food-sbts2018-lineal-color-sbts2018.png);
      display: block;
      padding-top: 15px;
    }
    .av-hamburger-inner {display:none!important;}

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

    Best regards,
    Mike

    in reply to: fontello symbols and dsgvo #1340303

    Hi,
    The fontello icon fonts are stored on your server at:
    /wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.woff2

    Best regards,
    Mike

Viewing 30 posts - 12,391 through 12,420 (of 34,552 total)