Forum Replies Created
-
AuthorPosts
-
February 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 #1340840
Hi,
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:
[av_privacy_accept_button wrapper_class="" id="" class=""]This is a custom text[/av_privacy_accept_button]
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,
IsmaelHey aluca6,
Thank you for the inquiry.
Looks like you are using the elementor builder for that particular page. Why are you not using the Advance Layout Builder from the theme? Unfortunately, we do not provide support for third party plugins.
Best regards,
IsmaelHi,
Thank you for the info.
The current size of the logo is not going to work because there is not enough space for the logo and the menu items. You will have to decrease the size of the logo and maybe decrease the number of menu items. To adjust the size of the menu items and the logo, try to add this css code.
.responsive #top .menu-item { margin-left: 0; } .responsive #top .avia-menu-text { padding-right: 11px !important; padding-left: 11px !important; font-size: 13px; } .responsive #top .logo { width: auto; height: 88px; }
The header should look like this after adding the css modification.
screenshot: https://1drv.ms/u/s!AjjTfXSRbKTvwC2Z0HyU0Pd8eFaW?e=4aoUay
Best regards,
IsmaelHey efghoexter,
Thank you for the inquiry.
Yes, the font Open Sans is from Google. What do you mean by naming Google? Do you mean in your privacy policy page? Yes, you should mention in your privacy policy page that the site is using fonts from Google. You can also use the Enfold > Privacy & Cookies option to give the users the option whether to allow or disallow certain features in the theme. For more info about the privacy policy options, please check the following documentation.
// https://kriesi.at/documentation/enfold/privacy-cookies/
Best regards,
IsmaelHey efghoexter,
Thank you for the inquiry.
Yes, the font Open Sans is from Google. What do you mean by naming Google? Do you mean in your privacy policy page? Yes, you should mention in your privacy policy page that the site is using fonts from Google. You can also use the Enfold > Privacy & Cookies option to give the users the option whether to allow or disallow certain features in the theme. For more info about the privacy policy options, please check the following documentation.
// https://kriesi.at/documentation/enfold/privacy-cookies/
Best regards,
IsmaelHi,
Thank you for your understanding. If you are still looking for alternative solutions without doing any direct modifications to the theme, the following plugins might help.
// https://wordpress.org/plugins/post-timeline/
// https://wordpress.org/plugins/cool-timeline/Best regards,
IsmaelFebruary 15, 2022 at 5:35 am in reply to: Very big Problem with Enfold / Advanced Layout Builder #1340631Hi,
Thank you for the info.
You may need to create a custom shortcode for the emojis so that you don’t have to add the code directly in the text block or use a plugin such as the following.
// https://wordpress.org/plugins/emoji-shortcode/
If you want to create a custom shortcode, this documentation should help.
// https://codex.wordpress.org/Shortcode_API#The_Shortcode_API
Best regards,
IsmaelHey Jak73,
Thank you for the inquiry.
According to this documentation, there is no way to block certain parts of the page from crawlers.
But in the following article, the author proposes a workaround that requires an external folder which bots cannot access.
// https://medium.com/typeqast/hide-content-from-google-crawling-bot-with-javascript-6c2541e2798b
In the folder, you can create scripts that will dynamically render the phone number or any elements in the page which is visible to the client or site visitors but not to the bots.
Best regards,
IsmaelHey zimbo,
Thank you for the inquiry.
Lighthouse might be referring to the hidden textarea, which is used to prevent spam and bots from autofilling the form. This field doesn’t require a label because it is hidden, so the lighthouse warning can be ignored.
<textarea id="a82a363e89a4c00b08eb9a1b38b128a0" aria-hidden="true" name="comment"
Best regards,
IsmaelHi,
Gern geschehen! Please feel free to open another if you need anything else. We will close this one for now.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the update.
Did you create a separate menu for each language? Please note that each language in a Poylang installation should have a separate menu. The following documentations should help.
// https://polylang.pro/doc/create-menus/
// https://polylang.wordpress.com/documentation/setting-up-a-wordpress-multilingual-site-with-polylang/navigations-menus/Best regards,
IsmaelHey Jak73,
Thank you for the inquiry.
You can attach a function to the wp_head hook to insert meta tags within the head element, and use the is_page conditional function to control in which pages should the meta tags render. Please check the documentations below for more info about the hook and the function.
// https://developer.wordpress.org/reference/hooks/wp_head/
// https://developer.wordpress.org/reference/functions/is_page/This is documentation about robots meta tgs.
// https://moz.com/learn/seo/robots-meta-directives
Best regards,
Ismael -
AuthorPosts