Forum Replies Created
-
AuthorPosts
-
Hey yoncay,
Thank you for the inquiry.
You may need to wrap the iframe in a container and then apply a minimum height to that container.
Example:
<div style="min-height: 500px; position: relative;"> <iframe style="position: absolute; left: 0; right: 0; top: 0; border-radius: 15px; border: 0; margin: 0 auto;" src="https://3d-configurator.arimars.com/arimars/AutumnSeasonTshirt" width="560" height="500"> </iframe></div>
Best regards,
IsmaelHi,
Thank you for the update.
You may need to manually create the html and css for this layout. You can add this html in a Code Block element for example:
<div class="av-bento-container"> <div class="av-bento-box av-bento-left-box">Left Box (100%)</div> <div class="av-bento-right-container"> <div class="av-bento-box av-bento-top-box">Top Box</div> <div class="av-bento-box av-bento-bottom-box">Bottom Box</div> </div> </div>
Then insert this css code:
.av-bento-container { display: flex; height: 100vh; } .av-bento-container .av-bento-left-box { flex: 1; background-color: #4CAF50; color: white; padding: 20px; text-align: center; } .av-bento-container .av-bento-right-container { display: flex; flex-direction: column; width: 300px; } .av-bento-container .av-bento-top-box { flex: 1; background-color: #2196F3; color: white; padding: 20px; text-align: center; } av-bento-container .av-bento-bottom-box { flex: 1; background-color: #f44336; color: white; padding: 20px; text-align: center; }
Best regards,
IsmaelHey nancyT,
Thank you for the inquiry.
This issue has been fixed in the latest version of the theme. Please upgrade to version 6.0.6 or add this hook in the functions.php file:
function admin_head_mod() { echo '<style type="text/css"> #postbox-container-2 { clear: left; } .index-php #postbox-container-2 { clear: none; } </style>'; } add_action('admin_head', 'admin_head_mod');
Best regards,
IsmaelHi,
Well, I simply typed the involved URI, in a new line, at that was it. I did not actually use any Embed block: that IFRAME-embed was done automatically,
The issue is that the Embed Block from the block or default editor is inside a Code Block element, which is why the script above is being applied. You cannot use an Embed Block inside a Code Block element by default. Did you switch from the Block Editor to the Advanced Layout Builder? You can only use one editor at a time; you cannot switch back and forth. We have forwarded the issue to our channel.
Best regards,
IsmaelHi,
Alright! Glad to know that this has been resolved. Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHey leloux,
Thank you for the inquiry.
You can use the ava_main_header_sidebar hook in the functions.php file to insert additional content to the left sidebar menu or header:
Example:
The following will add a paragraph element:
add_action( 'ava_main_header', 'ava_header_sidebar_custom_text' ); function ava_header_sidebar_custom_text() { echo "<p class='av-sidebar-header-text'>Additional text</p>"; }
This one will insert a widget area called “header-top”:
add_action( 'ava_main_header', 'ava_header_sidebar_widget_area' ); function ava_header_sidebar_widget_area() { dynamic_sidebar( 'header-top' ); }
Best regards,
IsmaelHey Silje,
Thank you for the inquiry.
Have you tried adjusting the color values in the Enfold > General Styling > Main Content tab? To fix the issue temporarily, please disable the Autoptimize and cache plugin, then add this css code:
#top .main_color .input-text, #top .main_color input[type=text], #top .main_color input[type=input], #top .main_color input[type=password], #top .main_color input[type=email], #top .main_color input[type=number], #top .main_color input[type=url], #top .main_color input[type=tel], #top .main_color input[type=search], #top .main_color textarea, #top .main_color select { border-color: black; background-color: white; color: gray; font-family: inherit; }
Best regards,
IsmaelHey michelebond,
Thank you for the inquiry.
Try to adjust the Highlight Color value in the Enfold > General Styling > Logo Area tab. Let us know of the result.
Best regards,
IsmaelHey michelebond,
Thank you for the inquiry.
You can use this css code to adjust the color of the widget title:
.main_color div .news-headline .news-title { color: #ffffff; }
Best regards,
IsmaelHey!
Unfortunately, there is no option for this for the product post type as mentioned above. You can try the following filter in the functions.php file but it may not work as expected:
add_filter( 'avf_post_nav_settings', 'avf_post_nav_settings_mod', 10, 1); function avf_post_nav_settings_mod($settings) { $settings['same_category'] = true; return $settings; }
Best regards,
IsmaelHi,
Thank you for the inquiry.
As @Guenni007 mentioned above, the custom font manager is originally intended for Google fonts. If the font is from a different source, make sure to follow the instructions in the File Structure tab.
// https://kriesi.at/documentation/enfold/typography/#how-to-upload-custom-fonts
Best regards,
IsmaelHey carmen,
Thank you for the inquiry.
The background is not visible when we check the site in desktop view. We also encountered this error:
Uncaught ReferenceError: jQuery is not defined at landing-bruxismo/:1533:6
Did you add any custom scripts to the site?
Best regards,
IsmaelHi,
Thank you for the update.
If I can’t make it stay within its own Category, how do I remove it?
You can disable the product navigation by adjusting the Single Post Navigation settings in the Enfold > Blog Layout panel. You can also use this css code:
#top .avia-post-nav { display: none; }
Best regards,
IsmaelOctober 30, 2024 at 4:31 am in reply to: Product Gallery Images now square and cropped on new images? #1470184Hi,
Thank you for the update.
Did you set the Enfold > Shop Options > Product Gallery settings to Woocommerce 3.0 product gallery? The filter above will only work if the default 3.0 product gallery is active.
Best regards,
IsmaelHey schweg33,
Thank you for the inquiry.
Try to add this css code:
#top .av_header_glassy.av_header_transparency #header_main .container.av-logo-container { display: none; }
You may need to adjust the top margin in the previous modification.
Best regards,
IsmaelOctober 30, 2024 at 4:16 am in reply to: Falsche Navigationspunkte aktiv bei lokalen Sprungmarken #1470182Hi,
Thank you for the update.
We created a custom page using Color Sections and temporarily set it as the front page. The anchor works fine on this page. Please make sure to purge the cache before testing.
Best regards,
IsmaelHey Brixton4G63T,
Thank you for the inquiry.
Did you add any custom scripts or installed any new plugins recently? If so, try to temporarily remove the scripts and disable the plugins. Let us know if this changes anything.
Best regards,
IsmaelHi,
Sorry for the delay. The modification seems to be working on our end. Please check the screenshot in the private field. We temporarily disabled the Enfold > Performance > File Compression settings. Please make sure to purge the cache and remove the browser history before checking the page.
Best regards,
IsmaelHey paulw185,
Thank you for the inquiry.
3) I’ve duplicated the homepage, and then I CAN edit the duplicate, but not the original page.
Did you embed any custom scripts or shortcodes on the home page? If the duplicate is working, try setting this one as the home page and then remove the old one
Best regards,
IsmaelHi,
We replied here: https://kriesi.at/support/topic/update-11/#post-1470071
You can continue the discussion here or in the previous thread.
Best regards,
IsmaelHey amandahook62,
Thank you for the inquiry.
Have you tried adjusting the Row Settings > Row Margin > Custom Top and Bottom Margin settings for mobile view or smaller screens? You can toggle the device icons to specify different margins for different screen sizes.
Best regards,
IsmaelHi,
Thank you for the update.
I added the script section of your code into a code block with a window.addEventListener call I already had for other purposes.
The code should be added in the function.php file. It can be added to a Code Block element but you have to remove the PHP code.
However, I did found a simpler solution
Great! Glad to know that you’ve got this working. Let us know if you have any more questions.
Best regards,
IsmaelHey amandahook62,
Thank you for the inquiry.
You may need to apply unique class names to the other Icon Boxes in order to target them specifically. Please check the link below for more info:
// https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support
Once you’ve specified a unique class name (e.g., av-icon-box-height-large, av-icon-box-height-medium, av-icon-box-height-small), add the following css code using the new selector.
Example:
.av-icon-box-height-large .iconbox_content { min-height: 400px; } .av-icon-box-height-medium .iconbox_content { min-height: 300px; } .av-icon-box-height-small .iconbox_content { min-height: 200px; }
Best regards,
IsmaelHey Aimata,
Thank you for the inquiry.
I can’t update Enfold. They ask me for a key, I put the key but it doesn’t work
Did you generate a private token? If you haven’t, please check the documentation below: https://kriesi.at/documentation/enfold/theme-registration/#what-is-an-envato-personal-token
And I can’t find the support.
Do you have the purchase code? If you have a purchase code, you can register a new account in the forum using the following link: https://kriesi.at/support/register/
After the forum registration, you can open a new inquiry using this form: https://kriesi.at/support/forum/enfold/#new-post
Best regards,
IsmaelOctober 29, 2024 at 7:51 am in reply to: How to double a Enfold site completely to other domain? #1470070Hey felixl,
Thank you for the inquiry.
Yes, that’s about it, unless you’re planning to use multi-language plugin such as WPML or Polylang. If not, then you can proceed with the transfer manually, or you can also use one of the following plugins to help you with the migration:
// https://wordpress.org/plugins/wp-migrate-db/
// https://wordpress.org/plugins/all-in-one-wp-migration/Best regards,
IsmaelHey Jose Ramon,
Thank you for the inquiry.
The theme doesn’t actually affect how the feed works or interact with it. Did you install any plugins related to the feed?
This is what the XML markup with the duplicated image looks like:
<description><![CDATA[<a href="https://mymabogados.com/transformacion-del-recurso-especial-en-materia-de-contratacion" title="La Transformación del Recurso Especial en Materia de Contratación: Un Camino hacia la Excelencia Administrativa" rel="nofollow"><img fetchpriority="high" width="495" height="259" src="https://lh3.googleusercontent.com/pw/AP1GczPvGSHnn7froqBKQybrIx77QgZxcoJIWt_PKBOxKifvtpq-6xEdtx2FfVgaTUXcaVmbH7IuZdl7qv3y3x47JTOoJb3lOzdnBSLQog5Bx9Kwq9vtJFZPBfJt1WNwcX28o06mSocoiUJFa488pVaJaD4h=w870-h455-s-no?authuser=1" class="wp-image-18772 avia-img-lazy-loading-not-18772 webfeedsFeaturedVisual wp-post-image" alt="transformación del recurso especial en materia de contratación | Melián Abogados" title="transformación del recurso especial en materia de contratación | Melián Abogados" style="display: block; margin-bottom: 1px; clear:both;max-width: 100%;" link_thumbnail="1" decoding="async" /></a>Descubre cómo el recurso especial en materia de contratación (REMC) ha mejorado la transparencia y el control en la gestión de recursos. Analizamos su eficacia, los desafíos actuales y propuestas para ampliar su ámbito de aplicación, beneficiando a pequeñas y medianas empresas.]]></description> <content:encoded><![CDATA[<a href="https://mymabogados.com/transformacion-del-recurso-especial-en-materia-de-contratacion" title="La Transformación del Recurso Especial en Materia de Contratación: Un Camino hacia la Excelencia Administrativa" rel="nofollow"><img fetchpriority="high" width="495" height="259" src="https://lh3.googleusercontent.com/pw/AP1GczPvGSHnn7froqBKQybrIx77QgZxcoJIWt_PKBOxKifvtpq-6xEdtx2FfVgaTUXcaVmbH7IuZdl7qv3y3x47JTOoJb3lOzdnBSLQog5Bx9Kwq9vtJFZPBfJt1WNwcX28o06mSocoiUJFa488pVaJaD4h=w870-h455-s-no?authuser=1" class="wp-image-18772 avia-img-lazy-loading-not-18772 webfeedsFeaturedVisual wp-post-image" alt="transformación del recurso especial en materia de contratación | Melián Abogados" title="transformación del recurso especial en materia de contratación | Melián Abogados" style="display: block; margin-bottom: 1px; clear:both;max-width: 100%;" link_thumbnail="1" decoding="async" /></a><strong>Notas para el III Congreso Contratación Pública Valencia</strong>
Best regards,
IsmaelHi,
Great! Glad to hear you figured this out. Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHey amandahook62,
Thank you for the inquiry.
Did you add the code in a Code Block element? Please try to use this css code to center align the button:
section.av_textblock_section.av-ckia6-482cf2638632f5a4233e2b95e93e8577 + section.avia_codeblock_section.avia_code_block_0 span a, section.av_textblock_section.av-ckia6-482cf2638632f5a4233e2b95e93e8577 + section.avia_codeblock_section.avia_code_block_0 span a div { text-align: center; left: 50%; position: absolute; transform: translateX(-50%); }
Best regards,
IsmaelOctober 29, 2024 at 4:48 am in reply to: Falsche Navigationspunkte aktiv bei lokalen Sprungmarken #1470062Hi,
Thank you for the update.
Instead of applying the ID to the HR element, try applying it to the Color Section element, which is commonly used to divide sections on the page. Let us know if this works for you.
Best regards,
IsmaelHey whdsolutions,
Thank you for the inquiry.
This css code hides the basket or cart icon:
.menu-item { display: none; }
It’s from the plugin “hide-prices-private-store”. Try to override it with this code:
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .responsive #top .cart_dropdown { display: block; } }
Best regards,
Ismael -
AuthorPosts