-
Search Results
-
Hi there
I’ve opened a new thread based on my last https://kriesi.at/support/topic/secure-custom-field-after-excerpt/#post-1473534 as I’ve just remembered I need the function to also add the custom fields to the single posts. Is it a quick fix?
Thanks
RichardHi,
It seems impossible to show the hamburger menu on mobile.
Tried almost all relevant ID’s en classes with z-index: 9999;
As the menu is shown and clickable on desktop for mobile width I do not understand it.
Can somebody help me and put me on the right path?Thanks in advance!
MarjoTopic: Fixed frame with 1px border
Hi there
I’m using the fixe frame layout and need to add a line on the inside of the border. I’ve achieved it but alas due to the position property none of the links on the page work. Here’s my code:
.av-frame.av-frame-top.av-frame-vert:before { content: ''; left: 30px; top: 30px; height: 50vh; width: 50vw; border-top: 1px solid #102f5d !important; border-left: 1px solid #102f5d !important; position: absolute; } .av-frame.av-frame-right.av-frame-hor:after { content: ''; right: 30px; top: 30px; height: 50vh; width:50vw; border-right: 1px solid #102f5d !important; border-top: 1px solid #102f5d !important; position: absolute; } .av-frame.av-frame-bottom.av-frame-vert:after { content: ''; right: 30px; bottom: 30px; width: 50vw; height: 50vh; border-right: 1px solid #102f5d !important; border-bottom: 1px solid #102f5d !important; position: absolute; } .av-frame.av-frame-left.av-frame-hor:before { content: ''; left: 30px; bottom: 30px; height: 50vh; width: 50vw; border-left: 1px solid #102f5d !important; border-bottom: 1px solid #102f5d !important; position: absolute; }On this site https://stichtingyalla.nl/ you can see when you scroll down to the title “Het bestuur” beginning with “Raja Alouani” that on mobile this gets not enough space. On desktop it takes three columns, but on mobile only one column, which I can understand because of the responsiveness, but why doesn’t it take all the space in the screen? Even some words don’t fit.
Dear Support Team,
For the following website (edit version, hence the subdomain) we have a problem with the contact form:
I have currently entered my own email as the recipient address so that I can check the functionality: And unfortunately the given contact form is not working:
– After filling it out, it does show me “Your message has been sent” in the browser, but I did not receive a confirmation email for my request (I also had it sent to a separate email of mine)
– And I have also not received an email that a request has been received.(previously we already had the problem with the contact form (see request https://kriesi.at/support/topic/contact-form-email-with-an-umlaut/) > but here it was clearly due to the umlaut “ü” >> therefore we have now changed the entire domain of the site to the new domain lebendigfuehlen.de)
What could be the reason for the contact form not working? Now we no longer have a problematic domain (no umlauts). Could you please help me? The site is otherwise ready and we would like to go online….
Many thanks and best regards, Diana
I’m having a huge SEO issue when using Enfold. On some of my pages Google Search Console is finding a mysterious noindex tag showing up. When I deactivate Enfold, it goes away.
The actual page https://aplusconstructionnow.com/residential-construction/
doesn’t really have a noindex but it does show up in Google Search Console as this:<!–
Debugging Info for Theme support:Theme: Enfold
Version: 5.7
Installed: enfold
AviaFramework Version: 5.6
AviaBuilder Version: 5.3
aviaElementManager Version: 1.0.1
ML:512-PU:69-PLA:0
WP:6.6.1
Compress: CSS:load minified only – JS:load minified only
Updates: disabled
PLAu:0
–>
<meta name=”robots” content=”noindex,indexifembedded” /></head><body id=”top” class=”page-template-default page page-id-482 stretched rtl_columns av-curtain-numeric barlow avia-responsive-images-support” itemscope=”itemscope” itemtype=”https://schema.org/WebPage”>
<div id=”wrap_all”>
<header id=”header” class=”all_colors header_color light_bg_color av_header_top av_logo_left av_main_nav_header av_menu_right av_custom av_header_sticky av_header_shrinking av_header_stretch_disabled av_mobile_menu_tablet av_header_searchicon_disabled av_header_unstick_top_disabled av_seperator_small_border av_minimal_header av_minimal_header_shadow av_bottom_nav_disabled ” data-av_shrink_factor=”25″ role=”banner” itemscope=”itemscope” itemtype=”https://schema.org/WPHeader”>
<div id=”header_main” class=”container_wrap container_wrap_logo”>
<div class=”
I have already gone into the “Search Engine Optimization Support” area and selected “Let SEO plugin set this tag” for the meta Tag “Robots”. (Because I have Yoast SEO plugin)
I have also tried adding the following to the functions.php based on a previous support string. https://kriesi.at/support/topic/noindex-when-enfold-is-enabled-2/
add_filter(‘avf_set_follow’,’avia_set_follow’);
function avia_set_follow(){
$meta = ‘<meta name=”robots” content=”index, follow” />’ . “\n”;
return $meta;
}PLEASE HELP!
Hello, i already opened a topic for this problem and it got closed because i thought it was solved, but unfortunately it isn´t.
I thought the problem is because of layer slider, so i used Fullscreen slider and fullwidth slider and it seemed to word, but when the cache is cleared, the problem still sometimes occur only in chrome.
Because it happens only sometimes here a screenshot with the issue incl. error message in dev tools:

Please let me know it you need further information and thanks for suggestions in advance.
Best
ChristophHi.
I have a few different user Roles and I want to hide certain elements on the homepage based on the Role.Have a look at the Home page. When I log in as a certain user, the elements are hidden, but the spaces are left where they were, making the layout have gaps all over where the elements have been removed.
The following is what I have tried, but I am not sure if I am targeting the correct elements.
JavaScript:
document.addEventListener(“DOMContentLoaded”, function () {
console.log(“Custom.js is running”);
console.log(“User Data:”, userData);const userRole = userData.role.toLowerCase(); // Convert role to lowercase for comparison
console.log(“User Role:”, userRole);if (userRole === “mrpi_user”) {
console.log(“Role matches MRPI User. Waiting for elements to load…”);const interval = setInterval(function () {
// Specify the elements to remove
const elementsToRemove = [
document.getElementById(“Wholesaler_Element_Homepage”),
document.getElementById(“Products_Element_Homepage”),
];let allElementsFound = true;
// Loop through the elements to remove
elementsToRemove.forEach(function (element) {
if (element) {
console.log(“Removing element:”, element);
element.remove(); // Remove the specific element
} else {
console.log(“Element not found yet.”);
allElementsFound = false; // Keep checking if any element is not found
}
});// Stop checking when all elements are removed
if (allElementsFound) {
clearInterval(interval);
}
}, 100); // Check every 100ms
} else {
console.log(“Role does not match. Skipping element removal.”);
}
});CSS:
#av_section_2 {
display: flex; /* Enable flexbox layout */
flex-wrap: wrap; /* Allow items to wrap to the next row if necessary */
justify-content: flex-start; /* Align items to the left */
padding: 0; /* Remove internal padding */
margin: 0; /* Remove external margins */
height: auto; /* Adjust height dynamically */
gap: 10px; /* Optional: Add spacing between items */
}#av_section_2 > .flex_column {
flex: 1 1 auto; /* Allow items to grow and shrink dynamically */
margin: 0; /* Remove margin between elements */
padding: 0; /* Remove internal padding */
}HTML:
<div id=”Wholesaler_Element_Homepage”></div>
<div id=”Products_Element_Homepage”></div>
Viewing 30 results - 2,851 through 2,880 (of 142,850 total)
