Hi,
Thanks for the update, we’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.
Best regards,
Rikard
Hi,
Thanks for the update, we’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.
Best regards,
Rikard
Hey dlambers,
That option is still not available in Enfold unfortunately. You can request the feature here though.
Best regards,
Rikard
Hi,
That file can be found under Appearance->Theme file editor. It looks like that option is turned off on your installation though, it’s likely turned off by your hosting provider. Note that if you are not running a child theme, then your changes to core theme files will be overwritten on updates. You can also add code using a plugin like this: https://wordpress.org/plugins/code-snippets/
Best regards,
Rikard
because i do not see private content – i guess your page is like this:
https://kriesi.at/themes/enfold-2017/blog/blog-default/ – and you like to have the link for the whole (Image, heading, excerpt and read-more)
if you like to have it more specific – use custom classes or page-id’s
this snippet transfers the first link that could be found in the articel to the slide-entry:
function transfer_first_link_as_link_to_article(){
?>
<script type="text/javascript">
window.addEventListener("DOMContentLoaded", function () {
(function($) {
$('.slide-entry').each( function() {
var LinkSection = $(this).find('a:first').attr('href');
var LinkTarget = $(this).find('a:first').attr('target');
if (typeof LinkSection !== "undefined"){
$(this).on("click", function(){
if (LinkTarget === "_blank"){
window.open(LinkSection, '_blank');
} else {
window.location.href = LinkSection;
};
});
$(this).css('cursor','pointer');
};
});
})(jQuery);
});
</script>
<?php
}
add_action('wp_footer', 'transfer_first_link_as_link_to_article');
Hey helfyworkspace,
The theme you are running is not ours, we are the creators of the Enfold theme.
Best regards,
Rikard
Hey Monica,
The theme you are running is not ours, we are the creators of the Enfold theme.
Best regards,
Rikard
Hello:
Many clients use Enfold, and a few would like to integrate Hubspot as it is a very popular CRM. It integrates with WordPress forms – i read in an Enfold thread from 2019 that Enfold did not have HubSpot integration. Do you offer this yet? The Enfold contact form is very nice and I prefer to use that rather than another form such as Ninja or WordPress especially because I have many hours of creating a submission form.
Thank you,
Debra
Hey Peter,
Thanks for your patience, I didn’t see this thread. To show the arrows try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
#top .avia-fullscreen-slider .avia-slideshow-controls a,
#top .avia-fullscreen-slider .av-control-minimal .avia-slideshow-controls a {
opacity: 1;
}
For your other question try this css and adjust to suit if it is not exact:
#top .avia-slideshow-dots a {
margin: 0 14%;
}
Best regards,
Mike
This is just a boxed layout with fixed header.
The header could be stretched to full width ( fixed positioned elements are on default out of the box ):
.html_header_top.html_header_sticky #header {
position: fixed;
width: 100% !important;
max-width: 100% !important;
left: 0;
background-color: #FFF !important;
}
see: https://enfold.webers-webdesign.de/
Hey Elisa,
The X icon is included in the latest version of the theme (6.0.4), please make sure that you are running that. https://kriesi.at/documentation/enfold/theme-update/.
Best regards,
Rikard
Hi,
Thanks for that. Could you try updating the theme to the latest version (6.0.4) to see if that helps please? https://kriesi.at/documentation/enfold/theme-update/.
Best regards,
Rikard
Hi,
Thanks for the update. Please open a new thread if you should have any further questions or problems.
Best regards,
Rikard
I don’t know. It just started happening suddenly. One minute I couldupload, the next not. Also no change in User and i have admin rights.
So you are suggesting to activate the default wordpress theme? Wont this bring chaos to my enfold pages?
Hi,
Thanks for the update. Please open a new thread if you should have any further questions or problems.
Best regards,
Rikard
Hi,
Please try the following in Quick CSS under Enfold->General Styling:
#top .av-caption-style-overlay .av-masonry-item-with-image .av-inner-masonry-content * {
color: white !important;
}
Best regards,
Rikard
aber du beziehst dich nicht auf die bei hover gezeigten Titel wie hier: https://kriesi.at/themes/enfold-2017/elements/masonry/
well it is in the enfold folder : includes.
If you make a subfolder to your child-themes folder : includes and put the edited loop-search.php inside that folder the search results page will show featured images.
here is on basis of enfold 6.0.4 the edited file:
see: https://pastebin.com/3nAyB6Gr
Changes are made on line 50ff . I inserted some classes to better select them and put the link on the image too.
download: https://pastebin.com/dl/3nAyB6Gr
a little css is needed
.search-result-image {
display: block;
}
.search-result-image img {
width: 120px;
border: 1px solid #aaa
}
.search-result-image svg {
width: 120px !important;
height: auto;
}
.search-result-image img {
width: 120px;
}
.search-result-image {
float: left;
margin-bottom: 20px;
padding-right: 30px;
}
PS: on line 52 you can see that i took the medium image format as source (and not the thumbnail image) – you can change that to anything you like – but medium got one advantage – it is a non cropped image format.
see: https://webers-testseite.de/?s=web
Well in the end the portfolio is a custom post type too.
So you can have a look how enfold handles this posttype: first look goes to single-portfolio.php
in the middle of that file there is arround line 42 : get_template_part so next file to look for could be : loop-portfolio-single.php
now there are a lot of files where this new cpt should be inserted – first functions.php to load that new cpt via require_once a register php had to be there.
then … etc. etc. a lot of work – if you want to do it the right way.
Aren’t there a lot of Plugins generating CPT’s with a nice UI ?
https://crocoblock.com/blog/wordpress-custom-post-type-examples-and-plugins/
Hi Ismael,
No, I use the Googlemap element from the enfold editor, but with a placeholder image. Test page in private content.
Regards,
Bernd
I haven’t created a custom post type before. Lots of wordpress tutorials out there on this but I can’t find one specifically for Enfold.
I’m creating a different section of the website that will be managed by a sub-editor. It will describe different projects and include functionality for visitors to read about projects, comment on them and complete surveys and polls. We will use WPForms Pro for the surveys and polls.
Just thought I’d check with you first before diving in. Do you have any suggestions please?
Hi,
When I tried to follow the instructions on the following link: https://kriesi.at/support/topic/add-featured-image-to-search-results/, I was confused about where to find the loop-search.php file to place the code. I hope the Enfold team can help clarify this.
Thank you.
Hey ScatmanAT,
Thank you for the inquiry.
You might be able to use the Custom Layout, Custom Element Templates, and Dynamic Content features for this. Please check the documentation below for more info.
// https://kriesi.at/documentation/enfold/custom-element-templates/
// https://kriesi.at/documentation/enfold/custom-layout-and-dynamic-content/
Best regards,
Ismael
Hey James,
Thank you for the inquiry.
You can apply a background image to the footer by configuring the Enfold > General Styling > Footer > Background Image settings. Please let us know if you need further assistance.
Best regards,
Ismael
Hi,
I interpret this to mean that we, as customers of Enfold, are not allowed to use these images for our own projects!
Thank you for the info. We’ll forward this again to our channel for clarification.
Best regards,
Ismael
Hey nicolass91,
Please send us a temporary WordPress admin login and login URL so that we can have a closer look. You can post the details in the Private Content section of your reply. You could also try to import the demo manually: https://kriesi.at/documentation/enfold/import-demos/#how-to-manually-import-a-theme-demo
Best regards,
Rikard
Hello,
You can easily reproduce the issue I’m about to describe by deploying a WordPress site version 6.6.2, Enfold 6.0.4, and WP Rocket 3.17.0.2.
When Enfold is active, the WP Rocket configuration export/import system no longer works. The export/import system returns the error: “The settings import failed: incorrect file type.”
WP Rocket does have documentation on this error (https://fr.docs.wp-rocket.me/article/1318-onglet-outils-exporter-importer-les-reglages-restauration-de-version#troubleshooting), but it is not the solution in our case.
The issue disappears if I deactivate Enfold and use a default theme like Twentytwenty Four.
After several exchanges via support ticket with my hosting provider to ensure everything is fine on their end, as well as with WP Rocket, they informed me of a known incompatibility between Enfold and the WP Rocket configuration export/import system. It was not their responsibility, as Enfold supposedly modifies the MIME behavior in JSON handling, which leads to incompatibilities with WP Rocket, as well as other plugins (although they didn’t specify which ones).
Does this kind of problem sound familiar to you? Do you have a solution?
I can provide you with a test site if necessary.
Thank you in advance for your help.
Best regards,
Hey whdsolutions,
It looks like you have the shrinking header enabled in the theme options, this is why the menu items and logo moves up, try disabling this option.
Enfold Theme Options ▸ Header ▸ Header behavior
Best regards,
Mike
Hi,
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,
Mike
Hi,
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,
Mike