Forum Replies Created
-
AuthorPosts
-
February 11, 2022 at 8:17 am in reply to: Table with Widgets / Small Custom Images and Text Fields #1340079
Hi,
Thank you for the info.
We cannot see any table in the page or in any pages in the site. Did you remove the element? To change the color of the first row, edit the table element, look for the first row, then set the row layout from “Default Row” to “Heading Row”. You can also use this css code to adjust the color of the heading and cell font.
.main_color table caption, .main_color tr:nth-child(even), .main_color .pricing-table>li:nth-child(even), #top .main_color .avia-data-table.avia_pricing_minimal td, .main_color tr:nth-child(even), .main_color .avia-data-table .avia-heading-row .avia-desc-col, .main_color .avia-data-table .avia-highlight-col, .main_color .pricing-table>li:nth-child(even), body .main_color .pricing-table.avia-desc-col li, #top .main_color .avia-data-table.avia_pricing_minimal th, .main_color .avia-table { color: #e50000ff; } .main_color .pricing-table li.avia-heading-row, .main_color .pricing-table li.avia-heading-row .pricing-extra { background-color: yellow; color: #ffffff; border-color: transparent; }To remove the borders, set the Styling > Table Design settings to Minimal.
Best regards,
IsmaelHi,
Just one details, the categories still appear below the titles,
Did you remove the avf_masonry_entry_content filter from the functions.php file? You have to remove the code because it inserts the categories below the title.
Hmm I seem to have lost it again, I made some edits to the css and
We are not seeing the categories in the image container anymore. Did you revert the changes in the class-avia-masonry.php file?
Best regards,
IsmaelFebruary 11, 2022 at 8:03 am in reply to: WordPress Enfold theme and WPML plugin not full-width #1340077Hi,
Sorry for the delay. Did you edit the translated page directly using the default editor or the advance layout builder? All translated pages should be edited using the plugin’s default translation editor. The content of the translated pages should not be edited directly. Can we access the site without changing our hosts file?
Best regards,
IsmaelHey Jak73,
Thank you for the inquiry.
To make it a bit simple, the width of the image should be close to that of the standard screen resolutions (1920x1080px, 1600x900px), and should have an aspect ratio of 16:9. The image should also exceed the height of the color section to get that subtle image delay when scrolling the document. But please note that the parallax script in the theme will handle the image resizing automatically based on the size of the color section, so you don’t really have to worry about the exact image size.
You can check the image in the private field to get an idea on how big the image should be in a parallax color section. The image is used in one of the demo with the parallax effect. And in case you didn’t know, you can also use the Layer Slider to create a parallax effect.
Best regards,
IsmaelHi,
Thank you for the update.
Are you sure that you added the css code correctly? It seems to work fine when we adjust the same style or css rule directly in the browser inspector. Please check the screenshot below.
Best regards,
IsmaelFebruary 10, 2022 at 2:01 pm in reply to: Move Product Archive Menu above content on mobile #1339980Hey marladesign,
Thank you for the inquiry.
There is no option for this by default but we can add a script to move the sidebar above the content on mobile view. Please try this code in the functions.php file.
function ava_custom_script_mod(){ ?> <script> (function($) { // move the product category sidebar above the content on mobile view function av_move_prodcat_sidebar() { var is_mobile = false; var is_archive = $("body").is(".tax-product_cat"); if(/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) { is_mobile = true; } if( is_archive && is_mobile ) { $(".sidebar").prependTo(".template-shop.content"); } } $(document).ready(function() { av_move_prodcat_sidebar(); }); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_custom_script_mod');Then add this code in the Quick CSS field to make sure that the sidebar container displays on smaller screens.
@media only screen and (max-width: 767px) { .responsive .template-blog .blog-meta, .responsive .post_author_timeline, .responsive #top #main .sidebar { display: none; } }Best regards,
IsmaelFebruary 10, 2022 at 1:49 pm in reply to: Custom fonts replaced since the new Enfold update (4.8.9.1) #1339977Hey!
Thank you for the confirmation.
We have forwarded the issue to our channel. A fix will probably be included in the next version of the theme. For the meantime, please refrain from using hyphen on the file names.
Best regards,
IsmaelHey Michael,
Thank you for the inquiry.
With that option, you will be able to adjust the order of the columns on mobile view. You will have to manually set the order of the column in the Advanced > Responsive > Mobile Breakpoint Position settings. For example, if you want the first column to display as the second or third column on mobile view, you have to set the Mobile Breakpoint Position settings to 2 or 3.
Best regards,
IsmaelHey Stephan,
Thank you for the inquiry.
The wp_nav_menu, which is the function used to display the menu items, doesn’t have a parameter to exclude draft pages. This is the reason why the item still display in the menu even when the corresponding page have been reverted back to draft status. But it should be possible to hide those items using a filter. The filter below checks and hides the item based on the page or post status.
/** * hide draft pages from the menu */ function avf_wp_nav_menu_objects_mod($items, $args) { foreach ($items as $i => $obj) { if (!is_user_logged_in () && 'draft' == get_post_status ($obj->object_id)) { unset ($items[$i]); } } return $items; } add_filter ('wp_nav_menu_objects', 'avf_wp_nav_menu_objects_mod', 10, 2);Best regards,
IsmaelHey Createve_Solutions,
Thank you for the inquiry.
You may need to manually apply the font in the layers’ Style > Advanced Settings > Custom CSS field. Use the font-family property to apply the custom font.
font-family: 'document-fonts',Helvetica,Arial,sans-serif;Best regards,
IsmaelFebruary 10, 2022 at 9:09 am in reply to: Split Masonry Gallery from normal Masonry sort order #1339920Hi,
https://kriesi.at/support/topic/masonry-grid-shows-entries-more-than-once/
In the thread above, you mentioned that when using the load more button, there is an infinite loop and duplicated items when sorting is set to random. This issue is not occurring on our installation using the latest version of the theme, 4.8.9.1. We don’t have any masonry filters or custom modifications in this installation. Please temporarily disable all custom modifications and filters for the masonry element, then test the page again. Make sure that the site is updated to version 4.8.9.1.
Do you have a staging version of the site with a fresh copy of Enfold?
Best regards,
IsmaelHey Michael,
Thank you for the inquiry.
You can use this css code to adjust the style of the icon in the iconbox element.
#top .iconbox.av-no-box .iconbox_icon { top: 0; margin: 0 auto 20px auto; left: 0; width: 90px; height: 90px; line-height: 90px; font-size: 50px; }The actual size of the icon is controlled using the font-size property.
Best regards,
IsmaelHi,
Thank you for the update.
We are not able to reproduce the issue on the demos and on our own installation, so this might be due to a plugin or a custom script in the site. Can we access the dashboard and deactivate the plugins temporarily while testing the site? Is there a staging or development version of the site?
Best regards,
IsmaelHey Tim,
Thank you for the inquiry.
We added the contentURL meta tag to the gallery to fix a schema issue with the imageObject but we have incorrectly included the content value in the html. To fix the issue, please update the enfold\config-templatebuilder\avia-shortcodes\gallery\gallery.php file using the code below.
// https://pastebin.com/uDHPrFhJ
Best regards,
IsmaelHi,
Sorry for the inconvenience. This is the updated enfold\config-templatebuilder\avia-shortcodes\gallery\gallery.php file with the updated contentURL value and without the rendered meta value.
// https://pastebin.com/uDHPrFhJ
The changes will be added in the next patch.
Best regards,
IsmaelHey!
Thank you for the observation @Guenni007. Yes, you are correct. We should use the URL as the content value, not the page title. We will adjust the changes in the next patch.
Cheers!
IsmaelFebruary 10, 2022 at 7:34 am in reply to: a strange url to images https://i1.wp.com/wwwmysite/wp-content/plugins/ #1339909Hey digideo,
Thank you for the inquiry.
Did you install the Jetpack plugin? Looks like the images are being loaded from a CDN because Jetpack is enabled. You might have enabled the Site Accelerator option as described in the following documentation.
// https://jetpack.com/support/site-accelerator/
If there is an image no longer on your server that you’d like us to purge, please contact us with a direct link to the file as it appears on your site. These will begin with i0.wp.com, i1.wp.com, i2.wp.com or i3.wp.com.
Best regards,
IsmaelHey Munford,
Thank you for the inquiry.
You don’t have to edit the functions-enfold.php file directly. Just use the avia_post_nav_entries filter in the functions.php file and apply the next post or entry to the previous arrow and the previous post to the next arrow.
add_filter( 'avf_post_nav_entries', 'avf_post_nav_entries_mod', 10, 2); function avvf_post_nav_entries_mod($entries, $settings) { $entries['prev'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); $entries['next'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); return $entries; }Best regards,
IsmaelHey Eefke,
Thank you for the inquiry.
The post displays immediately on our end. We didn’t have to refresh or update the page for it to display in the home page. Please check the screenshot in the private field.
You might be viewing a cached version of the page, purging the cache or checking the site on incognito mode should help.
Best regards,
IsmaelHi,
Weird that it does show on your screenprint.
The fonts are still displaying correctly when we checked the site again today on Firefox Dev Windows 10. The previous screenshot was taken on Chrome MacOS. Have you tried checking it on another device or computer? Are the fonts loading correctly when you accept the cookies?
Best regards,
IsmaelHey markus-fischer,
Thank you for the inquiry.
That is default top border of the container_wrap element. Use this css code if you want to remove the border.
.container_wrap { border-top-width: 0; }Best regards,
IsmaelHi,
Thank you for the info.
We actually thought that this is working when we checked the very first portfolio item yesterday. Today, we noticed that the site is still using an older version of the theme, version 4.5, which is no longer compatible with the latest version of WordPress and contains an outdated version of the avia_post_nav function. You should update the theme to version 4.8.9.1 as soon as possible, then update the filter in the functions.php file with this one.
/* * Filter für Portfolioeinträge */ function avf_post_nav_settings_cb($settings) { if($settings['type'] == 'portfolio') { $settings['taxonomy'] = "portfolio_entries"; $settings['same_category'] = true; $settings['loop_post_nav'] = false; } return $settings; } add_filter( 'avf_post_nav_settings', 'avf_post_nav_settings_cb', 10, 2);Best regards,
IsmaelHey maryenvato,
Thank you for the inquiry.
How did you load the CookieBot script? Unfortunately, we cannot clearly understand the report because it is on another language. Would you mind giving a summary of the report? You should also contact the script authors for additional assistance.
Best regards,
IsmaelHey calcuttadioceseonline,
Thank you for the inquiry.
You can start with the following css code. Just add it in the Quick CSS field or in the child theme’s style.css file.
#top a.av-section-tab-title { color: #ffffff; background: #3561a5; margin-left: 13px; } #top .av-tab-no-icon.av-tab-no-image .av-inner-tab-title { margin-bottom: 0; } #top .av-section-tab-title { padding: 0; } .av-tab-section-inner-container { border-top: 5px solid #3561a5 !important; }Please make sure to toggle the Performance > File Compression settings after adding the css.
Best regards,
IsmaelFebruary 10, 2022 at 5:39 am in reply to: Displaying 2 Widgets – 36x36px – Next to Each Other on All Screen Sizes #1339896Hi,
I believe that’s why because the Quick CSS you provided only applies to actual mobiles and tablets, not laptops?
Yes, the current css media query is for screens smaller than 768px. You may need to adjust the max-width value in the css media query in order to cover larger screens. We also applied a 1% left margin to the columns.
@media only screen and (max-width: 1024px) { /* Add your Mobile Styles here */ #top #wrap_all .flex_column.av-kzbx94lc-0865b210f7d84bd719b709dfe2b258da, #top #wrap_all .flex_column.av-kzbx3c10-9015bc4b90fe961b12754f30ae1ac4a2 { width: 49%; float: left; margin-left: 1%; } }Best regards,
IsmaelHey Rob,
Thank you for the inquiry.
It seems to be working correctly on our end as shown in the screenshot below. The css rule for the font open sans has been striked through because there is a more specific css rule in the stylesheets. However, that rule sets the font property to inherit, which means that it will still apply the open sans font to the body text.
Best regards,
IsmaelHi,
Thank you for the inquiry.
WordPress automatically creates a unique cookie in your local storage once you successfully accessed a password-protected page, so you don’t have to input the password again when you return, not unless the cookie is removed. The cookie in the local browser storage may look like this.
wp-postpass_afb5da0513958defff404e121685d71fBest regards,
IsmaelFebruary 9, 2022 at 12:52 pm in reply to: I update the footer text (of the main language) and I lose the customizations #1339790Hi,
Thank you for the update.
We are not seeing any styling difference between the sites anymore — they look exactly the same now. The text in the footer are also similar. Did you figure out what was causing the styling issue?
Best regards,
IsmaelFebruary 9, 2022 at 12:43 pm in reply to: Timeline Alternating with Milestone Date, Milestone title, and Milestone Content #1339786Hey jaimemerz,
Thank you for the inquiry.
You can only set the Styling > Milestone Placement to Left, Right or Alternate, but there is no option to move the date to the other side of the item along with the content. Unfortunately, what you’re after will require significant amount of modifications that are beyond the scope of support. Please hire a freelance developer or contact our partner (Codeable) for further customization.
// https://kriesi.at/contact/customization
Best regards,
IsmaelFebruary 9, 2022 at 12:26 pm in reply to: Search page possibly creating outgoing internal links contain nofollow attribute #1339783Hey biotechz,
Thank you for the inquiry.
We are not really sure what is causing that issue but the following thread might help. The user asked if the search icon can be removed completely from the main menu, but since you are using a search widget, you may need to manually remove it from the Appearance > Widgets panel.
// https://kriesi.at/support/topic/remove-nofollow-from-search-item-of-main-menu/
Another thing that you could do is to disallow crawling on pages with a specific parameter, which might be the more reasonable solution. You can set this rule in your robot.txt file.
Disallow: /*?s=*// https://developer.mozilla.org/en-US/docs/Glossary/Robots.txt
Best regards,
Ismael -
AuthorPosts
