Forum Replies Created
-
AuthorPosts
-
Hi,
I solved the issue by adding this code to the quick css field (at the very bottom):
.responsive .woocommerce-checkout.woocommerce-page .container_wrap.fullsize:not(#av_section_1) .container, .responsive .woocommerce-cart.woocommerce-page .container_wrap.fullsize:not(#av_section_1) .container { max-width: 1000px; }
Best regards,
PeterHi,
Thanks insanityNL! Eefke could the answer solve your issue or do you still need help?
Best regards,
PeterHey Empatica,
Yes you can add new icons from fontello ( http://fontello.com/ ). This article will show you how to import them: https://kriesi.at/documentation/enfold/icon/#adding-your-own-fontello-or-flaticon-icons-
Best regards,
PeterSeptember 20, 2018 at 3:02 pm in reply to: how do I put prev / next at the botton of the pages? #1012347Hi!
Great, glad you found a solution!
Best regards,
PeterHey!
Great, glad we could help you :)Regards,
PeterHi,
If you don’t use a child theme I’d recommend to create a small plugin, otherwise the code will be removed on every theme update.You can use following code for the plugin to translate the “Your message” text to “Twoja wiadomość”:
<?php /* Plugin Name: Enfold Custom Code Description: Enfold Custom Code Version: 1.0 Author: InoPlugs Plugin URI: https://inoplugs.com Author URI: https://inoplugs.com */ function avf_form_autorespondermessage_mod($message) { $message = str_replace('Your Message:', 'Twoja wiadomość:', $message); return $message; } add_filter('avf_form_autorespondermessage', 'avf_form_autorespondermessage_mod', 10, 1);
Add this code to a text file and save it as enfold_custom.php Then upload this text file via ftp to the wp-content/plugins/ directory. Afterwards go to the wordpress admin panel > Plugins and activate the new plugin.
If you want to install it as a plugin via wordpress you need to use a tool like 7zip to convert the enfold_custom.php to a zip file (the file extension must then be .zip – enfold_custom.zip).
Best regards,
PeterHi,
Glad I could help you :)
Best regards,
PeterSeptember 20, 2018 at 2:34 pm in reply to: Problem Updating Enfold: "Download failed. Problem downloading theme" #1012333Hi,
This is a new version of the updated class-pixelentity-theme-update.php which also incorporates some changes of the Envato api.
Best regards,
PeterHi,
Please try this code instead:
add_filter( 'avia_post_nav_entries', 'enfold_customization_postnav', 10, 2); function enfold_customization_postnav($entries, $settings) { $entries['prev'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); $entries['next'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); return $entries; }
If it doesn’t work please create me an admin account and I’ll look into it.
Best regards,
PeterSeptember 20, 2018 at 2:25 pm in reply to: Open links from a masonry grid into a new window #1012324Hey sbeauchesne,
I think this thread will answer your question: https://kriesi.at/support/topic/open-masonry-gallery-image-link-in-a-new-window/#post-938857
Best regards,
PeterHi,
Great, glad I could help you :)
Best regards,
PeterHey pixeet2016,
I get the error
You have exceeded your request quota for this API. See https://developers.google.com/maps/documentation/javascript/error-messages?utm_source=maps_js&utm_medium=degraded&utm_campaign=billing#api-key-and-billing-errors
in the console. The error indicates a self-imposed daily limit has been exceeded or no billing account is set up. Please go to this page: https://console.developers.google.com/google/maps-apis/apis/maps-backend.googleapis.com/quotas and check your quotas. The contingent per day must be set to a reasonable value (i.e. 500).
Best regards,
PeterHey gary04,
1) Please add a custom css class to your “Home” menu item (Appearance > Menus, click on the arrow on the right to edit the menu item). Maybe you need to activate the css class field in the “Screen options” panel (see https://sevenspark.com/how-to/how-to-add-a-custom-class-to-a-wordpress-menu-item ).
For my sample code I’ll use the class “home_back_button” (without the quotes).
2) Then add this code to your child theme functions.php (and replace home_back_button if necessary):
add_action('wp_footer', 'ava_add_back_button_script'); function ava_add_back_button_script(){ if(is_home() || is_front_page()) return; ?> <script> jQuery(document).ready(function(){ jQuery('.home_back_button').click(function(){ parent.history.back(); return false; }); }); </script> <?php }
Best regards,
PeterSeptember 20, 2018 at 1:09 pm in reply to: Tab Section Inner Content Height – Not Showing all Content #1012288Hey!
I added the code for you – please check if it solved the issue on your end too.Regards,
PeterHi,
We’ve created a new fix which should handle the Envato api changes better. To fix this issue use the theme editor (Appearance > Editor) and edit Enfold. Go to enfold/framework/php/auto-updates/ and open the class-pixelentity-theme-update.php file. Clear the entire file (remove the code) and copy the entire code from here https://raw.githubusercontent.com/KriesiMedia/enfold-library/master/temp_fixes/Enfold_4_4_1/class-pixelentity-theme-update.php into the blank file. Afterwards save the file and the update should work.
You can also use ftp to update the file. Save the code from here: https://raw.githubusercontent.com/KriesiMedia/enfold-library/master/temp_fixes/Enfold_4_4_1/class-pixelentity-theme-update.php to a file called class-pixelentity-theme-update.php. Then connect to your server via ftp, go to the directory wp-content/enfold/framework/php/auto-updates/ and overwrite the class-pixelentity-theme-update.php with the updated file you created before.
Best regards,
PeterHi,
You’ll have the choice between the advanced layout builder or Gutenberg. You can’t use both together but you can choose which editor you want to use for the page/post.
Best regards,
PeterHi!
We’ve created a new fix which should handle the Envato api changes better.To fix it use the theme editor (Appearance > Editor) and edit Enfold. Go to enfold/framework/php/auto-updates/ and open the class-pixelentity-theme-update.php file. Clear the entire file (remove the code) and copy the entire code from here https://raw.githubusercontent.com/KriesiMedia/enfold-library/master/temp_fixes/Enfold_4_4_1/class-pixelentity-theme-update.php into the blank file. Afterwards save the file and the update should work.
You can also use ftp to update the file. Save the code from here: https://raw.githubusercontent.com/KriesiMedia/enfold-library/master/temp_fixes/Enfold_4_4_1/class-pixelentity-theme-update.php to a file called class-pixelentity-theme-update.php. Then connect to your server via ftp, go to the directory wp-content/enfold/framework/php/auto-updates/ and overwrite the class-pixelentity-theme-update.php with the updated file you created before.
Regards,
PeterHi,
I searched our user database for the e-mail you gave me but I couldn’t find an account. If you didn’t create a support account in the past you need to talk to Envato directly ( https://help.market.envato.com/hc/en-us/articles/202821620-Contact-Us ) because we can only find your data/license if you’ve a support account here.
Best regards,
PeterHi,
Thanks the forum script cutted of the last curly bracket – please try the code I posted above again.Best regards,
PeterHey Astrit Bublaku,
No, at the moment we’ve no plans to convert it to html.
Best regards,
PeterHi,
You can try this css code to change the caption styling:
#top #wrap_all .grid-content { margin-top: -54px; background: rgba(0,0,0,0.5) !important; } #top #wrap_all .grid-content .avia-arrow{ display: none; } #top #wrap_all .grid-content .entry-content-header { color: #ffffff; background: transparent !important; }
and this code to add a padding:
#top #wrap_all .isotope-item { padding: 0 10px 10px 0; }
Best regards,
PeterHi,
You can find the enfold theme here: https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990
Best regards,
PeterHey Rusty,
I fixed the issue by updating the public_html/wp-content/themes/enfold/framework/php/class-framework-widgets.php script. The warning should disappear now.
Best regards,
PeterHi,
You can install this plugin: https://wordpress.org/plugins/health-check/ to check your php version. Please use PHP 7, I’d recommend to use PHP 7.0 or 7.1 because some plugins might not work with PHP 7.2 yet. Your host / server administrator should be able to change the php version for you.
Best regards,
PeterHey almondmike_a,
I fixed it. You’ve too many tags and your server can’t query them all from the database. I now excluded the post tags taxonomy from the selection list by adding this code to your child theme:
add_filter('avia_public_taxonomies', 'avia_remove_resource_intensive_tax',10, 1); function avia_remove_resource_intensive_tax($taxonomies) { foreach($taxonomies as $post_type => $taxs) { foreach($taxs as $key => $data) { if($data == 'post_tag') unset($taxonomies[$post_type][$key]); } } return $taxonomies; }
and now the blog element works as expected.
Best regards,
PeterHi,
Yes in the “Additional Portfolio Settings” section of the portfolio editor page select “Define custom link” from the dropdown and insert your video url into the “Link portfolio item to external URL” text field.
Best regards,
PeterHi,
For the second checkout page you can use this code:
#top #wrap_all .wgm-second-checkout .stripe-sofort-icon{ max-width: 100px; }
Best regards,
PeterHi,
Please try to add this code to the child theme functions.php:
add_action('wp_footer', 'ava_auto_resize_gravity'); function ava_auto_resize_gravity(){ ?> <script> (function($){ var int = window.setInterval(function(){ $(window).trigger('resize'); $(window).trigger('av-content-el-height-changed'); }, 1000); })(jQuery); </script> <?php }
Best regards,
PeterSeptember 20, 2018 at 11:29 am in reply to: How to make Enfold theme (shop demo) one-click-page-"like" #1012212Hi,
Yes because no personal data will be send to third parties or stored.
Best regards,
PeterHi,
Ich habe den Iframe nun erfolgreich eingebunden. Ich wusste nicht auf welcher Seite er eingebunden werden soll, daher habe ich eine Entwurf-Seite genommen (siehe Link in Private Content Feld). Der Iframe/Codeblock befindet sich ganz am Ende der Seite. Du kannst den Code einfach per copy&paste auf einer anderen Seite einfügen.
LG,
Peter -
AuthorPosts