Forum Replies Created

Viewing 30 posts - 7,621 through 7,650 (of 34,913 total)
  • Author
    Posts
  • Hi,
    When I check your homepage on Android I see your search and cart icons, please see the screenshot in the Private Content area.

    Best regards,
    Mike

    in reply to: H3 tags in the footer #1406277

    Hey menainfosec,
    Try this solution
    Or try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_script() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($) {       
      function replaceElementTag(targetSelector, newTagString) {
        $(targetSelector).each(function(){
          var newElem = $(newTagString, {html: $(this).html()});
          $.each(this.attributes, function() {
            newElem.attr(this.name, this.value);
          });
          $(this).replaceWith(newElem);
        });
      }
      replaceElementTag('#footer h3.widgettitle', '<p></p>');
    }(jQuery)); 
    });
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_script');

    But if you use this script you will need to not defer jQuery

    Best regards,
    Mike

    in reply to: Published date not updating in Google #1406276

    Hi,
    I searched one of your blog titles that had a date of May 1 on your site and Google also shows the same date, title and screenshot below.
    As Rikard pointed out the theme has no influence over search engine results, but it seems like Google is crawling your site.
    One issue I often see on this topic is that Google will sometimes find some random numbers or a date in the post and will use it as the post date in the search results, try using a SEO plugin to help set the schema post dates.

    Best regards,
    Mike

    in reply to: Enfold Medical Theme #1406260

    Hi,
    Glad Nikko was 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: Gradient transparent permanent header #1406259

    Hi,
    To have your header gradient show before scroll try this css:

    #top #header.av_header_transparency .header_bg {
        opacity: 1;
    }

    If you plan to have pages where this is not applied, I recommend adding the page ID so to not add this to every page, like this:

    #top.page-id-3290 #header.av_header_transparency .header_bg {
        opacity: 1;
    }

    To flip the header gradient colors, just swap the order of the colors in the above css, like this:

    #header.header_color > .header_bg {
     	background-image: linear-gradient(rgba(20,21,23,0) ,rgba(20,21,23,1)100%);
     	background-color: transparent;
     }

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

    Best regards,
    Mike

    in reply to: How to disable animated number section #1406226

    Hi,
    You should see the numbers without any animation, as requested above, when I check your page this is what I see:
    Enfold_Support_1961.jpeg

    Best regards,
    Mike

    in reply to: CSS Dyanmic #1406225

    Hi,
    Thanks for the screenshots, examining the gold font color for the H2 in the screenshot it looks like you want to apply this css:

    h2 {
        color: #e4b632 !important;
        text-transform: none !important;
    }

    but I didn’t find this css in the Enfold Theme Options ▸ General Styling ▸ Quick CSS field or in your child theme stylesheet or in your WordPress ▸ Customize ▸ Additional CSS, but I did find it in your Custom CSS & JS plugin in the Single post blog ES entry
    Enfold_Support_1957.jpeg
    this plugin allows you to set rules for when the css will be used and this page doesn’t match any of the rules, except when you preview the page:
    Enfold_Support_1959.jpeg
    so please try adding this page to your rules for this css for it to show on the frontend.

    Best regards,
    Mike

    in reply to: leaflet map custom icon not showing #1406218

    Hi,
    Thanks for the feedback, I misunderstood, please do contact the plugin author, we can not correct the plugin error from the theme it will require the plugin files to be corrected.

    Best regards,
    Mike

    in reply to: Admin-Seite wählt Hauptmenü nicht an #1406216

    Hi,
    Thanks for the feedback, I was able to load your site and for the news page linked below I added this css to your Quick CSS:

    .slide-entry .slide-meta,
    .av-masonry-entry .av-masonry-date {
    	display: none;
    }

    and the dates are now not showing.
    Please clear your browser cache and check.
    Please note that Safari 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 to disable animated number section #1406212

    Hi,
    Thanks for the feedback, please include this css also:

    .js_active #top .avia-animated-number-title {
        visibility: visible;
    }

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

    Best regards,
    Mike

    in reply to: boxed layout but using content 1/1 full size #1406178

    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

    Hi,
    Glad to hear that you have this sorted out, and thanks for sharing your solution. 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: leaflet map custom icon not showing #1406176

    Hi,
    Perhaps this plugin is also preventing the marker from showing, try disabling your plugins and see if the marker then shows, I have tested your custom marker on a leaflet map element on my test site without plugins and it shows correctly, as you can see in the screenshot and link above.

    Best regards,
    Mike

    in reply to: Centered Logo with navigation overlapping #1406175

    Hi,
    Try this css instead:

    @media only screen and (min-width: 780px){
    #top #header .av-main-nav li:nth-child(3) {
        margin-right: 125px;
    }
    #top #header .av-main-nav li:nth-child(4) {
        margin-left: 125px;
    }
    #top .main_menu .avia-menu.av_menu_icon_beside {
        padding-right: 0;
    }
    }

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

    Best regards,
    Mike

    in reply to: Gradient transparent permanent header #1406173

    Hi,
    Thanks for the login, to have the top color section behind the header I set the header to Transparent Header, please check.
    As for the “PERSONALIZED & DISCRETE APPROACH” columns the second set has different settings that the first set and the third set has Separator / Whitespaces in their own columns unlike the first set, try removing the second and third set of columns and cloning the first set two more times in the same color section so all of them are together.
    Another option would be to remove all of the Separator / Whitespaces and use css for a top and bottom border for your text. Let us know if you want help with this css.

    Best regards,
    Mike

    in reply to: Mobile menu – Font size and colour #1406129

    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: Change H1 and H2 font size for in mobile view #1406128

    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

    Hi,
    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    Hi,
    Thanks for the login, I did see the issue you described, and as I examined the WooCommerce Memberships plugin files I found that there seemed to be files for the block editor, so I thought that perhaps the plugin didn’t account for people still using the Classic Editor like you are. I tested by going to Enfold Theme Options ▸ Select Your Editor and choose the Block Editor then I activated the plugin and opened your About page, the first text element and all of the editor options were showing. I returned all of my changes back to the way I found the site.
    So give this a try, I don’t believe there is anything we can do to correct the error the plugin is producing in the Classic Editor, but this seems to be a reasonable solution.

    Best regards,
    Mike

    in reply to: Z-index overlapping colour Section #1406112

    Hi,
    Thanks for the screenshots, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top .avia-fullscreen-slider.el_after_av_section {
    	z-index: 0;
    }

    I would recommend adding a custom class to the slider and replace the classes .avia-fullscreen-slider.el_after_av_section in the rule above so this doesn’t conflict with other sliders on your site.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Home on mobile navigation is not clickable #1406109

    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: “You may also like” images are cropped #1406108

    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

    Hi,
    Thanks for your feedback and your feature recommendation. Glad to hear that you have found a workaround for your situation. 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: Can’t Edit the Home Page #1406088

    Hi,
    It is the last code block shown in the Avia Layout Builder Debugger, please see the screenshot in the Private Content area.
    But since the page doesn’t fully finish loading you may need to delete the page and use the new page I created for you.

    Best regards,
    Mike

    in reply to: Can’t Edit the Home Page #1406089

    Hi,
    It is the last code block shown in the Avia Layout Builder Debugger, please see the screenshot in the Private Content area.
    But since the page doesn’t fully finish loading you may need to delete the page and use the new page I created for you.

    Best regards,
    Mike

    in reply to: Add custom fonts to LOCALHOST failed #1406087

    Hi,
    Glad we were able to help and thank you for sharing your solution as it may help future readers, 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: timeline – horizontal or vertical site #1406078

    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: how can I enable view on google in map block #1406077

    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: how can I enable view on google in map block #1406072

    Hey papieren,
    Please see this article: How do I create a link to directions?
    Then add your link to the tooltip field for your marker, for example:

    <a title="Google Map and Clickable Directions" href="
    https://www.google.com/maps/dir/43.0342144,-71.5128832/Boston,+M (Email address hidden if logged out) ,-71.5620741,10z/data=!3m1!4b1!4m10!4m9!1m1!4e1!1m5!1m1!1s0x89e3652d0d3d311b:0x787cbf240162e8a0!2m2!1d-71.0588801!2d42.3600825!3e0" target=blank>For Directions & a detailed Google Map click here</a>

    then when the marker is clicked the tooltip with the link will show:
    Enfold_Support_1953.jpeg

    Best regards,
    Mike

    in reply to: timeline – horizontal or vertical site #1406071

    Hey Gagik,
    Please try using the timeline element:
    Enfold_Support_1949.jpeg

    Best regards,
    Mike

Viewing 30 posts - 7,621 through 7,650 (of 34,913 total)