Forum Replies Created
-
AuthorPosts
-
Hi,
No problem. Please update us if you find anything. We will keep the thread open.
Best regards,
IsmaelHi,
How did you place the shortcode editor in the builder element? This is the first time that we encountered someone using ACF editors in an element editor, so we are not really sure if this is going to work.
Have you tried creating another element by copying an existing shortcode template instead of using ACF fields?
Best regards,
IsmaelHey lindaw,
Thank you for the inquiry.
We may need to inspect the site in order to check the issue properly. Please provide the site details in the private field. For the meantime, please toggle or temporarily disable the Enfold > Performance > File Compression settings, then purge the cache. Refreshing the source files might help fix the issue.
Best regards,
IsmaelHey carmen,
Thank you for the inquiry.
All sections in the page seems to be visible on both desktop and mobile. We don’t see any blank sections or white spaces without any content on mobile view.
Would you mind providing a screenshot of the issue? You can use imgur, savvyify or dropbox.
Best regards,
IsmaelHey hi-fi,
Thank you for the inquiry.
The slider has an overlay option for the captions, which is located in the Styling > Caption toggle of each slider items. Look for the Caption Positioning settings and select any option with the word “Framed” (ex. Right Framed, Left Framed etc).
Best regards,
IsmaelMarch 23, 2023 at 7:31 am in reply to: Hide additonal information tab on product page and location of price #1402103Hi,
Thank you for the inquiry.
You can try this css code to remove the first item from the tabs container.
#top div.product .woocommerce-tabs ul.tabs li:nth-child(1) { display: none; } #top div div.product .woocommerce-tabs .panel div:nth-child(1) { display: none; }If it doesn’t work, try to replace the nth-child selector with the actual id of the additional information container.
Best regards,
IsmaelHey mvi,
Thank you for the inquiry.
Did you select or set the front page in the Enfold > Theme Options panel? If not, please set it accordingly, then reset the options in the Settings > Reading panel to default.
Best regards,
IsmaelHi,
Thank you for the info.
You can use this css code to hide the date and time from the posts, and adjust the position of the title.
#portfoliobox-3 .news-headline .news-time { display: none !important; } #portfoliobox-3 .news-headline { margin-top: 10px; }Best regards,
IsmaelHi,
Thank you for the update.
Did you save the changes after adjusting the style of the Main Menu Links? We may need to inspect the site in order to check the issue properly. Please provide the site details in the private field.
Best regards,
IsmaelHi,
Glad to know that @Rikard helped. Please let us know if you have more questions.
Have a nice day.
Best regards,
IsmaelHey Nádia Andrade,
Thank you for the inquiry.
We didn’t see any errors when we visited the home page of the site. Would you mind providing a direct link to the shop page? We cannot find any pages with products, only external links to other sites. Providing a screenshot will also help.
Best regards,
IsmaelMarch 23, 2023 at 6:55 am in reply to: Woocommerce/woocommerce.php has been deactivated due to an error: #1402092Hey agavinho,
Thank you for the inquiry.
There is nothing in the theme that should delete or affect the plugin file woocommerce.php. Someone might have accidentally deleted the file from the plugin folder or there might be a plugin conflict. To fix the issue, get a fresh copy of the Woocommerce plugin, then manually override the current plugin folder.
Best regards,
IsmaelHey Pierre,
Thank you for the inquiry.
You can define a different style for a specific element in the Enfold > Advanced Styling panel, but if you want more control over the styles of the elements, you can register another font manually using the @import rule in the style.css file or by using one of the available hooks such as wp_enqueue_scripts.
Example of the @import:
@import url(https://fonts.googleapis.com/css?family=Lora); @import url(https://fonts.googleapis.com/css?family=Oswald);Example using the hook:
function ava_add_google_fonts() { wp_enqueue_style( 'wpb-google-fonts', 'https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,400,700,300', false ); } add_action( 'wp_enqueue_scripts', 'ava_add_google_fonts' );You will then have to apply the font manually to the elements using css.
There are also plugins available:
// https://wordpress.org/plugins/olympus-google-fonts/
// https://wordpress.org/plugins/local-google-fonts/You can choose fonts from Google Fonts (https://fonts.google.com/).
Best regards,
IsmaelHey Sebastian,
Thank you for the inquiry.
This should be possible with css modifications or a custom script. Please check the previous solutions in threads below.
// https://kriesi.at/support/topic/woocommerce-enfold-thememobile-viewits-possible-to-move-sidebar-view-on-top/#post-1262229
// https://kriesi.at/support/topic/move-product-archive-menu-above-content-on-mobile/#post-1339980Best regards,
IsmaelHi,
Thank you for the info.
Did you update the theme just recently? You might have to override and update the header.php file in the child theme using the latest version from the parent theme, remove it temporarily just to check if it is actually causing the issue.
Best regards,
IsmaelHey Monika,
Thank you for the inquiry.
Have you tried placing another 1/4 column on both sides of the existing columns? This should align the first two columns in the center without using additional css.
Best regards,
IsmaelHi,
Great! Glad to know that the suggestions worked. Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHey Monika,
Thank you for the inquiry.
You can use this CSS code to remove the box shadow from a field when it’s focused.
#top input[type="text"]:focus, #top input[type="password"]:focus, #top input[type="email"]:focus, #top input[type="number"]:focus, #top input[type="url"]:focus, #top input[type="tel"]:focus, #top input[type="search"]:focus, #top textarea:focus { box-shadow: none; }Please toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.
Best regards,
IsmaelHey Monika,
Thank you for the inquiry.
Are you trying to put the sandbag behind the image in the first color section? If that is the case, then you have to put the second color section behind the first section. Applying a z-index to the sandbag directly will only adjust its stack order relative to the other elements inside the second color section.
Best regards,
IsmaelHi,
Thank you for the info.
The REST API encountered an error Performance
Your site could not complete a loopback request PerformanceAccording to the site health tool, the errors are cause by connection timeouts causing the http requests to be terminated prematurely. This is the root error.
Error: cURL error 28: Connection timed out after 10001 milliseconds (http_request_failed)You may need to set the cURL timeout globally in the php.ini file by using the curl.default_timeout and default_socket_timeout configuration options. Please follow the steps below.
1.) Open your php.ini file (located in your PHP installation directory).
2.) Search for the curl.default_timeout and default_socket_timeout configuration options.
3.) Set their values to the desired timeout value (in seconds). For example:curl.default_timeout = 60 default_socket_timeout = 60In the example above, both options are set to 60 seconds, which means that the cURL requests will time out after 60 seconds if they have not completed. You can adjust these values as needed to suit your particular use case.
Note that changing these values in the php.ini file will affect all cURL requests made by your PHP scripts, so be careful not to set them too high if you have scripts that make many cURL requests.
You can also add the following filter in the functions.php to temporarily work around the issues.
add_filter( 'site_status_tests', 'avf_async_loopback_requests_test', 10, 1 ); function avf_async_loopback_requests_test( $test_type ) { $test_type['async']['loopback_requests']['test'] = 'loopback_requests'; $test_type['async']['loopback_requests']['has_rest'] = false; return $test_type; }Best regards,
IsmaelMarch 20, 2023 at 8:56 am in reply to: Blog posts not showing right sidebar like pages. also incorrect code. #1401751Hi,
In the css modifications above, this css rule is invalid.
entry-date published { display: none; }It should be..
.entry-date.published { display: none; }Please remove the css rule and toggle or temporarily disable the Enfold > Performance > File Compression settings, then check the site again.
Best regards,
IsmaelHi,
Sorry for the delay. We still don’t quite understand the issue based on the screenshots. We may need to access the site in order to figure out the issue. Please provide the login details in the private field and a direct link to the page where the issue occurs.
Best regards,
IsmaelHi,
Thank you for the update.
We are not yet sure why the issue occurs on your installation, but you can temporarily fix it by installing the following plugin.
// https://wordpress.org/plugins/hide-admin-bar-based-on-user-roles/
In the plugin panel, try to tick all checkboxes except for the Administrator box in order to hide the admin bar for all user roles.
Best regards,
IsmaelHi,
Glad to know that the solution worked. Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelMarch 20, 2023 at 8:05 am in reply to: Sometime my Page isn’t work properly as css doesn’t load in it #1401745Hey theanshbakshi,
Thank you for the inquiry.
We checked the home page of the site but we can’t seem to find any issues with it. Would you mind providing a screenshot of the issue? Please use imgur, savvyify or dropbox for the screenshot.
Duplicate of: https://kriesi.at/support/topic/css-not-workinng-properly/
Best regards,
IsmaelHey Gaurav Chauhan,
Thank you for the inquiry.
We checked the home page of the site but we can’t seem to find any issues with it. Would you mind providing a screenshot of the issue? Please use imgur, savvyify or dropbox for the screenshot.
Best regards,
IsmaelMarch 20, 2023 at 7:41 am in reply to: Suchen Element durchsucht nicht den Vorschau Text beim Ajax-Portfolio #1401742Hey fimondi,
Thank you for the inquiry.
You can use the SearchWP plugin to make a specific custom field searchable and include them in the search index. The preview text of the portfolio item is a custom field called “_preview_text”. Please check the documentation below for more info on how to include a custom field as one of the attributes in the search engine.
// https://searchwp.com/how-to-add-wordpress-custom-fields-search/
Best regards,
IsmaelMarch 17, 2023 at 6:18 am in reply to: Blog posts not showing right sidebar like pages. also incorrect code. #1401490Hey daves1997,
Thank you for the inquiry.
We cannot find the blog page in the site. Please provide a direct link in the private field. Did you adjust the options in the Enfold > Sidebar Settings panel
Best regards,
IsmaelMarch 17, 2023 at 6:09 am in reply to: Open Lightbox on lick on any image in product gallery #1401488Hey LearnSAP,
Thank you for the inquiry.
The lightbox option is not available on the default Woocommerce gallery. You have to switch the default theme gallery in the Enfold > Shop Options > Product gallery settings, or install a lightbox plugin. Please check the link below.
// https://wordpress.org/plugins/responsive-lightbox/
Best regards,
IsmaelMarch 17, 2023 at 6:06 am in reply to: Upload an optional logo image for your preloader page #1401487Hey martinmoravek1,
Thank you for the inquiry.
Are you trying to disable the preloader on mobile view? There is no option for this by default, but you can add a css to hide the preloader background on mobile view.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .av-siteloader-wrap { display: none !important; } }Best regards,
Ismael -
AuthorPosts
