I am trying to set up a sign up form on a new version of my site which is under construction with the enfold theme.
This works great on my existing site… essentially I want my Aweber opt-in form to come up like a pop-up, but only when the text link is clicked.
I have followed this instructions -> https://blog.aweber.com/how-do-i-use-a-link-or-button-to-trigger-my-lightbox-form
When I add the code the suggest to my actual link, then save the page, it saves the link with just ‘#’ (the pound sign). When I try refreshing the page(s) I have these links on, sometimes it works, other times when I click it just jumps to the top of the page. The actual form code is hidden at the bottom of the html.
Any idea what’s happening here?
I’ll add the two pages in question below in the PC.
Hi,
I have couple of questions:
1) When embedding a video, like in here:
I can all the info (share button, video name) from the hosting provider (i.e YouTube, Vimeo…).
Is there a way to show the video with a custom player, as if it self hosted but the stream coming from the video hosting?
2) The Video section does not work well in mobile – it won’t play and sometimes it’s possible to see some of the controls – how can it be solved?
3) Portfolio:
I am using this exact page from the demo:
If you click an image, the laptop for example, a lightbox open and then it’s possible to navigate all the other images in page.
I want the same structure of this page – with equal height columns and images, but when I click an image the full version will be shown –
meaning that if an image is 100 x 1000 it will be show when clicking, but not on the page.
The behavior today is that the size selected for the image its the size that will be shown.
How can I fix that?
Thank you
Hi fensor2,
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
.woocommerce #enquiryButton.button {
background-color: #666;
}
.woocommerce #enquiryButton.button:hover {
background-color: #ccc;
}
You can change the colors to the ones you need.
If you need further assistance please let us know.
Best regards,
Victoria
here is the method mentioned above :
register a new social_bookmark via functions.php of your child theme
here i take the lock but find a different icon on enfold
function avia_add_custom_icon($icons) {
$icons['register'] = array( 'font' =>'entypo-fontello', 'icon' => 'ue825');
return $icons;
}
add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
function avia_add_custom_social_icon($icons) {
$icons['Register'] = 'register';
return $icons;
}
add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
goto your Enfold options and add that newly added “social media” (it is at the end of the list) and insert your desired link
this turns the social_media to the left of hamburger menu – put it in functions.php of your child theme too
function change_menu_position() {
?>
<script>
(function($){
$('.main_menu ul.social_bookmarks').insertBefore($('.main_menu div.avia-menu'));
})(jQuery);
</script>
<?php
}
add_action('wp_footer', 'change_menu_position');
now style your newly social media button!:
/*** this is for the new button not to have same behavior as social_bookmarks buttons ***/
.social_bookmarks_register.av-social-link-register {
margin: 0 15px;
width: auto !important;
padding: 0 15px !important;
background-color: #42ab96 !important;
}
#top .social_bookmarks li.social_bookmarks_register a {
width: auto !important;
color: #fff;
}
.social_bookmarks_register .avia_hidden_link_text {
display: inline !important;
padding-left: 10px;
text-decoration : none !important
}
#top #wrap_all .av-social-link-register:hover {
color: #fff;
background-color: #BD5469 !important;
}
/*** rules for the left-hand social_bookmarks buttons ***/
#top nav .social_bookmarks { margin-top: -20px !important; overflow: visible !important; height: 40px !important }
.avia-menu.av_menu_icon_beside { padding-right: 0; margin-right: 0; border-right-width: 0; border-right-style: none }
.social_bookmarks li a { height: 40px !important; line-height: 40px !important; width: 40px !important }
#top .social_bookmarks li { width: 40px; height: auto !important }
#top .av-logo-container .social_bookmarks li a { border-radius: 50% }
.av_header_transparency .social_bookmarks li a { color: #969696 !important;}
I think this will be the better and better understanding way:
Result – same as above: https://webers-testseite.de/cynthia/
Hey Jameel,
Thank you for using Enfold.
Yes, it’s possible. Use this css code to remove the scroll to top button.
#scroll-top-link {
display: none !important;
}
Best regards,
Ismael
the most easiest way would be to register a new social media button for example with a lock and have the rounded buttons as if it was a social media link – on hovering you can see the tooltip : registering.
i do this often for links like intranet link or login links.
this could be handeled than like on my link above – because than it is part of social-media list.
See here Result ( i do not change to see only burger-menu – so have a look at smaller screensizes )
https://webers-testseite.de/cynthia/
if you like to insert for example a whole avia button shortcode – that is possible too.
add_action('ava_inside_main_menu', function() {
echo '<li class="registerbutton">';
echo do_shortcode("[av_button label='Register now' link='manually,#' link_target='' size='large' position='left' label_display='' icon_select='yes-right-icon' icon_hover='aviaTBicon_hover' icon='ue875' font='entypo-fontello' color='custom' custom_bg='#42ab96' custom_font='#ffffff' av_uid='av-b9l' custom_class='' admin_preview_bg='']");
echo '</li>';
});
function change_menu_position() {
?>
<script>
(function($){
$('.main_menu ul.social_bookmarks').insertBefore($('.main_menu div.avia-menu'));
$('li.registerbutton').appendTo('.main_menu > .social_bookmarks');
})(jQuery);
</script>
<?php
}
add_action('wp_footer', 'change_menu_position');
the code can be obtained by activation of the debug mode on enfold for above rules
– echo do_shortcode(" into this comes the full shortcode of your avia button ");
this comes to quick css:
/*** this is for the new button not to have same behavior as social_bookmarks buttons ***/
.registerbutton { width: auto !important }
.registerbutton .avia_button_icon { display: inline-table }
.social_bookmarks li.registerbutton a { border-radius: 0 !important; padding: 0 10px !important; width: auto !important; background: #42ab96; color: #fff }
/*** rules for the left-hand social_bookmarks buttons ***/
#top nav .social_bookmarks { margin-top: -20px !important; overflow: visible !important; height: 40px !important }
.avia-menu.av_menu_icon_beside { padding-right: 0; margin-right: 0; border-right-width: 0; border-right-style: none }
.social_bookmarks li a { height: 40px !important; line-height: 40px !important; width: 40px !important }
#top .social_bookmarks li { width: 40px; height: auto !important }
#top .av-logo-container .social_bookmarks li a { border-radius: 50% }
.av_header_transparency .social_bookmarks li a { color: #969696 !important;}
Hi Victoria,
The ‘Add Media’ button works well on the backend(Posts, Pages). It does not work at the front.
As I said before, I did a replacement test with the theme as a variable. The ‘Add Media’ button works well with the WordPress default theme (Twenty series) or Enfold 4.2. All test environments and conditions are the same. It does not work in 4.4.1. So I guess that’s the problem with version 4.4.1.
Please test. Thanks
Hey,
if i try to navigate on the slider in enfold. It does not work properly.
I cannot go back or forth. The buttons seem not to work.
Any idea why this happens?
best regards
Mike,
Thank you for your quick reply. I understand that Avia is part of the theme. I’ve noticed that there are content items with the “av-” prefix on them. I assume those are from Avia. If I hide the button and consequently don’t use the Advanced Layout Builder, will I still have those items in my pages and posts?
Thank you for your response. I do very much like the Enfold theme.
Hi,
Enfold doesn’t come with the WPBakery page builder. We created our own page builder (called Avia Layout Builder) which is not compatible with WPBakery. If you want to embed a layerslider with our Avia Layout Builder go to the editor page, click on “Advanced Layout Editor”, then select the “Media Elements” tab and click on the “Advanced Layerslider” button to select a Layerslider.
Best regards,
Dude
Hi garybaitson,
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
@media only screen and (max-width: 767px) {
#top #av_section_1 .avia_ajax_form .text_input, #top #av_section_1 .avia_ajax_form .select {
width: 90%;
padding: 5px;
}
#av_section_1 .avia_ajax_form .button {
padding: 8px 10px;
}
}
If you need further assistance please let us know.
Best regards,
Victoria
Hey Andreas_BS,
If you want to place the no-follow only on external links, please turn on the custom CSS field for Advanced Layout Builder elements – http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
Then add this custom class (rel-nofollow) to buttons you would like to have rel=’nofollow’ – http://i.imgur.com/KOaCgrv.png
and go to Appearance > Editor and open Functions.php file and add following code:
function custom_class_rel(){
?>
<script>
jQuery(window).load(function(){
jQuery('.rel-nofollow a').attr('rel','nofollow');
});
</script>
<?php
}
add_action('wp_footer', 'custom_class_rel');
If this doesn’t work please try this instead:
function custom_class_rel(){
?>
<script>
jQuery(window).load(function(){
jQuery( '.rel-nofollow' ).each(function() {
jQuery( this ).find( 'a' ).attr('rel','nofollow');
});
});
</script>
<?php
}
add_action('wp_footer', 'custom_class_rel');
Best regards,
Mike
hello victoria
thank you for your support
1- yes increase the size of the text tab
2- in “enfold / general setting / main content / primary color” when I change the color, in my product the colors change the button, the list of categories, and the values of the attributes. is it possible to change only the color of the button
Thank you
Hi,
I´m using enfold lastest version 4.4.1 and WP latest version 4.9.7–da_DK on my website http://www.mindchangers.dk
Page loading, link buttons and Mailchimp sign-up forms work great on computer (Mac), but not on mobile devices (tried on Iphone6).
When clicking a link on a mobile device it only says “Sorry, the post you are looking for is not available…”
Please help – and explain it to me in “beginner-language”, thanks.
Update:
I have figured it out. I cancel my request for help. Thanks.
Hi Enfold team,
can I highlight just the “Contact”-Button in the main menu in another color?
Best regards
Hi Victoria,
Does it mean that it is not an error in the ENFOLD theme?
By the way, I wonder why version 4.2 works well but JavaScript errors occur in the latest version.
In version 4.2, there is the same Javasctipt error as the image you sent, but the ‘Add Media’ button works fine.
How can I fix the error?
Please answer. Thanks
Hi,
Please review the site now, it looks good on my end after I have cleared the cache for you.
Please perform the below steps to clear the browser cache:
1. Disable “merging and compression” for CSS and JS files from Enfold > Performance. (You can enable this option after previewing)
2. If a caching plugin is installed check the plugin settings and clear the cache and deactivate the plugins for testing purpose.
3. Hard refresh by pressing Ctrl + Shift + F5 on your browser or press the F12 key to open chrome dev tools and right click on the refresh button and select “Empty Cache and Hard Reload”.

