Hallo zusammen,
wir würden gerne in den Footer Logos einbinden. Soll so aussehen: 
Ich habe jetzt mit der “Enfold Advertising Area” zwei der Logos eingefügt, besteht die Möglichkeit diese so zu erweitern das die Logos alle in der waagerechten angezeigt werden?
Grüße
Czaz
-
This topic was modified 11 years, 7 months ago by
czaz.
Hi Ismael
Thanks for your answer.
I have the sidebar on ‘Sidebar on Single post pages’ enabled (right side) – in Enfold>Sidebar Layout panel. All of them are set on ‘right side’ except for Pages where I don’t want a sidebar.
Please see att. a link to my website; under SHOP I published just a few products and you’ll see the Single Product Pages without sidebar.
http://botanicallyinclined.org/wild-crafted-seeds-catalogue-botanyca/shop/
Thanks again,
BotaniCa
Dear Kriesi,
A client requested a content element (a tab element in this case) to scroll along with the user and stay at a fixed position until the footer is reached, after which it is released.
I think I managed to get the job done using the Code Block element that I put underneath the target element. That Code Block then guides it on its way with some JavaScript. My question is though: am I smashing any Enfold windows here? I wrote the code as safe as I could but you never know what you might break. Is it stable enough?
Also, I noticed I can’t make jQuery calls in the Code Block elements. I do believe Enfold includes it, right? I could only use it when I fetched jQuery again within the Code Block. That seemed messy and bloaty though, so I decided to skip jQuery for this. But is there a way it can be used in Code Block elements easily? I do miss the brevity and I read window.onload is not as reliable as $(document).ready().
A working example:
http://www.tweekeertwee.nl/handleidingen/scrolling-tabs/
The code I used:
// Done without jQuery
<script type="text/javascript">
var namespaceScrollShield = { // Avoid any type of name conflicts
execution: function(){
window.onload = function(){ // Must be done after all is loaded, otherwise the .main_color height might be off
var childElement = document.getElementsByClassName("tabcontainer")[0];
var parentElement = document.getElementsByClassName("main_color")[0];
var header = document.getElementById("header");
var difference = parentElement.offsetHeight - header.offsetHeight - childElement.offsetHeight;
document.addEventListener("scroll", function(){ // Stack it with other possible scroll handlers
var doc = document.documentElement, body = document.body;
var top = (doc && doc.scrollTop || body && body.scrollTop || 0);
var w = window,
d = document,
e = d.documentElement,
g = d.getElementsByTagName('body')[0],
x = w.innerWidth || e.clientWidth || g.clientWidth;
if(x > 767) // Only do this for devices with a width > 767
{
if(top < difference)
{
// Messing around with fixed/relative seemed to wreak havoc so I stuck to repositioning
childElement.style.top = top + "px";
}
else
{
childElement.style.top = difference + "px";
}
} // End if
}); // End addEventListener
} // End onload
} // End execution
}; // End namespaceScrollShield
namespaceScrollShield.execution();
</script>
Kind regards,
Lucas van Heerikhuizen
-
This topic was modified 11 years, 7 months ago by
Lucas van Heerikhuizen. Reason: Code was spread out too much
I have already built three new websites using Enfold, but I have now taken over a partly built site that also uses Enfold, but needs to be updated. I do not know what the licence key for the theme is and I have no way of finding out because the company who built it has gone out of business.
Can I update the theme by downloading it again from one of my licences? If not, how can I do this?
Hey!
I posted a temporary fix here: https://kriesi.at/support/topic/conflict-with-enfold-and-seo-yeast-woo-commerce/#post-307331 – just insert the code into the child theme functions.php or enfold/functions.php. I first thought it’s a conflict between woocommerce and yoast seo but in fact it seems to be a bug in the wp seo plugin because any query (blog post query, woocommerce product query, etc) breaks the “seo analysis” function. Older yoast seo versions worked just fine with WooCommerce or blog queries and we didn’t change our theme code and hopefully the yoast team will fix this bug with the next update.
Best regards,
Peter
Yes I tried disabling the plugins. No help.
I tried setting my profile to html editing only. No help.
I rried switching to parent theme. (Enfold instead of our chlld theme version). No help.
I tried switching to Twenty Fourteen. I was able to see the page in the editor with that. I made some changes, which did not help after I went back to our Enfold theme.
I set it back to Twenty Fourteen and copied the source of the page:
[av_two_third first]
[av_textblock ]
[av_hr class='invisible' height='10' shadow='no-shadow' position='center']
<h4>Discover the only all-in-one business automation platform you need to start, systemize, and scale your small business.</h4>
With CHRONICLE You Can:
- Automate relationship marketing, sales and business activities
- Manage your contacts, jobs and job costing in one central system
- Email, fax and add/create documents
- Track your key performance indicators and see the ROI
In your 30-minute strategy session, we’ll discuss the challenges you’re facing and whether CHRONICLE is the right solution for you. If it looks like a match, we’ll show you exactly how our powerful business automation platform will work in your business, and how easy it is to get up and running quickly.
We’ll also describe the process for getting setup and running with CHRONICLE, so you’ll know exactly what it’s going to take from you and what we can take off your plate.
By the end of our call, you’ll see how CHRONICLE can make a difference in your business… and if we can’t, we’ll even help you find a better solution.
Bring everyone on your team who has input on this — let’s answer everyone’s questions at once!
<h4></h4>
[/av_textblock]
[/av_two_third]
[av_one_third]
[av_textblock ]
<div id=”demo-req-form”>
<div id=”crmWebToEntityForm” class=”frm_forms with_frm_style”><form class=”frm-show-form” accept-charset=”UTF-8″ action=”https://crm.zoho.com/crm/WebToLeadForm” method=”POST” name=”WebToLeads746329000000059237″>Get a Demo Today!
<div class=”frm_form_fields”>
<label class=”frm_primary_label”>Company</label>
<input maxlength=”100″ name=”Company” type=”text” />
<label class=”frm_primary_label”>First Name</label>
<input maxlength=”40″ name=”First Name” type=”text” />
<label class=”frm_primary_label”>Last Name</label>
<input maxlength=”80″ name=”Last Name” type=”text” />
<label class=”frm_primary_label”>Email</label>
<input maxlength=”100″ name=”Email” type=”text” />
<label class=”frm_primary_label”>Phone</label>
<input maxlength=”30″ name=”Phone” type=”text” />
<label class=”frm_primary_label”>Mobile</label>
<input maxlength=”30″ name=”Mobile” type=”text” />
<label class=”frm_primary_label”>Message</label>
<textarea maxlength=”1000″ name=”Description”></textarea>
<input name=”save” type=”submit” value=”Submit” />
</div>
</form></div>
</div>
[/av_textblock]
[/av_one_third]
Hi, Josue
ok, lets’ restart with default wordpress video when it’s in Enfold theme, on iPad “only”.
I cannot get correct video size, but I have correct cover size. Do you have an extra idea for me ?
regards
-
This reply was modified 11 years, 7 months ago by
Erdrol.
I had not noticed this until today. I had set up a Page quite awhile ago and it was working properly in Enfold.
http://fritzimages.com/blog/instructors/
I went to the page to do some basic Page editing and the WP SEO plugin 1.5.5.3 meta data description field no longer had the original content, the page slug was not the same as the permatlink, the permalink had changed and redirected, and other fields used in WP SEO had auto populated with non-original content.
Upon investigating I found that I was using Enfold ->Content Element ->Blog Post. setting: Display entries from a custom taxonomy/.
From what I can see, the last post blog in that custom taxonomy has been force loaded into the page, auto populating and over riding my original content.
I also check my home page where I also use BLOG post, and it unfortunately is also toast. All original content , meta description of my site for SEO, gone and rewritten with an recent equipment post.
I assume you now about this issue as WP SEO has over 12M installs, so I guess others have the issue
Do you know what is going on ?
Is there a fix from Enfold ?
Have you notified Yoast ?
If so does he have a planned fix ?
Just so you know, this problem really dented my site, its SEO and recent campaign because of a redirect issue now going to archives instead of the page.
Any quick help or response, would be greatly appreciated. I also may fall back to a prior WP SEO version if I can find it, or contact Yoast myself.
Thanks !
Hey!
Thank you for the info.
How did you transfer the website? We suggest that you transfer the website using this plugin in order to migrate the theme successfully and leave the database intact: http://wordpress.org/plugins/wp-migrate-db/
Refer to this link for more info on how to properly migrate your enfold website from production to development vice versa:
http://kriesi.at/documentation/enfold/move-from-a-local-installation-to-a-live-server/
https://code.tutsplus.com/tutorials/migrating-your-wordpress-database-wp-migrate-db-production-to-development–wp-32684
Best regards,
Ismael
Hi David!
Thank you for using Enfold.
Yes, this is possible but it will require a bit of modification on the portfolio overview page. I’m sorry but this falls outside the scope of support so you might need to find someone else to do it for you. Please visit Envato Studio or Werkpress for further customization. Thank you for your understanding.
Cheers!
Ismael
Hey!
Thank you for the info.
I’m sorry but there is no zoom feature on the shop overview page. Did you add any plugins? You can see the default shop overview page behavior on the demo content: http://kriesi.at/themes/enfold/shop/
Cheers!
Ismael
Hi tusing!
Thank you for using Enfold.
You can use this on Quick CSS or custom.css to left align the title and the excerpt:
.with-excerpt-container .grid-entry {
text-align: left;
}
Cheers!
Ismael
Hey OlivierCharlot!
Thank you for using Enfold.
You can use this on Quick CSS or custom.css to change the height of the header:
#header_main .container, .main_menu ul:first-child > li a {
height: 30px;
line-height: 30px;
}
Remove the sidebar line with this:
#top #main .sidebar, .content {
border: none;
}
Cheers!
Ismael
Hi lcervigni!
Thank you for using the Enfold theme.
Please go to Enfold > Advanced Styling panel then insert the Main Menu Links element. This should change the appearance of the menu links.
Regards,
Ismael
Hey blankonblank!
Thank you for using Enfold.
I checked the site and you didn’t add the styling yet. It should work on the special heading as long as you set it to H1.
Regards,
Ismael
Hi pnacho!
Thank you for using Enfold.
I’m sorry but the it requires us to login before we can see the website. Please post the login credentials here and set it as a private reply.
Best regards,
Ismael
Hey yes9310!
Thank you for using Enfold.
Please go to Enfold > Advanced Styling panel. Insert the Main Menu Links element to change the appearance of the main menu. You can also change the hover state by adding the element again and enabling the Apply only to hover state option.
Regards,
Ismael
Hey BotaniCa!
Thank you for using Enfold.
Please go to Enfold > Sidebar Layout panel. Make sure that you enable a sidebar on the Sidebar on Single Post Pages option.
Cheers!
Ismael
Hey Monsoon!
Thank you for using Enfold.
You can add unique css selector for each text blocks. Edit functions.php, find this code:
if(isset($avia_config['use_child_theme_functions_only'])) return;
Below, add this code:
add_theme_support('avia_template_builder_custom_css');
Create a text block then apply a unique selector on the Custom CSS field. Let’s use dancing-script for example. Use this on Quick CSS or custom.css to apply a different font family on the text block:
.dancing-script > * {
font-family: 'Dancing Script', cursive !important;
}
After that, add this on functions.php to call the google font script:
function dancing_script() { ?>
<link href='http://fonts.googleapis.com/css?family=Dancing+Script' rel='stylesheet' type='text/css'>
<?php }
add_action('wp_head', 'dancing_script');
Cheers!
Ismael
Hello Ismael,
Thank you for your assistance, the fix worked but i believe my developer input for this code was in a different place. We are using 2.7.1 version enfold, so that may be the problem.
Keep up the excellent work Team Kriesi!
Regards,
CS Team
Hi blankonblank!
Thank you for using Enfold.
I checked the website and the partner logo columns are showing up in two columns on mobile device. Do you mind providing a screenshot of the issue?
Best regards,
Ismael
Hello There – I want to use Templatera (visual composer add-on), shown here http://codecanyon.net/item/templatera-template-manager-for-visual-composer/5195991
Is your drag and drop builder a modified version of visual builder? would Templatera work fine with it?
Also, I want to build a page where search bar should be in the middle of the page, something like google.com page, can i create it without programming knowledge.
Thanks
Hey guys,
Is it possible to make the sidebar wider in Enfold by reducing the padding between the sidebar and the main content?
Please advice.
Regards,
David
Hi all,
When I try to use Enfold with wpjobboard pages like /jobs/view/add are not rendered properly. Only the content generated by wpjobboard is rendered, but not the “frame” (header, footer etc.) Other templates are working fine. So it seems to be an Enfold problem. Has some an idea on how to solve this?
Do you know how to solve this?
The styling tab in the enfold customisation panel doesn’t work and doesn’t respond. You’re not saying anything to help here
I’m having a very strange problem: no matter which computer or browser I use, I can’t seem to edit or enter text into the text fields. The cursor simply doesn’t change from a pointer to a blinking line…
Here’s a video of the issue: http://goo.gl/6rMDGG
I have already updated to the most recent version of Enfold so I’m not sure of the issue.
Thanks for any help!!
Amy
I just logged into an old site I created with Enfold and updated some plugins and the Avia Builder and the wordpress default editor doesn’t work. I attempted to update a page to see if it works and the page is broken. Pls help. I need urgent solution to this
-
This topic was modified 11 years, 7 months ago by
CobbyNelson. Reason: Would want you to login and see my troubles. Let me know if there are any recommendations
hey community, hope you can help me because i’m really stucked.
I’m about to translate my pages and for the home page i use widgets.
But in the original it looks like this:
http://gyazo.com/76524ec977c0ef6d765a36b0867a893e
and as i copy the same code to the translated post it looks like this:
http://gyazo.com/1be0f2925882e276030efeaad5efe6f6
using wmpl for translation but i have been told that it is supported with enfold theme…
i’m new to wp and couldn’t figure out myself what is wrong here.
Thanks in advance!!
-
This topic was modified 11 years, 7 months ago by
IkarusDev.