Forum Replies Created
-
AuthorPosts
-
February 5, 2022 at 8:10 pm in reply to: Social Icons Top Bar – Not opening in New Tab & Youtube Link Does Not Appear #1339088
Hey Eleina_Shinn,
Thank you for the link to your site, I see that your top bar social icons don’t have the target _blank attribute as they should, I’m not sure what is causing this, perhaps a custom script or a plugin, you could try disabling these or I wrote this script to add it back, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function custom_social_target_script() { ?> <script> (function($){ $('.av_extra_header_active>.container>.social_bookmarks li').each(function(){ $('a').attr('target','_blank'); }); }(jQuery)); </script> <?php } add_action('wp_footer', 'custom_social_target_script');Your YouTube icon is showing for me

and each of your social icons have a mouse-over color, FB is blue and YT is red, a little different from your red so that is why the background changes some, did you want to remove the mouse-over color?
If you don’t see the YT icon please check your browser for an AD-Blocker or a FB browser add-on which would be blocking it from you.Best regards,
MikeHi,
Thank you for the login, WordPress often chooses the images by the attachment ID, in this case the name of the image file was correct but the attachment ID was for a different image, I corrected the attachment ID from 6001 to 6012 and now the correct image shows, please clear your browser cache and check.
Best regards,
MikeHey envapk2,
Thank you for the link to your site, I tested this solution on my demo site and it does work correctly, please check that you followed the solution correctly:
First ensure that this function is in your child theme functions.php:add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1); function avia_include_shortcode_template($paths) { $template_url = get_stylesheet_directory(); array_unshift($paths, $template_url.'/shortcodes/'); return $paths; }then ensure that your child theme directory structure is: /shortcodes/section/section.php

and ensure that you edited the section.php correctly
I have linked to my test page below.Best regards,
MikeFebruary 5, 2022 at 6:35 pm in reply to: blue line appears when closing an accordion toggle on mobile view #1339079Hi,
Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:.toggler .toggle_icon, .toggler:hover .toggle_icon * { transition: none !important; -webkit-transition: none !important; }After applying the css, please clear your browser cache and check.
Best regards,
MikeFebruary 5, 2022 at 5:36 pm in reply to: Blank space below the menù only on the desktop version #1339070Hi,
Glad to hear that you have this sorted out, 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 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,
MikeHi,
Glad Yigit 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,
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,
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,
MikeFebruary 5, 2022 at 5:23 pm in reply to: Following updates WP 5.9 et Enfold theme unable to save or close builder windows #1339055Hi,
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,
MikeHey Julian,
Thanks for your question you rule looks too general for the layerslider, I would expect this to apply to multiple layers which could be causing your issue, try adding this css in the layerslider style options for the specific layer:
border-radius: 20px;
If this doesn’t help please include an admin login in the Private Content area so we can be of more assistance and perhaps a screenshot of the layer you want to target.Best regards,
MikeHey Manfred,
Thank you for the link to your site, I added this to your child theme stylesheet:#top.single-post .blog-meta { display: none; }now this will not show on single posts but will continue to show on your archives, please clear your browser cache and check.
Best regards,
MikeHi,
!important; helps override the previous rule, you can read more about it here.
Since this is working for you shall we close this then?Best regards,
MikeHi,
I see with Nikko’s help in portrait mode icons appears on the top, when in landscape mode icons are in the main header area at the right of the logo, and this is the best solution for mobile because in portrait there is not enough room for the social icons to be to the right of the logo.
Did you have any other questions about this?Best regards,
MikeFebruary 5, 2022 at 3:43 pm in reply to: Following updates WP 5.9 et Enfold theme unable to save or close builder windows #1339038Hi,
Thank you for your patience and the login to your site, the error is caused by the plugin WordPress Mentions Légales I disabled and the builder works correctly, I recommend not using this plugin.Best regards,
MikeHi,
Thanks for the links to your test pages, and they look like they are working correctly, the first images “faith” on /test-post-daily-word-by-topic-testing-faith/ points to ▸
/category-test-faith/ and it’s first image points to the post ▸ /daily-word-god-will-provide-kingdom-learners-2/
I see from your update that you sorted out the featured image.
For the Year category, just add a number year as a second category to your posts