Best regards,
Vinay
Hi Team,
I would like to move/add a button in the Main Header Area (see screen shot in private content). How would I go about doing this and make sure it is responsive via mobile as well? I know you can have the social icons in the main header area and I am assuming you can add or place a button there in the functions.php file or some other file in the editor along with some CSS. I do have the Enfold Child Theme installed.
Thank you!
If you have no concerns about GDPR, you can enqueue the styles of Fontawesome via CDN.
So you can use it manual – but problem would be that these sources need the newest jQuery – not that common one that Enfold uses !
You can do it via functions.php of your child-theme:
add_action( 'wp_enqueue_scripts', 'enqueue_awesome' );
function enqueue_awesome() {
wp_enqueue_style( 'prefix-font-awesome', 'https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css', array(), '4.7.0' );
}
So my Advice is to use fontello fontawesome – import that to Enfold and use it with Enfold buttons.
To style the buttons a bit more you can do that: https://webers-testseite.de/buttons/
these are Enfold Buttons Alb with light-transparent layout and a bit of css
Daniel KammanGuest
In Enfold can I create a page similar to http://savoy.nordicmade.com/product/solo-headphones/ (preferably without the WooCommerce tab headings “Description Additional Information Reviews 0”)? I ask because I like that layout but see advantages to the Enfold theme.
In your demos I see https://kriesi.at/themes/enfold-shop/product/grouped-custom-product/ which is somewhat similar to the Savoy example but doesn’t include the large-image-plus-thumbnails and the add-to-cart button of the Savoy example above or of the Enfold example at https://kriesi.at/themes/enfold-shop/product/lekis-jeans/
Is it possible to use bootstrap button in Enfold? as documented here https://coreui.io/docs/components/buttons/
tried adding this code
<button type="button" class="btn btn-brand btn-youtube">
<i class="fa fa-youtube"></i><span>Youtube</span>
</button>
To have a button like that

