Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for following up.
It seems to be a styling issue with the theme. To add a border on top of the first toggled item, try to use this css code.
.taglist { border-bottom: 1px solid #c5c6c6 !important; padding-bottom: 30px; margin-bottom: 0 !important; } .togglecontainer .av_toggle_section:first-of-type .toggler { border-top-width: 0; }Best regards,
IsmaelFebruary 16, 2022 at 7:38 am in reply to: Fullwidth Easy Slider problem after update 4.8.9.1 #1340855Hi,
Thank you for the info.
This might be an issue with the av_uid attribute. Is this an old slider, or a slider that was created on an older version of the theme? Please try to remove the current slider, add the same slider type, then reselect the images.
Best regards,
IsmaelFebruary 16, 2022 at 7:34 am in reply to: Attempting to Update Enfold to Version 4.8.9.1 – WooCommerce Error #1340854Hi,
Thank you for the update.
Is there a staging or development version of the site? Unfortunately, we will not be able to test this on the live site without breaking it. Please clone the site to a subdomain and update the theme there, but before doing the update, make sure to enable the error logs first and set the installation to debug mode.
// https://wordpress.org/support/article/debugging-in-wordpress/
You can add this code in the wp-config.php file to enable debugging.
// Enable WP_DEBUG mode define( 'WP_DEBUG', true ); // Enable Debug logging to the /wp-content/debug.log file define( 'WP_DEBUG_LOG', true ); // Disable display of errors and warnings define( 'WP_DEBUG_DISPLAY', false ); @ini_set( 'display_errors', 0 ); // Use dev versions of core JS and CSS files (only needed if you are modifying these core files) define( 'SCRIPT_DEBUG', true );Best regards,
IsmaelHey envatobunny,
Thank you for the inquiry.
Did you replace the slider with a color section? We were not able to access the site because it is asking for a 2-factor authentication.
Please create a test page containing the slider issue so that we can check it. For the meantime, please temporarily disable the Enfold > Performance > File Compression settings and the cache plugin so that we can rule out any caching issue.
Best regards,
IsmaelHi,
Thank you for the update.
You can use this css code to adjust the vertical position of the image in the widget.
#header .widget img { top: 25px; position: relative; }You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.
Best regards,
IsmaelHey Annemarie,
Thank you for the inquiry.
This is possible but after the modification, the users will not be able to click on the logo because the main menu and the search icon container will cover it. If that is fine, then you can use this css code.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .responsive #top #wrap_all .main_menu { left: 0; right: auto; width: 100%; } .responsive #top .av-logo-container .avia-menu { height: 100%; width: 100%; } #top #menu-item-search { float: right; } .responsive #top #header_main>.container .main_menu .av-main-nav>li>a { padding: 0; } .responsive #top .logo { float: right; } }You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.
Best regards,
IsmaelHey Krizz1989,
Thank you for the inquiry.
There is no option for this by default but you can modify the enfold/framework/js/conditional_load/avia_google_recaptcha_front.js file and set the script to always allow Google recaptcha regardless of the status of the privacy toggle. Look for this code or condition around line 57.
if( ! allow_continue )Above it, just add this code.
allow_continue = true;Or replace line 57 with this one.
if( false )Best regards,
IsmaelHey freehaan,
Thank you for the inquiry.
This is a known issue in the latest version of WordPress. You have to temporarily use this code in the functions.php file to fix the gallery sorting until version 5.9.1 is released.
function ava_custom_css_admin_mod() { echo '<style> .wp-core-ui .attachments:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; } </style>'; } add_action('admin_head', 'ava_custom_css_admin_mod');Best regards,
IsmaelHi,
Thank you for the update.
Did you find and adjust the settings that we mentioned above? What is the original size of the door images? Please post the site details in the private field so that we can check the settings of the slider.
Best regards,
IsmaelHi,
Thank you for the update.
You have to use the “full” thumbnail to display the original size of the featured image in the single post view.
/* * retrieve slider, title and content for this post,... */ $size = 'full';Does this applies to any blog style I choose from the list?
Are you trying to adjust the featured image in the actual post page? If yes, then the changes above should work. For the blog overview page, you may have to adjust a different file based on the selected blog style.
Best regards,
IsmaelFebruary 16, 2022 at 6:47 am in reply to: 1/3 content module is displayed on top of each other instead of side by side #1340840Hi,
Thank you for the info.
The html of the columns in the page is bit different which causes the columns to not resize correctly. For example, the class name of a 1/3 column should be av_one_third, but in your installation the class name is sc-av_one_third. Please try to update the theme to version 4.8.9.1, then disable the plugins temporarily. Let us know if that helps.
Best regards,
IsmaelHi,
Sorry about that. We have found a minor syntax error in the code above and corrected it. Please try to add it again in the functions.php file.
Best regards,
IsmaelFebruary 16, 2022 at 6:32 am in reply to: Cookies toggles on custom content and categorization #1340837Hey Reyking74,
Thank you for the inquiry.
Is there a way to have all cookies listed with its toggles (like your defaults but with a customized texts)?
You will find a list of the available privacy shortcodes in the Enfold > Performance > Privacy & Cookies > Privacy Shortcodes tab. And if you want to add your own custom text, just wrap them inside the shortcodes.
Example:
Best regards,
IsmaelHi,
Thank you for the update.
You should use the tax_query parameter, not the meta_query and please note that the taxonomy queries doesn’t accept post_type as a parameter. This is an example from the documentation.
$args = array( 'tax_query' => array( 'relation' => 'AND', array( 'taxonomy' => 'movie_genre', 'field' => 'slug', 'terms' => array( 'action', 'comedy' ), ), array( 'taxonomy' => 'actor', 'field' => 'term_id', 'terms' => array( 103, 115, 206 ), 'operator' => 'NOT IN', ), ), );Best regards,
IsmaelFebruary 16, 2022 at 6:04 am in reply to: Can't get rid of alert saying "Failed to initialize plugin: avia_builder_button" #1340834Hi,
Thank you for the update.
The issue occurs because of the form and the script tags in the page. Unfortunately, you cannot directly add form elements and script tags in the builder because the container that holds the actual elements or shortcodes is also a textarea element and adding another form field inside a textarea is not allowed. You have to create a custom shortcode for the form element and use that shortcode instead of embedding the html directly in the builder.
// https://codex.wordpress.org/Shortcode_API#The_Shortcode_API
Best regards,
IsmaelHi,
Thank you for the update.
This css overrides the custom background color of the color section.
.main_color { background: #ffffff url(https://www.site.de/wp-content/uploads/2022/02/silber-schmal.jpg) center center repeat scroll; }Did you add the css in the Quick CSS field, or is it set as the default main content background? Please try to disable the Performance > File Compression settings temporarily, purge the cache, then check the page again.
Best regards,
IsmaelFebruary 16, 2022 at 5:51 am in reply to: fullwidth easy slider change height of image for mobile #1340831Hi,
You are welcome! Please let us know if you need anything else. We will close this thread for now.
Have a nice day.
Best regards,
IsmaelHi,
Glad to know that the modifications are working. For the hover and active state, try to add this css code.
.taglist a:hover, #top .taglist .activeFilter { font-weight: bold; }Best regards,
IsmaelHi,
@marketingnr1: Would you mind opening a new thread so that you can use the private field for confidential info? Please open a new thread and post the site details in the private field so that we can access the site. We would like to check the theme options and the site settings.Best regards,
IsmaelFebruary 15, 2022 at 2:20 pm in reply to: Reveal Text Area upon button click – Contact Form #1340720Hey jonroot,
Thank you for the inquiry.
There is no conditional option for the current contact form field, so this is not possible, unfortunately. You may need to look for another contact form plugin and use that instead of the default contact form.
Best regards,
IsmaelHi,
Thank you for update.
You can use this code in the functions.php file.
add_action( 'wp_head', function() { global $post; if ( in_array($post->ID, array(1, 2, 3) ) ) { echo '<meta name="robots" content="noindex, nofollow">'; } }, 10 );The code above will add the robots meta tag if the current post or page ID is 1, 2 or 3. You can adjust this array and specify the pages where the meta tag should be added.
array(1, 2, 3)Best regards,
IsmaelHey Tobias,
Thank you for the inquiry.
What do you mean exactly by “display similar posts”? Are you referring to the related post items? Please note that related items will display if they have the same tags as the current post.
Best regards,
IsmaelFebruary 15, 2022 at 2:00 pm in reply to: 1/3 content module is displayed on top of each other instead of side by side #1340704Hey alliansohog,
Thank you for the inquiry.
Are you referring to the columns within the very last section of the page? The columns there are displaying side by side when we checked. Please check the screenshot in the private field.
Would you mind providing a screenshot of the issue? You can use imgur or dropbox for the screenshot.
Best regards,
IsmaelFebruary 15, 2022 at 1:53 pm in reply to: Split Masonry Gallery from normal Masonry sort order #1340701Hi,
Sorry for the delay. Is there a staging version of the site? We would like to test and remove all modifications related to the masonry element, and see if the load more button works. It is working correctly on our installation.
Best regards,
IsmaelHi,
Sorry for the delay. We are not familiar with AWS SES but we have found a good article that might help you with the issue. Please check the following link.
// https://www.wpbeginner.com/plugins/how-to-send-wordpress-emails-using-amazon-ses-step-by-step/
According to the article, you will have to get the Pro version of the WP Mail SMTP in order to use Amazon SMTP with WordPress. You may need to contact your hosting provider or the plugin authors for additional assistance.
Is the default contact form working when you are using an email address that is not from Amazon SES?
Best regards,
IsmaelHey peterolle,
Thank you for the inquiry.
You have to modify the includes > loop-index.php file, look for this code around line 88 and adjust the thumbnail size from “entry_with_sidebar” or “entry_without_sidebar” to “full”.
/* * retrieve slider, title and content for this post,... */ $size = strpos( $blog_style, 'big' ) ? ( ( strpos( $current_post['post_layout'], 'sidebar' ) !== false ) ? 'entry_with_sidebar' : 'entry_without_sidebar' ) : 'square';Best regards,
IsmaelHi,
Thank you for the inquiry.
You have to adjust the z-index of the second color section containing the column with the margin offset. Please add this css code first and let us know if it changes anything.
#av_section_2 { z-index: 9999; position: relative; }You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.
Best regards,
IsmaelHi,
You have to use the css code that @Guenni007 provided above to disable the animation of the site preloader.
// https://kriesi.at/support/topic/how-to-change-the-preloader-icon/#post-1340491
Best regards,
IsmaelHey agentur2c,
Thank you for the inquiry.
The size of the door images is only 260x185px. Have you tried selecting a different thumbnail or size in the the Styling > Gallery Settings > Image Size settings? Please edit the horizontal slider element, look for the settings that we mentioned above and select a different thumbnail.
Best regards,
Ismael -
AuthorPosts
