Forum Replies Created

Viewing 30 posts - 2,311 through 2,340 (of 34,549 total)
  • Author
    Posts
  • in reply to: Floating text window, with Close option #1451905

    Hi,
    We would need to see how you are using this, and where you want to use this. Perhaps you added it to your footer and now it is on all of your pages?
    Please include an admin login in the Private Content area and explain were you want this to show show we can examine. Then example that I show only works on the page with the code block, but I added it to the page and not the footer or widget.

    Best regards,
    Mike

    in reply to: social sharing #1451904

    Hi,
    Strong is <strong> ... </strong>
    Glad we were able to help 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: Privacy policy button #1451892

    Hey Meetx,
    Did you see the option at Enfold Theme Options ▸ Cookie Consent ▸ Show advanced options ▸ Show reopen badge?
    Enfold Support 6119
    Please give this a try.

    Best regards,
    Mike

    in reply to: social sharing #1451891

    Hey Webmaster,
    Thanks for the link to your page, I believe that you want the text to say: As-tu aimé cet article? Partagez-le!, I used Google Translate, if this is not quite right feel free to adjust the code below.
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function change_share_box_text() { ?>
      <script>
    (function($){
      var el = document.querySelector('.av-share-link-description');
             el.outerHTML = '<h5 class="av-share-link-description av-no-toc" style="text-align: center;">' + 'As-tu aimé cet article? Partagez-le!' + '</h5>';
    })(jQuery);
    </script>
      <?php
    }
    add_action( 'wp_footer', 'change_share_box_text', 99 );

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    in reply to: removing links #1451890

    Hey Advantage09,
    Thank you for the link to your site, Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_remove_link_from_slide_image_script() { ?>
      <script>
    (function($){
    $('.page-id-1046 .slide-entry a.slide-image').removeAttr('href');
    })(jQuery);
    </script>
      <?php
    }
    add_action( 'wp_footer', 'custom_remove_link_from_slide_image_script', 99 );

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    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 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: Does not Show my public Pages redirect to 404 #1451739

    Hey Monika,
    Your pages look like they are password protected with the plugin Password Protected even logged in I can’t find the password and the pages don’t display the password option, it looks like a conflict, try disabling all password protection and disabling this plugin and see if this helps.
    Enfold Support 6117

    Best regards,
    Mike

    in reply to: Menu Parallax Demo Issues #1451664

    Hi,
    Thank you for your patience, I didn’t realize that Yigit was at the WCEU conference and I heard from him that he will check when he returns. It looks like the WCEU conference ended on the 15th, so I expect a day or two for travel. Thank you for your patience.

    Best regards,
    Mike

    in reply to: Blogpost broken #1451646

    Hey northorie,
    Thanks for the link to your site, I see that you have a Advanced Layout Builder (ALB) post that has been saved as a WordPress Block Editor post, to correct click the ALB editor button and then save again and edit in the ALB editor.
    Enfold Support 6115

    Best regards,
    Mike

    in reply to: Will Customizer CSS be lost when theme is upgraded? #1451645

    Hey dburton77,
    The css in WordPress ▸ Customize ▸ Additional CSS is stored by WordPress and will not be lost when the theme updates.

    Best regards,
    Mike

    in reply to: Enfold and Super PWA #1451626

    Hey Chiara Cinelli,
    Thanks for your question, unfortunately we have not tested the SUPER PWA PRO plugin, which is the only way to know for sure.
    Please note that using the contact form is not appropriate for support questions, please log in to the support forum and open a new thread if you need further assistance.
    If you are unable to login to the support forum because you don’t have a activate support contract, please try going to your Theme Forest account and renew your support and then log in to the support forum and open a new thread.

    Best regards,
    Mike

    in reply to: remove the h3 attribute for widget titles #1451625

    Hey Webmaster,
    To change all of the widget titles from H3 to “p” add this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_widgettitle_script() { ?>
      <script>
    (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('h3.widgettitle', '<p></p>');
    }(jQuery)); 
    </script>
      <?php
    }
    add_action( 'wp_footer', 'custom_widgettitle_script', 99 );

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    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

    Hi,
    The use this to make “Portfolio” h2

    function custom_script() { ?>
      <script>
    (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('.page-id-4783 h1.main-title.entry-title', '<h2></h2>');
    }(jQuery)); 
    </script>
      <?php
    }
    add_action( 'wp_footer', 'custom_script', 99 );

    and manually change “NOS REALISATIONS EN CREATION DE SITES INTERNET” as h1
    “Découvrez notre portfolio” is h2
    as they look to be in a text element that you manually added.

    Best regards,
    Mike

    in reply to: Styling (css) areremoved/missing #1451617

    Hi,
    Try having your webserver disable X-Content-Type-Options “nosniff”, this seems to be the root of the problem.

    Best regards,
    Mike

    in reply to: GDPR banner showing in spite of everything being off #1451399

    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: Reading time on blog page #1451397

    Hi,
    I notice that you are not using a child theme and have your customization in the parent theme functions.php
    all of these customizations will be lost the next time that you update the theme.
    If you are not going to use a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:
    use wpcode php snippet and activate
    and ensure that it is activated, then save.
    I recommend that you move your customizations so you don’t lose them.
    I changed your Reading time code to this for your last requests:

    function add_reading_time_to_masonry_entry($content, $entry, $config) {
        $reading_time_html = "<div class='reading-time'></br>" . do_shortcode('[rt_reading_time post_id="' . $entry['ID'] . '" label="Lesedauer:" postfix="min" postfix_singular="min"]') . "</div>";
        $content .= $reading_time_html;
        return $content;
    }
    add_filter('avf_masonry_entry_title', 'add_reading_time_to_masonry_entry', 10, 3);

    Best regards,
    Mike

    Hey YMen45,
    Thank you for the link to your site, the title bar h1.main-title is the correct h1 for the page, but I see that you manually added two more on the page
    Enfold Support 6113
    use the following code at the end of your child theme functions.php file in Appearance ▸ Editor to change the correct one to a “p” tag, and then you can change the two manually added ones to use just one H1 tag.

    function custom_script() { ?>
      <script>
    (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('.page-id-4783 h1.main-title.entry-title', '<p></p>');
    }(jQuery)); 
    </script>
      <?php
    }
    add_action( 'wp_footer', 'custom_script', 99 );

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    in reply to: th text changed to image and italics in mobile view #1451394

    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,
    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: Sidebar Menu Descriptions font size #1451392

    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: Reading time on blog page #1451379

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top #wrap_all .all_colors h3 .span-reading-time {
    	font-size: 12px;
    }

    and adjust the font size to suit.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Mailchimp subscription #1451378

    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 dburton77,
    Thank you for the link to your site, it looks like only some of your column rows are set as equal height:
    CARDBOARD ▸ CLEAN PAPER
    PET ▸ HDPE
    and in these the equal height is working for the columns, but the tables in the columns are not controlled by this setting so that is what you see as not equal height.
    For these adding this code to the end of your child theme functions.php file in Appearance ▸ Editor will help, for this one page

    function custom_equal_height_tables_script() { ?>
      <script>
    document.addEventListener('DOMContentLoaded', function() {
        const rows = document.querySelectorAll('.page-id-4431 .av-equal-height-column-flextable');
        rows.forEach(function(row) {
            const tables = row.querySelectorAll('.avia-table');
            let maxHeight = 0;
            tables.forEach(function(table) {
                const tableHeight = table.offsetHeight;
                if (tableHeight > maxHeight) {
                    maxHeight = tableHeight;
                }
            });
            tables.forEach(function(table) {
                table.style.height = maxHeight + 'px';
            });
        });
    });
    </script>
      <?php
    }
    add_action( 'wp_footer', 'custom_equal_height_tables_script', 99 );

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    Please check your other columns so they also get the class av-equal-height-column-flextable and add this script.

    Best regards,
    Mike

    in reply to: th text changed to image and italics in mobile view #1451373

    Hey dburton77,
    Thank you for the link to your site, for the max-width 767px the heading row is hidden and the pseudo-element :before is used so the heading is stacked instead of being in a single row.
    To style the pseudo-element try this css:

    @media only screen and (max-width: 767px) {
        .responsive .avia_responsive_table .avia-data-table td:before {
            color: #0097ff;
            font-weight: 600;
            font-size: 17px;
            font-style: normal;
        }
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Sidebar Menu Descriptions font size #1451372

    Hey tonyiatridis,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .html_header_sidebar #header .av-main-nav > li > a .avia-menu-subtext {
        font-size: 16px;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    adjust the font size to suit and clear your browser cache

    Best regards,
    Mike

    in reply to: GDPR banner showing in spite of everything being off #1451371

    Hi,
    Thanks, I didn’t see this at all yesterday, but I did today, this looks like it is from the Autoptimize cache, so I disable the Autoptimize plugin and checked in different browsers.
    Please clear your browser cache and check, once you see that it is now not showing you can try enabling the Autoptimize again and try clearing the Autoptimize cache.
    Many users have issues with Autoptimize.

    Best regards,
    Mike

    Hi,
    The Feature A section is #ffffff set here:
    Enfold Support 6107
    the line is #e1e1e1 from enfold-alternate-color-border and is automatic if the color sections don’t have a manually added color:
    Enfold Support 6109
    ignore the other colors in the screenshot as it is not the same demo.

    Best regards,
    Mike

    in reply to: GDPR banner showing in spite of everything being off #1450808

    Hey gatehealing,
    Thank you for the link to your site, when I check your both of your pages I don’t find a “Learn More” button I only see a “Schedule an appointment” button.
    I checked logged in & out.
    Perhaps a screenshot would help.

    Best regards,
    Mike

Viewing 30 posts - 2,311 through 2,340 (of 34,549 total)