Forum Replies Created
-
AuthorPosts
-
Hey!
This just started happening since the last update. If you hit the tab button on a bullet point,
Your client is probably expecting the [TAB] key to create an indent or multiple spaces just like it does on common text editors. You can’t do a “tab indent” in the WordPress editor. Please try to switch to a default theme, create a post using the default editor and press the [TAB]. It won’t work. The [TAB] key is use to navigate through every interactive elements in the page — buttons, links, field etc. If you want to create an indent for the list element, you have to press ]ENTER] key, not [TAB].If you want to do an indent to a paragraph or text, use the increase indent icon in the text editor toolbar.
// https://www.wpbeginner.com/beginners-guide/how-to-easily-indent-paragraphs-in-wordpress/
Regards,
IsmaelHey!
Thank you for the update.
Could you give us an actual link to the thread? We won’t be able to find it using that post ID. We went through your previous posts, but this is the only thread that is still open.
Regards,
IsmaelAugust 21, 2019 at 4:16 am in reply to: button link option display error after copy to other language [using WPML] #1129406Hi,
Sorry for the delay.
The button that we edited previously is still set to “TRANSLATED WPML CHINESE”. It’s not reverting back to the first page in the selection. We edited it again, set it to “BRUNO FOR LINK TESTING”, updated the page and it’s still set as expected. (see private field)
Best regards,
IsmaelAugust 21, 2019 at 3:54 am in reply to: How to make webpage appear consistent across different display resolutions? #1129400Hi,
Thank you for using Enfold.
The image in the color section is set as background via css, so it’s possible to apply a smaller version of the image for lower screen resolutions using css media query.
@media only screen and (max-width: 1600px) { #av_section_1 { background-image: url("https://yourdomain.com/wp-content/uploads/2019/08/Max-Header-Small.jpg") !important; } }Adjust the image URL. You can also replace the selector “av_section_1” with the color section’s Section ID.
Best regards,
Ismael-
This reply was modified 1 year, 5 months ago by
Yigit.
Hey IASupport,
Thank you for using Enfold.
Looks like you’re using an element for the grid that is not from the advance layout builder. What is that? Please contact the plugin or script author for additional info.
Best regards,
IsmaelHi,
Thank you for the update.
You can add this snippet in the functions.php file to get the translation and use it as the footer page.
function ava_before_page_in_footer_compile_polylang_mod($post, $id) { if(function_exists('pll_current_language')) { $slug = pll_current_language('slug'); $post = get_post( pll_get_post($post->ID, $slug) ); } } add_action('ava_before_page_in_footer_compile', 'ava_before_page_in_footer_compile_polylang_mod', 10, 2);Best regards,
IsmaelHi,
Thank you for the update.
We added the css code again and disabled the Performance > File Compression settings temporarily. Please don’t forget to remove the browser cache before checking the page. When you’re done, you can activate the css compression again.
Best regards,
IsmaelAugust 21, 2019 at 3:30 am in reply to: How can I not move the search icon and move the menu to the middle? #1129394Hi,
UPDATE: If you want to center align or adjust the position of the menu, try to apply a left margin to the search icon.
#menu-item-search { margin-left: 50px; }Best regards,
IsmaelAugust 21, 2019 at 3:26 am in reply to: How can I not move the search icon and move the menu to the middle? #1129393Hey HeeHA,
Thank you for using Enfold.
How can I not move the search icon
Your inquiry is a bit confusing. Do you want to move the menu between the logo and the search icon? That is the default header layout, so you don’t need to do anything.
Best regards,
IsmaelHi,
Thank you for the update.
Yes, this has been reported before. It’s a bug in the “isotope” script. It calculates the items’ position immediately without waiting for the images to fully load. Your solution is almost the same as the one we usually recommend.
// https://kriesi.at/support/topic/issue-with-loading-large-masonry-galleries/#post-1116008
You can also try to optimize the images, decrease their size or adjust the number of items in the masonry element.
Best regards,
IsmaelAugust 21, 2019 at 3:16 am in reply to: Show Author in Blogpost created with Layout Builder #1129390Hey Igitt23,
Glad to know that you’re loving the theme!
The author meta info will not display automatically when you switch to the advance layout builder. You have to add it manually using a text or code block. Or you can create a custom shortcode to display the default post meta info. An example of that can be found in the following thread.
After creating the custom shortcode, edit any of your posts created with the advance layout builder, insert a text or code block, then add this shortcode.
[sc_post_meta]Best regards,
IsmaelAugust 21, 2019 at 3:10 am in reply to: Choose a preview/fallback image loading briefly before video starts #1129389Hi,
Thank you for the update.
You can try this css code instead.
@media only screen and (min-width: 989px) { .avia-slide-wrap { background-image: none !important; } }That should disable the fall back image on desktop view.
Best regards,
IsmaelHi,
Thank you for the update.
Where can we see the issue? Please create a staging site so that we can inspect the error. You should be able to find the code responsible for the custom pages (footer, maintenance, 404) in the includes > class-avia-custom-pages.php file.
Best regards,
IsmaelHey Andrea,
Thank you for the inquiry.
It seems to be an issue with an inline script.
/div><script type='text/javascript'> jQuery(document).bind('gform_post_render', function(event, formId, currentPage){if(formId == 3) {if(typeof Placeholders != 'undefined'){ Placeholders.enable(); }} } );jQuery(document).bind('gform_post_conditional_logic', function(event, formId, fields, isInit){} );</script><script type='text/javascript'> jQuery(document).ready(function(){jQuery(document).trigger('gform_post_render', [3, 1]) } ); </script>This is the error:
SCRIPT5009: SCRIPT5009: 'jQuery' is not defined sigacas.com (338,63)Did you set jQuery to load in the footer? The slider loads properly despite of the error.
Best regards,
IsmaelHi,
Thank you for the update.
It’s not a bug. The URL is actually added in a separate link element inside the column, which is unclickable because it’s 10000px away from the column element.
<a class="av-screen-reader-only" href="http://site.com/this-page">Follow a manual added link</a>When you click on the column, it will just redirect the site to the specified page or simulate a click event when its an anchor.
Best regards,
IsmaelHi,
Thank you for the update.
Try to increase the z-index of the container so that it’s positioned above the overlay.
.responsive .container { z-index: 2; }
@Guenni007: The page is in the private field — unfortunately.Best regards,
IsmaelAugust 20, 2019 at 4:04 pm in reply to: Custom fonts loading in http – "Unsecure scripts" error message in chrome #1129245Hi,
Thank you for the update.
It’s the font face rule in the dynamic css (wp-content > uploads > dynamic_avia > enfold.css). Try to remove the font completely, then upload it again. Please nota that you can only upload Google Fonts in the custom font manager. We removed the fonts there that were not from Google.
Best regards,
IsmaelAugust 20, 2019 at 3:52 pm in reply to: Compatible Thank you Page / Google Tracking Code Plug-Ins #1129244Hi,
Thank you for the update.
We haven’t tried that plugin, unfortunately. If you want to track the activity of your users, you can set a goal or event tracking in your Google Analytics. For example, in the page where you are redirecting the users after the checkout, you can trigger a tracker on page load.
// https://support.google.com/analytics/answer/1032415?
Best regards,
IsmaelHey nordkamm,
Thank you for using Enfold.
Which plugin are you using to add stripe to the shop? Are you using WooCommerce? You should try to reach the plugin author for additional help.
Best regards,
IsmaelHi,
Thank you for the update.
You can push the date to the right by adding a left margin. Use this css code.
.rpwwt-post-date { margin-left: 50px; }Put it inside the css media query.
Best regards,
IsmaelHi,
Thank you for the update.
Did you manage to change the theme default color to red? We created a test page. (see private field)
If not, you can either set a custom color to the element or apply a custom css class attribute to it so that you adjust its style manually.
// https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support
Best regards,
IsmaelHi,
Thank you for the update.
You can use the following css code to do both.
@media only screen and (max-width: 767px) { #socket { position: relative; } #socket #menu-item-43 { display: none !important; } }This should move the socket below the content container and hide the copyright.
Best regards,
IsmaelHi,
Thank you for the update.
How did you setup the site so it redirects from “ninserviziogratuito” to “ninfreeservice”? The unwanted post links to the “ninserviziogratuito” site instead of the other. Have you tried to re-create that particular post from scratch?
Best regards,
IsmaelHi,
Thank you for the update.
This css should work but it may require a few adjustments on mobile view.
#header .avia_mega_div { width: 100vw !important; right: auto !important; left: 0px !important; position: fixed; top: 150px; } #top #header .mega_menu_title a { text-align: center; }Don’t forget to toggle the Performance > File Compression settings.
Best regards,
IsmaelAugust 20, 2019 at 3:51 am in reply to: Avia Advanced Layout Builder doesn't load. Spinning wheel keeps on going. #1129078Hi,
@hypergolica: Please kindly open a new thread if you’re still having this issue. As @rikard suggested, it’s always recommended to open a new thread. We’ll close this one now.Best regards,
IsmaelHi,
Yes, WPML and Polylang are still two of the better choices for translations or multilanguate sites. WPML has a native configuration in the theme, but Polylang should work fine as well. You can also try this one.
// https://wordpress.org/plugins/weglot/
Thank you for the update.
Best regards,
IsmaelHi,
Thank you for the update.
The image element has a default right margin. You can remove that with this css code.
.avia-image-container.avia-align-left { margin-right: 0; }If you want to remove the top margin too, use this instead.
.avia-image-container.avia-align-left { margin-right: 0; margin-top: 0; }Best regards,
IsmaelHi,
Yes, that’s possible. Set the “Maintenance Mode” to the second option (Enabled – Use selected page content without redirect).
Thank you for the update.
Best regards,
IsmaelHi,
Thank you for the update.
“Tab to indent” is not available in the WordPress editor by default. You have to install a plugin for that. And auto indent can only be done in the first level of the ul/ol elements. It will not automatically create indents for nested ul or list elements. You can always switch to “Text” mode when you need to create nested lists.
// https://wordpress.org/plugins/tabs-in-post-editor/
You can confirm that by switching to a default theme and use the classic/block editor.
Best regards,
Ismael -
This reply was modified 1 year, 5 months ago by
-
AuthorPosts