but instead the button shows up like that

Also how can i add a URL to this button so that when clicked the uRL loads?
-
This topic was modified 7 years, 8 months ago by
yingyang.
Hello.
My site uses the Enfold (Latest ver.4.4.1), does not respond when the “Add Media” button is pressed inside wordpress editor. I did some testing with each other version and the button worked well in previous versions of the Enfold (ver.4.2).
Can you help me solve this issue please?
Thanks.
Hi,
Thank you for sharing this example with us. Yes, this is possible with enfold with a slightly different approach.
Create a header widget area and add the “Pricing” button shortcode in the widget area and follow the instructions mentioned in our documentation to align them as required.
Best regards,
Vinay
Hi Awaken_Productions,
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
@media only screen and (max-width: 767px) {
.avia_transform .av_slideshow_full .avia-slideshow-button {
visibility: visible;
}
}
If you need further assistance please let us know.
Best regards,
Victoria
Hi Rikard,
Thanks for getting back to me.
When I’m in any other program like Photoshop or Word or Premiere, my hand automatically does CTRL + S pretty much every minute I think. I’m sure everyone does this.
But with WordPress/Enfold, that is not an option :-( As you type, you forget to push the big save button, as it’s not the norm anywhere else. That’s why it would be great to have an autosave feature, or even implement CTRL + S for Enfold’s popovers.
Thanks,
Tom
Hi Basilis
the text “Select options” can be customized by adding the following to the theme’s functions.php (unfortunately it doesn’t work in the enfold-child functions.php)
add_filter( 'woocommerce_product_add_to_cart_text', function( $text ) {
global $product;
if ( $product->is_type( 'variable' ) ) {
$text = $product->is_purchasable() ? __( 'Custom options text', 'woocommerce' ) : __( 'Read more', 'woocommerce' );
}
return $text;
}, 10 );
https://wpexplorer-themes.com/total/snippets/woocommerce-select-options-text/
Or:
add_filter('catalog_visibility_alternate_add_to_cart_button', 'my_alternate_button', 10, 1);
function my_alternate_button($content) {
return 'My Alternate Content';
}
https://docs.woocommerce.com/document/catalog-visibility-options/
I have yet to find a way to remove (or change) the cart icon.
Would maybe Dude have an idea?
Regards,
Bruno
-
This reply was modified 7 years, 8 months ago by
bruwa.
Hi,
@mkamir it looks really nice!
One thing i noticed is that scroll to top button and chat buttons overlap. If you would like to make adjustments on it, please feel free to start a new thread under Enfold sub forum :)
Best regards,
Yigit
Hi!
I would like to add a button to share my blogs on Instagram.
But this is not possible in the Enfold Child Theme Basic Options -> Blog styling.
Is there another option to add it?
Hi Victoria,
The two fonts I’ve uploaded are the ones used in my logo design. I’ve tried assigning the font for the 2nd line of text in the logo to the menu font and also to my H2 tag. I’ve assigned the other font HARRIETS TABLE to my H1 tag but they aren’t appearing. How do I change the paragraph font as this doesn’t seem to be in the list in advanced styling?
Also, if you go into my home page and click on the text box, there doesn’t seem to be many buttons in the text box. If I highlight text, I have no way of knowing whether is H1, H2 etc. I’m sure all this data used to be present when I’ve used Enfold in the past. It seems much harder to use than in the past and I’m not sure why. I would really like to be able to implement these fonts as I’ve got them in my brand logo.
When you say there are different classes per font, how do I get to see them to select the one I want? I’ve seen tutorials on people implementing imported fonts in WordPress but their screens look different to what I’m seeing in Enfold.
Any tutorials/videos would be appreciated or if you can see the difficulty I’m having by going into my text box editor.
Many thanks,
Ellen