Forum Replies Created
-
AuthorPosts
-
Hey hitrev,
Thank you for the inquiry.
You can use this css code to adjust the alignment of the text on mobile view. You may need to apply a unique class name or ID to the text block and use that instead of the css selector below.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ #av_section_5 .flex_column.av_one_third. .avia_textblock p { text-align: left !important; } }And please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.
Best regards,
IsmaelHi,
Thank you for the screenshot.
You may be using an older version of the theme. Please make sure to update the theme to version 4.8.8. If the new version does not come up in the Theme Options > Updates panel, try to download the latest files from your Themeforest account, then update the theme manually via FTP. You can check the documentation below for more info.
// https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
Best regards,
IsmaelHey!
Thank you for the update.
What was the error? Would you mind testing it again using this bit of code?
$permalink = '<div class="read-more-link"><a href="' . $link . '" class="more-link">' . __( 'Read more', 'avia_framework' ) . '<span class="more-link-arrow"></span></a></div>';Place it around line 727, just below the code that we mentioned above.
Best regards,
IsmaelDecember 15, 2021 at 9:23 am in reply to: burger menu not activating on small mobile screens #1332909Hey hostworks,
Thank you for the inquiry.
Where do you want to place the search widget? There seems to be no space for it in the header. Temporarily, you use this css code to adjust the style of the search form a bit.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .responsive #top #header .search-form { display: flex; flex-direction: row; width: 100%; } .responsive #top #header .search-form > form { display: block !important; width: 50%; } #header_meta { background: #162c40 !important; } }Best regards,
IsmaelHey stoneroad,
Thank you for the inquiry.
The theme is compatible with the latest version of PHP, so the site should not break after the update. There might be plugins in those sites that are not compatible with PHP 8.0, which might have caused the issue instead.
Do you see any errors after updating PHP? You may need to enable debugging to see the errors or check them in the error logs.
// https://wordpress.org/support/article/debugging-in-wordpress/
Best regards,
IsmaelHi,
Thank you for the info.
The items or the progress bars are still inside a single Progress Bars element when we checked the site again today (see private field). Again, you have to add a separate progress bar element for each bar, task, item or skill if you want them to animate in sequence or separately.The animation sequence will not be that obvious or it will still look like they are animating together because the elements are close to each other. Please note that the animation is triggered once the element is partially visible in the page.
Best regards,
IsmaelDecember 15, 2021 at 8:58 am in reply to: Connection lost. Saving has been disabled until you’re reconnected. We’re backin #1332900Hi,
Thank you for the update.
We may need to set the installation to debug mode. Again, we would recommend creating a clone of the site on a subdomain for testing. To enable the debug mode and the error logs, please check this documentation.
// https://wordpress.org/support/article/debugging-in-wordpress/#wp_debug_log
You have to 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', 1 ); // Use dev versions of core JS and CSS files (only needed if you are modifying these core files) define( 'SCRIPT_DEBUG', true );We tried to login using the account above but the info are invalid. Please check the account details or provide another admin account so that we can check the dashboard.
Best regards,
IsmaelDecember 15, 2021 at 8:54 am in reply to: Contact Form autorespond WITHOUT including form data? #1332897Hey Steve,
Thank you for the inquiry.
Did you manually input the Autorespond Text and Autorespond Subject? These fields are located in the contact form element’s Backend panel.
Best regards,
IsmaelHi,
Thank you for the info.
Have you tried purging the cache? We cannot find any functions in the theme that add versioning or hash to the wp-embed script, so it might be from a plugin or a custom function.
Please try to add this filter in the functions.php file to exclude wp-embed from the file compression, but we are not sure if this will actually change anything or if this will affect the wp-embed versioning.
add_filter("avf_force_include_asset", function($force_include) { unset($force_include["js"][0]"); return $force_include; }, 10, 1);Best regards,
IsmaelDecember 15, 2021 at 8:36 am in reply to: License ENFOLD for our HP // how to implement an own font #1332891Hey Bastian Lee Jones,
Thank you for the inquiry.
1.) Yes, you would have to buy a license in order to use the theme in your site. Please check the documentation for more info about theme registration.
// https://kriesi.at/documentation/enfold/theme-registration/
2.) Did you use the Custom Font Manager to upload the font? Please note that this feature is intended for Google Fonts, fonts that are not available on Google can be added using the @font-face rule instead.
// https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face
Best regards,
IsmaelHi,
Do you remove the cache and disable the compression after adjusting the code? Declaring the avia_set_title_tag should override the default function and return the value specified, so if you do this for example..
function avia_set_title_tag() { return "ECHO"; }.. all page title should be set to “ECHO”. You can also disable the default title tag by adding this code.
remove_action( 'wp_head', 'av_theme_slug_render_title' );Or this..
add_action("init", function() { remove_action( 'wp_head', 'av_theme_slug_render_title' ); }, 10);You can then display your own title tag.
function av_theme_slug_render_title_mod() { echo '<title>' . wp_get_document_title() . '</title>'; } add_action( 'wp_head', 'av_theme_slug_render_title_mod' );Or..
function av_theme_slug_render_title_mod() { echo '<title>' . get_the_title(get_the_ID()) . '</title>'; } add_action( 'wp_head', 'av_theme_slug_render_title_mod' );Unfortunately, we cannot find any reference about how to retrieve the page or post title value set in the AIOSEO settings.
Best regards,
IsmaelHi,
No problem. Please feel free to open another thread if you have more questions. We will close this one for now.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the inquiry.
We adjusted the script a bit so that the maxHeight value is recalculated on browser resize. Please try this again.
function ava_custom_product_height_script() {?> <script> (function($){ var win = $(window); $(document).ready(function() { // just make sure that the column resizes win.trigger("debouncedresize"); }); win.on("debouncedresize", function(){ console.log("test"); $('.avia-content-slider-inner').each(function(){ var $columns = $('li.product .inner_product',this); var maxHeight = Math.max.apply(Math, $columns.map(function(){ return $(this).height(); }).get()); $columns.height(maxHeight); }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_custom_product_height_script', 9999);Best regards,
IsmaelHi,
Thank you for the inquiry.
You may need to adjust the background size value for that particular color section so that the image always inherits the actual width and height of the container.
.avia-full-stretch { background-size: 100% 100% !important; }Please note that the selector avia-full-stretch is a common css class name, which is applied to all color sections or sliders with backgrounds that is set to Background Repeat > Stretch to fit. You will have to apply a unique ID or class name to the element and replace the selector above so that you can directly target or adjust the style of that particular section.
Best regards,
IsmaelHi,
BTW Solid Commerce is not an extension, it’s a global inventory management system for marketplaces.
Thank you for that info. Just goes to show that we are not familiar with the plugin. Please keep in touch with the developers for additional help.
Best regards,
IsmaelDecember 15, 2021 at 7:52 am in reply to: Change to Privacy Settings lost all Enfold Theme Options #1332882Hi,
Thank you for that info.
The default file compression from the theme might had been conflicting with the default server optimization (Settings > Performance > Performance & Speed), which probably have its own compression settings or resource optimization feature. Please keep the other option (Enfold > Performance > File Compression) disabled for now. You can also use plugins like Autoptimize or BWP Minify as an alternative.
We will keep the thread open.
Best regards,
IsmaelHi,
No problem. Let us know if you need anything else. We will close this thread for now.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the update.
We would recommend resizing the images for sliders of fullwidth elements based on the most common screen resolutions. That would be between 1920x1080px and 1366x768px. You can use those numbers as a reference.
// https://www.browserstack.com/guide/ideal-screen-sizes-for-responsive-design
Best regards,
IsmaelHi,
Thank you for the update.
Did you move the third button below the others on the contact page? This is what we are seeing now (see private field).
Best regards,
IsmaelDecember 15, 2021 at 7:36 am in reply to: Avia caption title and sub title background colored with transparency #1332876Hey tinohannes,
Thank you for the inquiry.
Try to use this css code to adjust the transparency of the background color.
.avia-caption-title { background: #007400A3 !important; color: #edeae5 !important; }We just appended A3 to the hex value, which is equivalent to 64% transparency. You can use this guide to adjust the transparency value.
// https://gist.github.com/lopspower/03fb1cc0ac9f32ef38f4
Best regards,
IsmaelHey kingsparadise,
Thank you for the inquiry.
The best way forward is to create a staging or development version of the site with the same configuration. Make sure to set the installation to debug mode and enable the error logs so that we check for errors once the latest PHP version is activated.
// https://wordpress.org/support/article/debugging-in-wordpress/
Best regards,
IsmaelHi,
That is odd. I did not expect that the filter will work for the masonry element. But I am glad to know that it did. We will close this thread for now.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the inquiry.
There is no such element in the builder but you can try the Blog Posts element. You may need to apply a unique category to the post that you would like to display and select it in the Blog Posts element.
Or use a shortcode from a plugin.
// https://wordpress.com/support/display-posts-shortcode/
Example of the shortcode to display a post with the ID 14.
[display-posts id="14"]Best regards,
IsmaelHi,
Thank you for the update.
You can use image hosting providers like imgur or dropbox for the screenshot, and share the image link in your next post or in the private field. We did check the home page but we cannot see the layout issue. Every sections are full width.
Best regards,
IsmaelHey veladigital,
Thank you for the inquiry.
Are you referring to the lightbox container? Please post the site URL in the private field so that we can check the issue properly, and provide a screenshot (using imgur or dropbox) if possible.
Best regards,
IsmaelHey annevoelkel,
Thank you for the inquiry.
Looks like you have used a single element for every progress bars. Please note that all progress bars in the group will animate simultaneously once the parent element is visible in the page. You may need to separate the progress bars or use multiple progress bar elements for each bar to trigger the animations in sequence.
Best regards,
IsmaelHey michaelmiller68,
Thank you for the inquiry.
You can modify the page.php file or the template-builder.php file directly, or use the “the_content” filter to insert additional content to the posts.
// https://developer.wordpress.org/reference/hooks/the_content/
Example:
add_filter( 'the_content', 'filter_the_content_in_the_main_loop', 1 ); function filter_the_content_in_the_main_loop( $content ) { if ( is_singular() && in_the_loop() && is_main_query() ) { return $content . esc_html__( 'I’m filtering the content inside the main loop', 'wporg'); } return $content; }Best regards,
IsmaelHey Martin,
Thank you for the inquiry
Did you setup or get an SSL certificate? Please get an SSL certificate, then follow the instructions in the following documentation.
// https://wordpress.org/support/article/https-for-wordpress/
You may need to contact your hosting provider and ask them to configure the web server to redirect traffic to https.
You can also install the Really Simple SSL plugin to automatically convert the site from http to https.
Best regards,
IsmaelHey jaimemerz,
Thank you for the inquiry.
Are you referring to this (see private field) section with the image hotspot? Please post the login details in the private field so that we could check the content and the settings.
Best regards,
Ismael -
AuthorPosts
