Forum Replies Created
-
AuthorPosts
-
Hi,
No problem! Glad we could help. Please feel free to open another thread if you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the update.
You can add the tags the same way as you would when adding tags to posts. Please check the following documentation for more info.
// https://wordpress.com/support/posts/tags/
Best regards,
IsmaelHi,
We already included the css media query above. You can directly add it in the Quick CSS field or in the child theme’s style.css file.
Thank you for your patience.
Best regards,
IsmaelHi,
Thank you for the info.
We cannot reproduce the issue on 1280px or larger screens. Please check the screenshot below.
Screenshot: https://imgur.com/5ySVOBQ
If you want to adjust the width of the container a bit and not make it fullwidth, please look for this code inside the css media query.
#menu-item-581 .avia_mega_div { width: calc(100vw) !important; right: -115px !important; left: auto !important; }
Adjust the width and right position value or replace the code with this one.
#menu-item-581 .avia_mega_div { width: calc(100vw – 100px) !important; right: -70px !important; left: auto !important; }
Best regards,
IsmaelDecember 1, 2021 at 10:27 am in reply to: Modify the background color and text for products #1331102Hey Bruno,
Thank you for the inquiry.
Looks like you have selected or set the same color for the Primary color and the Highlight color in the Enfold > General Styling > Main Content panel. Please check the color values in there or add this css code to manually adjust the background color of the input tags.
#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: transparent; background-color: #ffffff; color: #2c335d; }
Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code.
Best regards,
IsmaelHi,
Thank you for the inquiry.
Did you add any html tags or custom shortcodes to the post where the issue starts? You have make sure that the html tags are closed properly and that the custom shortcodes render valid html.
Please post the login details in the private field so that we can check the content of the posts. You can use the following plugin to create a login token.
// https://el.wordpress.org/plugins/temporary-login-without-password
Best regards,
IsmaelDecember 1, 2021 at 10:05 am in reply to: Website using server resource limits and crashing #1331100Hey objectifweb,
Thank you for the inquiry.
Where can we check the issue? Would you mind posting the content of the error logs?
You might want to disable the Performance > File Compression settings temporarily to prevent the theme from creating entries in the database, which contain the content of every scripts and stylesheets in the site.
You could also disable the new post css file feature, which also creates entries in the database. Just add this code in the functions.php file.
/** * Filter to skip css file generation. * You can add logic to skip for certain pages/posts only. * * @since 4.8.6.1 * @param boolean $create * @return boolean true | false or anything else to skip generation of css file */ function custom_avf_post_css_create_file( $create ) { return false; } add_filter( 'avf_post_css_create_file', 'custom_avf_post_css_create_file', 10, 1 );
Best regards,
IsmaelDecember 1, 2021 at 9:58 am in reply to: How to create a dynamic webpage where elements open content in the same page #1331098Hey bagha,
Thank you for the inquiry.
That option is not available out of the box but you may be able to create something using the Portfolio AJAX feature. You can check the demo in the following link.
// https://kriesi.at/themes/enfold/portfolio/portfolio-ajax/
Best regards,
IsmaelHey PowerBusWay,
Thank you for the inquiry.
The random order option is working correctly on our installation. Did you add any modifications in the functions.php file? You might have set the default masonry query using a filter.
Best regards,
IsmaelHey ceakins1908,
Thank you for the inquiry.
You can use this css code to adjust the color of the menu text on hover.
#top #header.header_color.av_header_transparency .av-main-nav > li > a:hover .avia-menu-text { color: #ffcc5e; }
Please toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.
Best regards,
IsmaelHey Stefan,
Thank you for the inquiry.
Did you add excerpts to the posts? The post meta info including the date will only display when the post has an excerpt. You can check that in the enfold/config-templatebuilder/avia-shortcodes/postslider/postslider.php line 917.
if( ( $show_meta && ! empty( $excerpt ) ) || in_array( $show_meta_data, array( 'always', 'on_empty_content' ) ) ) { // show post meta here if excerpt is not empty }
Best regards,
IsmaelDecember 1, 2021 at 9:40 am in reply to: Picture beneath Navigation enfold photography portfolio demo #1331094Hey agentur2c,
Thank you for the inquiry.
What do you mean by “side navigation”? Are you referring to the navigation in the sidebar container? If so, then you can use an image widget in the Appearance > Widgets panel to display a logo in the sidebar. Add the widget in the Sidebar Pages or in the Displayed Everywhere widget area.
Best regards,
IsmaelHi,
Awesome! Glad we could be of help. Please do not hesitate to open another thread if you need anything else.
Have a nice day.
Best regards,
IsmaelHey onizet,
Thank you for the inquiry.
The new custom fields are for the posts css file creation for custom element styles, which is supposed to improve the site speed. But if you are having trouble with the database and you believe that these custom fields are causing it, then you can disable it using this filter in the functions.php.
/** * Filter to skip css file generation. * You can add logic to skip for certain pages/posts only. * * @since 4.8.6.1 * @param boolean $create * @return boolean true | false or anything else to skip generation of css file */ function custom_avf_post_css_create_file( $create ) { return false; } add_filter( 'avf_post_css_create_file', 'custom_avf_post_css_create_file', 10, 1 );
Unfortunately, you cannot disable the other custom fields that we discussed in the previous thread because those fields contain the builder elements or shortcodes.
Best regards,
IsmaelHi,
Thank you for the info.
You might be able to use the wp_is_mobile function to detect if the current device used is mobile and the wp_redirect function to redirect the users to a different page if the first condition is true.
// https://developer.wordpress.org/reference/functions/wp_is_mobile/
// https://developer.wordpress.org/reference/functions/wp_redirect/Best regards,
IsmaelHi,
Glad to know that this is working. It is only temporary, just to make sure that the modified stylesheets are loaded instead of the older one. You can turn it on back again once the changes are applied.
Best regards,
IsmaelNovember 30, 2021 at 10:47 am in reply to: ALB shortcodes are stripped if element gets opened up in backend #1330967Hey Yaphoon,
Thank you for the inquiry.
Yes, it is possible to add tags to the portfolio items. What do you mean by “products”? Are you planning to use the portfolio post type for your products?
Best regards,
IsmaelHi,
Alright. Glad it is finally working. Please feel free to open another thread if you need anything else.
Have a nice day.
Best regards,
IsmaelNovember 30, 2021 at 9:16 am in reply to: excerpt line breaks not showing in magazine element #1330950Hi,
Right, but it works without even adding the br tags in the blog element
The blog element actually displays the post content, not the excerpt. And it looks like WordPress do not automatically add paragraph tags or create new lines for the excerpt, so if you want the magazine to work the same as the blog element, you have to remove the post excerpt and modify the magazine.php file, around line 1297 look for this code.
$excerpt = ! empty( $entry->post_excerpt ) ? $entry->post_excerpt : avia_backend_truncate( $entry->post_content, apply_filters( 'avf_magazine_excerpt_length', 60 ), apply_filters( 'avf_magazine_excerpt_delimiter', ' ' ), '…', true, '' );
Replace it with:
$excerpt = avia_backend_truncate( $entry->post_content, apply_filters( 'avf_magazine_excerpt_length', 60 ), apply_filters( 'avf_magazine_excerpt_delimiter', ' ' ), '…', false, '' );
Just make sure that you are not using any shortcodes in any of your posts because what we did with the modification is disable the function that strips the shortcodes and html tags.
Best regards,
IsmaelHi,
Thank you for the info.
Is the privacy message bar working correctly now? The privacy message bar is displaying in the page even when the calendar plugin is enabled.
Best regards,
IsmaelHi,
Thank you for the update.
The “Market Platform” column is empty as you can see in the screenshot below, so we are not really sure what to check.
Screenshot: https://imgur.com/yucaMJL
We may need to access the dashboard and check the menu settings in order to properly understand the issue.
Best regards,
IsmaelHey WDP,
Thank you for the inquiry.
Are you referring to the background video in the color section? Please note that background videos are muted by default and set to autoplay on page load. We did not find any Video elements in the home page.
Best regards,
IsmaelHey breezemedia,
Thank you for opening a new thread.
We automatically close threads, specially olds ones, if someone else aside from the OP re-opened it. So we recommend opening your own thread instead of replying to an existing one.
To fix the issue with the overlay, please remove the previous css code, then use the following css instead.
.avia-slideshow li .avia-slide-wrap > div:before { content: ''; display: block; width: 100%; height: 600px; background: -moz-linear-gradient(left,rgba(236,110,0,0.75) 0%,rgba(234,172,124,0.57) 24%,rgba(255,255,255,0.25) 66%,rgba(255,255,255,0) 100%); background: -webkit-linear-gradient(left,rgba(236,110,0,0.75) 0%,rgba(234,172,124,0.57) 24%,rgba(255,255,255,0.25) 66%,rgba(255,255,255,0) 100%); background: linear-gradient(to right,rgba(236,110,0,0.75) 0%,rgba(234,172,124,0.57) 24%,rgba(255,255,255,0.25) 66%,rgba(255,255,255,0) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bfec6e00',endColorstr='#00ffffff',GradientType=1 ); position: absolute; top: 0; left: 0; z-index: 10; } .avia-slideshow li .avia-slide-wrap > div .caption_container { z-index: 2000; }
This is how the slider should look like after applying the css.
Screenshot: https://imgur.com/VQd2JMN
Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css or before checking the page.
Best regards,
IsmaelHey navindesigns,
Thank you for the inquiry.
You can use this css code to adjust the position of the widget.
#top #header #header_main .widget { position: absolute; right: 100px; top: 10px; }
If you are going to add another widget, you can use the widget ID to target or adjust the style of any specific widget.
Best regards,
IsmaelHey noellmn,
Thank you for the inquiry.
Looks like you are using a different privacy message bar now. How did you enable it? We cannot find the name of the plugin or extension, so it must have been added manually using a script.
Best regards,
IsmaelHey Fitematrulle,
Thank you for the inquiry.
We are not really sure what you are trying to do here. Would you mind providing a screenshot?
If you need a way to direct your users to sub categories or child pages, you can apply a custom link to the parent images or services and redirect your users to another page containing the images with links to the subcategory pages.
Best regards,
IsmaelNovember 29, 2021 at 5:50 am in reply to: Pictures blur/pixelisated using your Layerslader WP #1330791Hey jb84,
Thank you for the inquiry.
This is the actual image (see private field) used in the slider. Is the original image much sharper than this thumbnail or image? Please provide the original image so that we can upload and check it on our installation.
Best regards,
IsmaelHey Andreas,
Thank you for the inquiry.
The marketing platform column does not contain any items in the EN version. Did you remove the items? How did you translate the menu? Please note that you can also create a dedicated menu for each language instead of translating the original menu.
// https://wpml.org/documentation/getting-started-guide/translating-menus/
Best regards,
IsmaelHey Angèle,
Thank you for the inquiry.
There is a known issue with fixed elements on iOS devices. You may need to set the background attachment back to scroll on tablet view. Try to add this code in the Quick CSS field.
@media only screen and (max-width: 989px) { .flex_cell.avia-full-contain { background-size: cover !important; background-attachment: scroll !important; background-position: 10% 50% !important; } }
Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings before checking.
This is how the page should look after adding the css.
Screenshot: https://imgur.com/EbP9Kjr
Best regards,
Ismael -
AuthorPosts