Forum Replies Created
-
AuthorPosts
-
Hi,
The Dev Team says it should be released on Monday, I have checked the blog element and it will show the tags if you add this filter to your child theme functions.php:add_filter('avf_show_tags_meta', 'show_tags_on_blog_posts'); function show_tags_on_blog_posts(){ return true; }This new feature has been added to our documentation: Display post tags on Blog Posts element
Best regards,
MikeHi,
Thanks for the feedback I would still like to login and see an example before the error, such as a page or post that looks similar to the error page but before an error, and the page with the error. Perhaps by comparing the to I can identify the element “at risk” if any.
Please post us your login credentials (in the “private data” field), so we can take a look at your backend.- Install and activate ” Temporary Login Without Password “.
- Go to ” Users > Temporary Logins ” on the left-side menu.
- Click ” Create New “.
- Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
( to be sure that we have enough time to debug ). - Click ” Submit “.
- You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.
When your issue is fixed, you can always remove the plugin!
If you prefer to not use the plugin, you can manually create an admin user and post the login credentials in the “private data” field.
Please note we will not receive the email, so post the user ID and the password in the Private Content area below.Best regards,
MikeHi,
Thanks for the feedback and for explaining the odd behavior with the breadcrumbs. I have not seen this before and it sounds like something with the permalinks, but that should affect all pages. I tried resaving them and setting the default values but it didn’t help, I then put everything back to the way you had it.
I have asked the rest of the team for ideas and will write back when I hear from them, thank you for your patience.Best regards,
MikeHi,
Thanks for the login, I see from your WordPress ▸ Dashboard ▸ Tools ▸ Site Health ▸ Info ▸ Server
your Max input time is 60, try changing it to 120 or more.
I also recommend disabling all plugins except for woocommerce which needs to be installed and activated for the Shop demo.Best regards,
MikeHi,
Glad that this helped, for the example, I used the color name yellow but you can replace it with a HEX color code like #ffff00
To add some transparency you would use RGBA color codes, here is a converter
So if we want 50% transparency on a HEX color code for yellow we would get: rgba(255, 255, 0, 0.5)
In the css it would look like this:.highlight .av-special-heading-tag { background-color: rgba(255, 255, 0, 0.5); display: inline-block; }If this doesn’t help please include the url to the element in question so we can take a closer look at your specific use.
Best regards,
MikeHi,
Do you have a custom login url? The one below is not working.
What webhost are you using?Best regards,
MikeHey sarthakchoudhary,
If you want all special headings to have a background color, such as yellow add this css to your Enfold Theme Options ▸ General Styling ▸ Quick CSS field.av-special-heading-tag { background-color: yellow; }and adjust the color to suit.
If you want the background color for one specific special heading add a custom class to the special heading element, for example highlight