then use a masonry element with only the years selected:

and set the sorting options:

and this is the expected results:

Best regards,
MikeHi,
I believe that the error occurs to the outdated version Firefox 96.0.3, please update to the current version of FireFox 80.0.1
I checked your two links the current version of FireFox and found no errors.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,
Glad to hear, to adjust the text try this css:#main .main_color .avia_textblock td .p1 { margin: 0; line-height: 20px; font-size: 18px; color: #000; }To remove the extra padding & margin from the images above to tighten it up, try this css:
#main .main_color .avia_textblock td img { margin: auto; padding: 0; } #main .main_color .avia_textblock tr:nth-child(1) td { padding: 0; }Please see the screenshot in the Private Content area of the expected results.
After applying the css, please clear your browser cache and check.Best regards,
MikeHey markus-fischer,
Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:ul.disc, .entry-content-wrapper ul { list-style: none !important; margin-left: 0; padding-left: 0; } .entry-content-wrapper ul li { padding-left: 1em; text-indent: -1em; } .entry-content-wrapper ul li:before { content: "✓"; padding-right: 5px; color:#000 !important; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHey peta_moonstone,
Please link to an example page so we can examine, what size would you like it to be?Best regards,
MikeHi,
Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:#main .main_color .avia_textblock td { border-color: transparent; } #main .main_color .avia_textblock tr, #main .main_color .avia_textblock table { background: transparent; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHey GiantTitan,
Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:#main #testimonials .slide-entry-wrap.active-slide { -webkit-animation: none; animation: none; opacity: 1; visibility: visible; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Thanks for the link to your site, I tested this on Windows with FireFox 97.0b9 and the error didn’t occur, please see the screenshot in the Private Content area, I also tested on a Mac but since it didn’t already have FireFox installed the latest version for Mac was 80.0.1 which also didn’t show the error, so this must be specific to your version, please try updating.
I also tested on Chrome & Safari and both looked correct.Best regards,
MikeHey Ryan,
Thank you for the link to your page, I wouldn’t recommend forcing the nesting of columns with the Avia Layout Builder Debugger perhaps I can help you achieve this another way, currently your “icons” are images in a table and are side-by-side, what is about this setup that is not to your liking?Best regards,
MikeFebruary 4, 2022 at 10:23 pm in reply to: How to delete demo Instal under wordpress.com as hoster easily and quickly? #1338958Hi,
This should be ok on a testing domain with your current license.
I would recommend the regular web hosting instead of Managed WordPress Hosting and not their “special” WordPress install, because as with many hosts the Managed WordPress Hosting include a customized install that forces jQuery into the footer & removes the option for you to control it yourself, it also adds so ModSec filters that can make importing demo difficult and installs a “must use” caching plugin with a lazy load option that is based on Smush which has some issues right now, so disable this option.Best regards,
MikeHi,
Thanks for the feedback, so yes, create a category to show the 6 main categories on the Daily Word – ALL page ie: “Overall or Daily Word”
then create your 6 other categories that each post will below to
then create a “year” category so you can have a “Storied By Years” element in the future.
you can add as many categories as you like to each post for future sorting, such as “Mens Stories” & “Teen Stories” and you may want to allow the categories to show on the posts pages, so perhaps readers will read more similar stories, sort of like how tags might be used, but categories offer more options than tags.
You might find it useful to print a mind map of your flow in interlinking to refer to in the future.Best regards,
MikeHi,
Sorry, I was getting my train of thought mixed up, but yes you can use the Advanced Layout Builder on your new posts instead of the Classic Editor.
As for showing the date, if we use the blog element we can use the solution above to hide everything except the date, I believe there is a similar solution for the masonry element, but covering that right now might confuse the topic.
About the categories, your flow seems to be Daily Word ALL ▸ Post, that is you have one page that lists all of your posts and links directly to it.
On the other site is a page with a grid of 6 categories ▸ that link to a “category page” ▸ that then links to the individual posts.
Which way do you want to go?
As for your last question about changing the layout of the new post, yes we can adjust it to look like your current “pages”, I’ll explain more later, let’s sort out the “flow” of your site first.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,
Mike -
AuthorPosts
