Forum Replies Created
-
AuthorPosts
-
Hey Ayumi,
Thank you for the inquiry.
The table in the text block is already transparent when we checked the page. Which table or element are you trying to adjust? Please provide a screenshot using imgur or dropbox.
Best regards,
IsmaelHey Ok,
Thank you for the inquiry.
You can also use the avf_form_autorespondermessage filter to adjust the autoresponder message same as you would with the form message. Or if you want to create a custom responder message, use the avf_form_custom_autoresponder filter.
Best regards,
IsmaelHi,
Thank you for the update.
You do not have to create a special category for the first post. Just set both Blog Posts elements’ Content > Filter > Offset Number to the second option to disallow duplicate posts. The first post will automatically move to the second blog posts element when another post is created.
Best regards,
IsmaelHey thomasgafo,
Thank you for using Enfold.
The dropdown or the option elements are displaying correctly on Chrome MacOS, but it looks like you are on Windows. Did you add css to adjust the color of the option element?
You can try this css code to adjust the font color of the dropdown.
select, select option { color: black; } select:invalid { color: red; }
Please toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.
Best regards,
IsmaelHey Valter,
Thank you for the inquiry.
The mega menu option only works in the desktop or default menu. It will automatically switch to a simple dropdown inside the menu overlay or when the burger menu is active.
Best regards,
IsmaelHey sitibus,
Thank you for the inquiry.
Unfortunately, we do not provide support for third party plugins as stated on our support policy. You may need to contact the plugin developers for additional assistance.
Have you tried using the Portfolio Grid element from the Advance Layout Builder? The grid element has a category sorting option by default. You will have to create portfolio items and assign them to categories.
Best regards,
IsmaelHi,
Thank you for the update.
Yes, you can remove the following lines to enable the effect on mobile devices but it might return unexpected results, or create issues with image sizes and background transition.
if(_self.isMobile) { return; //disable parallax scrolling on mobile }
Best regards,
IsmaelHi,
Thank you for the info.
Looks like you are now using larger images for the thumbnails (see private field). By selecting or by using a larger image size, you will actually improve the quality of the thumbnails.
Best regards,
IsmaelHi,
Yes, you have to purchase a new license if you do not have access to the account that was used to purchase the theme, or if you do not have the purchase code. Once you have purchased a new license using a different Themeforest account, you have to download the theme and update the installation manually via FTP.
// https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
You can also use the purchase code to register an account in the forum.
// https://kriesi.at/support/register/
The automatic update in the Theme Options should work again after upgrading the theme to version 4.8.6.1 but it will require a personal token. Here is how you can obtain one.
// https://kriesi.at/documentation/enfold/theme-registration/
// https://kriesi.at/documentation/enfold/theme-updateBest regards,
IsmaelAugust 25, 2021 at 6:46 am in reply to: Only one picture needet – not all … / Nur ein Bild beim Anklicken anzeigen #1318225Hi,
Thank you for following up.
In the script that you are using, look for the is_page function.
if( is_page(113) ) {
You can replace the current value with an array of page ID.
Example:
if( is_page(array(113, 588, 123)) ) {
This should disable the gallery option for the lightbox within the pages with the ID 113, 588 and 123.
Best regards,
IsmaelHi,
Thank you for the update.
Yes, I am afraid you will have to update the URL manually because they are in a format that the video shortcode does not recognized. You have to use the Youtube URL format with the v URL query parameter. We are not really sure how you made it work before, but this is the only Youtube URL format that the shortcode accepts ever since.
Example:
https://www.youtube.com/watch?v=videoIDhere1234
You can actually find the same format in the sample videos.
Best regards,
IsmaelHi,
Thank you for the update.
The SFTP account above does not have write permissions, so we are not able to edit the wp-config.php file. You have to set WP_DEBUG constant to true.
define('WP_DEBUG', true); define('WP_DEBUG_LOG', true); define('WP_DEBUG_DISPLAY', true);
We get this error when we try to edit the files.
/dir/wordpress/wp-config.php: open for write: permission denied Error: File transfer failed
Best regards,
IsmaelHi,
You can manually edit taxonomy or category query within the sort_buttons function in the enfold\config-templatebuilder\avia-shortcodes\portfolio\portfolio.php file but this will get applied on all sort buttons in every portfolio grid element. You have to adjust the order and orderby parameter.
//get all categories that are actually listed on the page $categories = get_categories( array( 'taxonomy' => $params['taxonomy'], 'hide_empty' => 0 ) );
// https://developer.wordpress.org/reference/functions/get_terms/
Have you tried using this plugin instead? We have not tested it, so we are not sure if it will work without interfering with the query filter.
// https://wordpress.org/plugins/custom-taxonomy-order-ne/
Best regards,
IsmaelAugust 25, 2021 at 6:21 am in reply to: Copyright mit Datenschutz jeweils extra für deutsche und englische Website #1318220Hi,
Could you please explain to me exactly how I can best copy the currently unlinked English pages via shortcode (w
We are not really sure what it means and if it is possible. You might have to translate the pages again to the other language using the default plugin translation process or steps. Please check the following documentation for more info.
// https://polylang.pro/doc/translating-pages-posts-categories-and-tags/
Best regards,
IsmaelAugust 25, 2021 at 6:17 am in reply to: Pagination not working on avia_product_slider in search.php #1318217Hi,
Thank you for the inquiry.
Looks like the get_pagenum_link function automatically transforms the URL because its second parameter is set to default, so it is using the esc_url() function instead esc_url_raw(). Please try to look for this line above the one we edited above.
if( empty( $query_arg ) ) { $url = $method( $page_number ); } else { $url = $method( 1 );
We have to set the second parameter to false.
if( empty( $query_arg ) ) { $url = $method( $page_number, false, ); } else { $url = $method( 1, false );
Let us know how it goes.
Best regards,
IsmaelHey Meijestic,
Thank you for the inquiry.
The theme directly send the form data to the recipient, but it does not save any of it to the database. That is possible but the option is not available in the theme out of the box. You can use a plugin like Contact Form 7 if you want to capture form submissions.
// https://wordpress.org/plugins/contact-form-cfdb7/
Best regards,
IsmaelHi,
If you are using the Block Editor, you can save the post as draft by clicking one of the buttons in the top right corner of the editor. Please check the following documentation for more info.
// https://wordpress.com/support/wordpress-editor/#elements-of-the-word-press-editor
The theme has its own Advance Layout Builder (ALB), so using a third party builder plugin like Elementor is not really necessary, unless you are using features or elements that are not in the default builder. Unfortunately, we do not provide support for third party plugins as stated on our support policy. You will have to contact the plugin developers for additional assistance.
Best regards,
IsmaelHi,
Sorry for the confusion. The name of the file is actually loop-index.php and not loop-single.php file. It should be located in the includes folder. Look for this code around line 90.
$size = strpos( $blog_style, 'big' ) ? ( ( strpos( $current_post['post_layout'], 'sidebar' ) !== false ) ? 'entry_with_sidebar' : 'entry_without_sidebar' ) : 'square';
If you have more questions, please feel free to open another thread.
Best regards,
IsmaelHey june,
Thank you for the inquiry.
The space below the portfolio items returns back to normal when we resize the browser. Adding this script in the functions.php file should help.
add_action('wp_footer', 'ava_auto_resize'); function ava_auto_resize(){ ?> <script> (function($){ var int = window.setInterval(function(){ $(window).trigger('resize'); }, 1000); $(window).on("load", function () { setTimeout(function() { clearInterval(int); }, 1000); }); })(jQuery); </script> <?php }
Best regards,
IsmaelHey peterolle,
Thank you for the inquiry.
You could set a special category for the child posts, e.g “topic-1-child-posts” for the child posts of topic 1 and select that category in a posts element (blog posts, magazine, posts slider etc). The PDF link can be added manually using a text block or by adding a custom field. You will then have to modify the posts template to reflect the value of the custom field and use it as the post link.
Unfortunately, you cannot assign a parent post or have a post with child posts. This is only possible for pages.
// https://wordpress.stackexchange.com/questions/36300/can-posts-have-parents
Best regards,
IsmaelAugust 25, 2021 at 4:49 am in reply to: Content Security Policy without using 'unsafe-inlne' #1318205Hey pythagoras_microsoft,
Thank you for the inquiry.
The builder and Google maps rely on inline scripts, so they will not work when inline sources are blocked. Without the CSP directive, browsers allow inline sources (scripts, styles, onclick attr etc) by default, so you can just keep it as is.
Best regards,
IsmaelAugust 25, 2021 at 4:44 am in reply to: How to control an Auto Start YouTube video and can I embed it. #1318204Hey Dallas,
What I would like is to have the video end and close so visitors see the whole home page…
Sorry for the delay. Unfortunately, what you are requesting above is not possible without significant modification in the theme. You may need to hire a freelance developer contact our partner, Codeable. If that is not option, try to use the layer slider and its transition settings. However, we are not sure if it has the exact option that you are looking for.
Best regards,
IsmaelAugust 23, 2021 at 11:09 am in reply to: Is it possbile to link a button to a tab section with (#av-tab-section-1-2-link) #1317949Hey stoneroad,
Thank you for the inquiry.
By default, it is not possible to deep link or to open a tab section using an anchor. You will have to add a custom script to activate a specific tab section based on the anchor value. Please check the following thread for more info.
// https://kriesi.at/support/topic/submenu-links-to-tab-sections/#post-1296895
Best regards,
IsmaelHey sky19er,
Thank you for the inquiry.
The burger menu markup can be found in the avia_append_burger_menu function within the enfold\functions-enfold.php file. You can directly add the attribute there. And regarding the menu indicator, you can find the burger toggle logic in the enfold\js\avia-snippet-hamburger-menu.js file, around line 430.
burger_wrap.on('click', function(e)
The if condition around line 454 returns true when the burger menu is currently active.
if(burger.is(".is-active"))
Best regards,
IsmaelAugust 23, 2021 at 10:52 am in reply to: Copyright mit Datenschutz jeweils extra für deutsche und englische Website #1317946Hey Createve_Solutions,
Thank you for the inquiry.
Did you set a different menu for each language? According to the documentation, you have to set a different set of menu for each language and assign it to its respective theme location. For more info, please check the following link.
// https://polylang.pro/doc/create-menus/
Best regards,
IsmaelAugust 23, 2021 at 10:47 am in reply to: Horizontal Gallery not displayed correctly on Mobile #1317945Hey Stefano,
Thank you for the inquiry.
It seems to be working correctly on a mobile device emulation. Please note that the gallery will automatically resize and switch to a single column, or will only display one image at a time. Please check the screenshot below.
Screenshot: https://imgur.com/DiG6kma
Best regards,
IsmaelHey DarioZurlo,
Thank you for the inquiry.
Parallax effect is disabled on mobile view by default. It only works on a browser emulation because the script that we are using can only detect actual mobile devices. The script can be found in the js > shortcodes.js file, around line 260 inside the AviaParallaxElement function, you will find this code.
var _self = this; if(_self.isMobile) { return; //disable parallax scrolling on mobile }
Best regards,
IsmaelHey Bob van der Pol,
Thank you for the inquiry.
The automatic update on version 4.2.6 is no longer valid and will no longer work as expected, so you have manually update the theme via FTP. However, this means that you will need access to the previous account that was used to purchase the theme. If you do not have access to the account, try to ask the agency for the Purchase Code so that you can register an account to the forum.
// https://kriesi.at/support/register/
Best regards,
IsmaelHey bemodesign,
Thank you for the inquiry.
The site in not accessible on our end — we get this error or notification. You may need to ask your hosting provider to disable the firewall temporarily.
Screenshot: https://imgur.com/0uqpVQ8
Regarding the contact form issue, the following troubleshooting steps might help.
// https://kriesi.at/documentation/enfold/contact-form/#my-contact-form-is-not-sending-emails-
Best regards,
IsmaelHey AK-Messer,
Thank you for the inquiry.
The error trace above seems to be incomplete, so we are not yet sure what actually triggers the error. We may have to enable debugging in order to further inspect the issue.
Please post the FTP details in the private field so that we could edit the wp-config.php file. If you want to enable debug mode yourself, please refer to the following documentation.
// https://wordpress.org/support/article/debugging-in-wordpress/#wp_debug_display
You have to set WP_DEBUG and WP_DEBUG_DISPLAY to true.
Best regards,
Ismael -
AuthorPosts