Forum Replies Created
-
AuthorPosts
-
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,
MikeHi,
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,
MikeHey 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,
MikeHey 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,
MikeJune 18, 2024 at 5:10 pm in reply to: Portfolio grid image quality issue on Chrome and Brave browsers #1451888Hi,
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,
MikeJune 18, 2024 at 5:02 pm in reply to: Elements with an ARIA [role], whose children [role]must contain a specific … #1451886Hi,
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,
MikeHey 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.
Best regards,
MikeHi,
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,
MikeHey dburton77,
The css in WordPress ▸ Customize ▸ Additional CSS is stored by WordPress and will not be lost when the theme updates.Best regards,
MikeHey 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,
MikeHey 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,
MikeJune 17, 2024 at 12:04 pm in reply to: triple H1 on a page where there is only the portfolio (except header and footer) #1451624Hi,
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,
MikeJune 17, 2024 at 11:28 am in reply to: triple H1 on a page where there is only the portfolio (except header and footer) #1451618Hi,
The use this to make “Portfolio” h2function 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,
MikeHi,
Try having your webserver disable X-Content-Type-Options “nosniff”, this seems to be the root of the problem.Best regards,
MikeHi,
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,
MikeHi,
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:
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,
MikeJune 16, 2024 at 7:49 pm in reply to: triple H1 on a page where there is only the portfolio (except header and footer) #1451396Hey 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
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,
MikeHi,
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,
MikeJune 16, 2024 at 7:35 pm in reply to: Equal height is not working for page with multiple tables and 1/2 – 1/2 columns #1451393Hi,
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,
MikeHi,
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,
MikeHi,
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,
MikeHi,
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,
MikeJune 16, 2024 at 2:18 pm in reply to: Equal height is not working for page with multiple tables and 1/2 – 1/2 columns #1451377Hey 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 pagefunction 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,
MikeHey 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,
MikeHey 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 cacheBest regards,
MikeJune 16, 2024 at 12:24 pm in reply to: GDPR banner showing in spite of everything being off #1451371Hi,
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,
MikeJune 16, 2024 at 12:01 pm in reply to: Colour Selection when doing different paragraphs on landing page #1451370June 15, 2024 at 11:16 pm in reply to: GDPR banner showing in spite of everything being off #1450808Hey 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 -
AuthorPosts