Forum Replies Created
-
AuthorPosts
-
Hi,
Actually, the Enfold was developed for the developers, but you can customize what will or won`t be showed. To hide the Page builder,for example, you need to use this custom code:
add_action( 'admin_print_styles', 'enfold_customization_admin', 10 ); function enfold_customization_admin() { echo '<style type = "text/css">'; echo '#avia-builder-button { display: none; }'; echo '</style>'; }
So, you can ask me how to disable other parts of the theme and I`ll help you :)
Best regards,
John TorvikMarch 15, 2017 at 8:37 pm in reply to: How to enlighten a photo background in the homepage slideshow #761609Hi,
We`re happy that your problem was solved :)
Let us if you have some question!
Best regards,
John TorvikHey jannnnnneke,
To disable the zoom effect, add this custom CSS code at Enfold Theme Options > General Styling > Quick CSS
.avia_desktop .av-masonry-entry:hover .av-masonry-image-container { -webkit-transform: scale(1,1); -moz-transform: scale(1,1); transform: scale(1,1); }
And in the same field (Quick CSS) add this custom code to change the background color to white in the hover.
.image-overlay { background: #fff; }
Best regards,
John TorvikHey Amy Cole,
Yes! Enfold is simple to use and has a complete documentation with tutorials, videos and FAQ`S to help you. – see here: kriesi.at/documentation/enfold/
The Enfold theme has the Advanced Builder that will facilitate your life when you go to create pages.
Let me know if do you have some question about it :)
Best regards,
John TorvikHey mleite1,
You can use the User Role Editor – https://wordpress.org/plugins/user-role-editor/ – to enable or disable certain parts of WordPress.
It’s not a big deal to do it for your customer, ensure you only enable him to edit Pages, Posts, Media (content); not settings/theme options.
It’s safe to edit posts/pages since WordPress has a Revision System that allows you go back and undo changes without problems.
Best regards,
John TorvikHey Corina,
You can apply the background-size cover or contain property to preserve the pixel aspect ratio. – To learn more about this rule, check here: https://developer.mozilla.org/en/docs/Web/CSS/background-size
Best regards,
John TorvikMarch 15, 2017 at 7:49 pm in reply to: Fatal error: Cannot redeclare class avia_instagram_widget in #761582Hey Nancy,
You don’t copy the whole file to your child theme. Just have a clean fresh functions.php in the child folder. See: http://kriesi.at/documentation/enfold/using-a-child-theme/
You can download a pre-built child theme from there.
Best regards,
John TorvikMarch 15, 2017 at 7:40 pm in reply to: Why does TABLE not allow buttons in the column and not rows #761574Hi,
You can align your row adding a custom and exclusive CSS class at the column, like this example: http://prntscr.com/ekcklf with this custom CSS code at Enfold Theme Options > General Styling:
.your-custom-class {
top: 50px;
}
Applying this code, you`ll have this result: http://prntscr.com/ekclqv – is possible to see that I changed the column align.
P.S: If you can`t see the Custom Class field, this article could help you: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
Let me know if you have some question about it :)
Best regards,
John Torvik- This reply was modified 7 years, 8 months ago by John Torvik.
Hi,
To solve your problem, you need to follow these steps:
1. You need to enable the custom CSS field adding this line code in your function.php (with this code, you`ll be allowed to add a custom class in the advanced editor).
add_theme_support('avia_template_builder_custom_css');
You can learn more about it here: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
2. Create a column and add a custom class: clickable-box.
3. Now, inside the column, you`ll add the link in a text block.
4. And then, it’s required to add this script in the functions.php:
function add_custom_div(){ ?> <script> jQuery(".clickable-box").click(function(){ window.location = jQuery(this).find("a:first").attr("href"); return false; }); </script> <?php } add_action('wp_footer', 'add_custom_div');
and this CSS at the Enfold Theme Options > General Styling > Quick CSS
.clickable-box { cursor: pointer; } .clickable-box a { display: none; }
Let me know if you have questions about this process.
Best regards,
John Torvik -
AuthorPosts