and use this css:.highlight .av-special-heading-tag { background-color: yellow; }If you only want the background color to be behind the text and not the whole element use this css:
.highlight .av-special-heading-tag { background-color: yellow; display: inline-block; }Hey Zdeněk,
Thanks for the link to your site this is because one of your breadcrumbs is empty but I not sure what is causing this, I see you have customized woocommerce files and productslider and you have jQuery errors in the browser console and you are using Yoast which may be changing the breadcrumbs.
JQuery errors often have a cascading effect, so first try disabling your custom sticky function.
Then try switching to the parent theme so the child theme custom files are not used.
Then try disabling your plugins.
One of these steps should identify the cause.
If not or if the cause is something that you can not change you could use this css to hide the extra backslash since it only occurs on product pages.#top.single-product #main > div.title_container > div > div > div > span:nth-child(5) { display: none; }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 Mewthom,
Please include an admin login in the Private Content area so we can check, is your webhost OVH?
If it is they disable the set_time_limit() function and will not enable it so the import times out.
If the manual import method fails due to the disabled PHP functions, try creating a localhost WordPress install and import the demo and then use the plugin Duplicator and migrate your localhost version to your webhost, see the video on the plugin page if you have not used this plugin before, it is quite easy.Best regards,
MikeHi,
To add a screenshot please try using an Screenshot service and pasting the image URL in your post, or you use DropBox, Google Drive, etc.
If it is easier you can Record the screen on your Mac or for Windows use the free Open source ShareX see this easy article: How to record screen on a Windows computer using ShareX toolBest regards,
MikeJanuary 17, 2023 at 1:03 pm in reply to: Sidebar issues with Woocommerce product page + Page Templates #1388044Hi,
On product pages that you created with the Advanced Layout Builder, you would need to use the Related Products element, so you should be able to place it where you want on the page, correct?
Perhaps I don’t understand correctly, please create an example in your sandbox sie and link to it so I can see what you mean by “bring it up”.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,
MikeJanuary 17, 2023 at 12:55 pm in reply to: How can I display the tag above the title on post blog? #1388036Hi,
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,
MikeJanuary 16, 2023 at 9:13 pm in reply to: How can I display the tag above the title on post blog? #1378960Hi,
Thanks for the feedback, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function move_post_tags_above_title() { ?> <script> window.addEventListener('DOMContentLoaded', function() { (function($){ $('.slide-entry').each(function() { $(this).find('.post-tags').insertBefore($(this).find('.slide-entry-title.entry-title')); }); })(jQuery); }); </script> <?php } add_action('wp_footer', 'move_post_tags_above_title');Best regards,
MikeJanuary 16, 2023 at 3:03 pm in reply to: Problem after change string before author in blog article #1378884Hi,
Ok, please let us know in a few days when we can close this thread.Best regards,
MikeHi,
Thanks for the login, I made an error in the code I posted above, I corrected and it’s now working, please check.Best regards,
MikeJanuary 16, 2023 at 2:41 pm in reply to: Create shortcode for post navigation left/right arrows portfolio entries #1378879Hi,
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,
MikeJanuary 16, 2023 at 2:40 pm in reply to: Error highlighting undefined array key "footer_option" and "footer_behavior" #1378877Hi,
@divedave please open a new thread with the url to the page in question and an admin login so we can be of more assistance. Since this is not your thread posting your login here will not be private and you will not see anything we write in the Private Content area.
I see that you have a child theme, if you have a custom header.php or footer.php please remove them from your child theme we do not recommend adding these files to your child theme, it is the most common reason for errors when updating.Best regards,
MikeJanuary 16, 2023 at 2:31 pm in reply to: Problem after change string before author in blog article #1378876Hi,
Thanks for the login, I corrected the issue please check.
I also moved the function from your parent theme to your child theme functions.php so it won’t be lost after your next update.Best regards,
MikeJanuary 16, 2023 at 1:47 pm in reply to: Create shortcode for post navigation left/right arrows portfolio entries #1378869Hi,
Glad to hear this helped, but to get the post count “number of number” like: [1/76] will be much harder and out of the scope for this forum.
If you really need this I recommend hiring a freelancer on upwork.com
unless there is anything else we can help with on this issue, shall we close this then?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,
Thanks for the feedback, I don’t see the javascript in your page source code, please ensure it is in your child theme functions.php file and that you copied the code from the forum and not an email notification so the symbols were not converted.
In the code you should see > and not >
If this looks correct please include an admin login in the Private Content area below so we can assist further.Best regards,
MikeJanuary 16, 2023 at 1:23 pm in reply to: How can I display the tag above the title on post blog? #1378858Hi,
@alex.ndu, this thread is about the placement of the “tags”, we would like to keep each thread on a single topic as it helps future users when searching for answers.
On your page you seem to have two Blog Posts Sliders, one for posts and one for products so I don’t know if you want to move the title below the excerpt for both of them, assuming that you do try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function move_title_below_excerpt() { ?> <script> window.addEventListener('DOMContentLoaded', function() { (function($){ $('.slide-entry').each(function() { $(this).find('.slide-entry-title.entry-title').css({'margin-top':'15px'}).insertAfter($(this).find('.slide-entry-excerpt.entry-content')); }); })(jQuery); }); </script> <?php } add_action('wp_footer', 'move_title_below_excerpt');Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
You also have some custom css that you should remove to make this look nicer:.avia-content-slider .slide-entry-title { margin-bottom: 15px!important; }If this doesn’t help please open a new thread with the url to the page in question and further details on what you are trying to achieve so we can be of more assistance. Thanks for understanding.
Best regards,
MikeHi,
Unfortunately not, the “social buttons” element is not designed to work in the footer page.Best regards,
MikeHi,
Perhaps I misunderstood, do you want these to be “share links” or do you want them to be links to your FB page?
If you want them to be “share links” then they should not be in the footer of your site, it only works correctly if it is on a post page.
that is why the link has this in it%2Ffooter-template%2F&t=Footer%20Templateit is passing the footer page link.
the linkedin is also a “share link” the other two don’t have “share links” so they are links to your page.Best regards,
MikeHey the_digital_manager,
Try this modificationBest regards,
MikeHi,
Sorry, I didn’t know you wanted the social link black also, I couldn’t login because it asked for a code.
Try this css:#top #header.av_header_transparency .phone-info, #top #header.av_header_transparency .social_bookmarks li a { color: #000; }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,
Mike -
AuthorPosts

