Forum Replies Created
-
AuthorPosts
-
Hey Vera,
Thank you for the inquiry.
You can play around with the Styling > Masonry Settings > Size Settings and maybe adjust the padding around the masonry images a bit using css. Please provide the site URL in the private field so that we can check the element directly.
Best regards,
IsmaelHey Tim,
Thank you for the inquiry.
Are you using the video element? Every element with the avia_markup_helper function in the shortcode file should have the VideoObject schema in them.
$markup_video = avia_markup_helper( array( 'context' => 'video', 'echo' => false, 'custom_markup' => $meta['custom_markup'] ) );Best regards,
IsmaelHey Manuela,
Thank you for the inquiry.
This is possible but you have to modify the enfold/config-templatebuilder/avia-shortcodes/testimonials/testimonials.php file directly. We provided a modified version of the testimonial element below with the slider dots.
// https://pastebin.com/raw/bHghKdk2
Best regards,
IsmaelHi,
UPDATE: I accidentally added a text block in the test page and this is the only element that displayed in the translation editor, but not the code block. Please try to update the theme to version 4.9.2.1 manually via FTP.
// https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
Best regards,
IsmaelHi,
Sorry about the update info. The latest version is actually 4.9.2.1. Now back to the issue, we created a test page, added a code block, translated the page to FR and the code block remains on every update. Please make sure NOT to edit the translated page using the Advance Layout Builder and always use the default WPML translation editor. For the existing pages, try to save the content of the original page as template, delete it and its translations, then recreate them from scratch.
Best regards,
IsmaelHey flylanddesigns,
Thank you for the inquiry.
According to @Guenter, the tables that you listed above are not generated by the Enfold theme. They are from an old theme called Choices, so they can be safely deleted without affecting the site. Unfortunately, we are not sure how these entries would cause timeouts as they are not created or loaded by the current theme.
Best regards,
IsmaelHi,
Thanks for the info.
Looks like you are correct, the opacity of the subheading is actually set to 0.8. To adjust it, please try to use this css code.
.av-subheading.av_custom_color { opacity: 1; }Best regards,
IsmaelApril 1, 2022 at 1:49 pm in reply to: Scheduled YouTube Video Not Showing Up on Scheduled Post – Black Screen #1346880Hi,
I’m sorry, but I’m not sure what you mean by switching to a different theme to
We meant switching to a default theme (twenty (n) themes) temporarily, embed a scheduled video, probably using the video shortcode, in a scheduled post and see if it works.
Based on the articles that you posted above, the issue might be related to oEmbed caching and adding this snippet in the functions.php file might help with it.
function sd_future_to_publish_only( $new_status, $old_status, $post ) { // Check if post is transitioning from future (scheduled) to publish if ( ( 'publish' === $new_status && 'future' === $old_status ) ) { global $wpdb; $post_meta_table = $wpdb->prefix . "postmeta"; $wpdb->query( $wpdb->prepare( "DELETE FROM " . $post_meta_table . " WHERE post_id = '%d' AND meta_key LIKE '_oembed_%' AND meta_value LIKE '{{unknown}}';", absint( $post->ID ) ) ); } } add_action( 'transition_post_status', 'sd_future_to_publish_only', 10, 3 );Please make sure to create a site backup or a restore point before using the snippet.
Best regards,
IsmaelHi,
Thank you for the update.
You can place the toggle element in a 1/1 column element and use this css code to align it to the center of the column container.
.flex_column .togglecontainer { width: 80%; margin: 0 auto; }You may need to apply a custom css class name or ID to the column or the toggle element.
Best regards,
IsmaelApril 1, 2022 at 1:12 pm in reply to: Blog Ansicht – Beitragsdatum in Englisch statt auf Deutsch #1346868Hi,
Sorry for the delay. Looks like the get_post_time function is only used in the enfold/config-templatebuilder/avia-shortcodes/post_metadata/post_metadata.php file, within the date_time function. Is it displaying the translated date when you set $gmt or the $translate parameters to true?
Best regards,
IsmaelHi,
The “portfolio entries” option is actually a custom taxonomy. Did you create terms or categories inside the new custom taxonomy and apply it to the posts? Only posts that contain those terms or that belong to those categories will display in the blog posts element.
Best regards,
IsmaelHey WebDevDept,
Thank you for the inquiry.
You can use this css code to adjust the size of the author image.
.author-box .rounded-container { width: 100px; height: 100px; line-height: 100px; } .author-box .rounded-container img { width: 100px; }Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.
Best regards,
IsmaelHey zimbo,
Thank you for the inquiry.
You can now change the toggle title tag or element in the Advanced > Toggle Titles > Toggle Title Tag (Theme Default is) settings, so you don’t have to use or keep the previous modifications. Please make sure to update the theme to version 4.9.2.2.
Best regards,
IsmaelHi,
Thank you for the update.
The heading row is actually hidden on mobile view by default and the theme automatically adjusts the layout of the table on smaller screens so that the heading row is no longer necessary. Would you mind providing a screenshot of the issue?
Best regards,
IsmaelHi,
Thank you for the update.
Are you referring to the read more link? You can try this css code to center align it.
.read-more-link { text-align: center; }Best regards,
IsmaelApril 1, 2022 at 5:29 am in reply to: Can the Portfolio grid auto not show the portfolio item of the current page? #1346814Hi,
Glad to know it is now working! Copying code from your email and pasting it to the code editors converts parts of the snippet to something else, causing that error that you previously encountered. Just make sure to copy the snippets directly from the forum next time.
Let us know if there is anything else we can help you with.
Have a nice day.
Best regards,
IsmaelApril 1, 2022 at 5:26 am in reply to: Icon List and Content Slider text is too big on mobile #1346812Hi,
Great! Glad to know that this has been resolved. Please do not hesitate to open a different thread if you have more questions regarding the theme.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the info.
Is there a test page where we can actually check the issue? Please make sure to update the theme to version 4.9.2.2, then post the site details in the private field so that we can check the dashboard and the WPML settings.
Best regards,
IsmaelApril 1, 2022 at 5:17 am in reply to: Correct way to integrate custom post types with Enfold in 2022 #1346810Hey Jason,
Thank you for the inquiry.
You can actually use the plugin Custom Post Type UI (CPT UI) to create custom post types and taxonomies in your site. This will be recognized by the theme automatically. If you want to create your own manually, just check the portfolio post type registration in the /enfold/includes/admin/register-portfolio.php file for reference. You can use it as a template for other post types that you are planning to create.
This is the CPT UI page.
// https://wordpress.org/plugins/custom-post-type-ui/
This documentation should also help.
// https://kriesi.at/documentation/enfold/intro-to-layout-builder/#alb-for-any-post-type
Best regards,
IsmaelApril 1, 2022 at 5:12 am in reply to: Certain fields of Gravity Forms not displaying (but only on tablet sized view) #1346808Hi,
Thank you for the update.
Glad to know that you have found the custom css. Where can we check the input field issue? Please provide a direct link to the panel in the private field. You should also update the theme to version 4.9.2.2.
Best regards,
IsmaelHey navindesigns,
Thank you for the inquiry.
You can use the following css code to adjust the height of the header and enlarge the logo image. You may need to actually include the white space or border around the logo and upload it again.
#top #header_main > .container, #top #header_main > .container .main_menu .av-main-nav > li > a, #top #header_main #menu-item-shop .cart_dropdown_link { height: 120px; line-height: 120px; } #top #header_main .logo, #top #header_main .logo a { height: 230px; } #top #header .av-main-nav > li > a .avia-menu-text { top: 30px; position: relative; }Best regards,
IsmaelHi,
Thank you for the update.
2.) In the number field, an arrow displays or fades-in when it is hovered. This arrow is not from the theme, so something else in your site is modifying it. And the actual type of the field should stay as “text”, and not “number”. Are you using a plugin that modifies the forms, or is there another contact form plugin installed the site? Please check the screenshot below so that you can see the arrow.
Screenshot: https://1drv.ms/u/s!AjjTfXSRbKTvwE4B0zgrnQg6XvWj?e=Lp2QMg
3.) Where can we check the special heading elements shown in the screenshot?
Best regards,
IsmaelApril 1, 2022 at 4:53 am in reply to: Scheduled YouTube Video Not Showing Up on Scheduled Post – Black Screen #1346805Hi,
Thank you for the update.
The video should be displaying now since it is scheduled after the post. We cannot find any errors in the site and it does play inside the lightbox when you clicked on the video URL, so it is quite difficult to know why the video is not rendering as it should. Have you tried switching to a different theme to see if an embedded video still plays on a scheduled post?
Best regards,
IsmaelHi,
Thank you for the info.
The read more links in the spa demo are added manually using a text block if I am not mistaken. They are not “more” tags. Do you still have a version of the site where the read more links are still working?
Best regards,
IsmaelHey Winter,
Thank you for the inquiry.
The grid looks fine when we checked the site on Google Chrome. Could you provide a screenshot of the layout issue? Please use imgur or dropbox for the screenshots. Which font are you trying to use?
Best regards,
IsmaelHi,
The link Fort Myers redirects to the page (/fort-myers-55-plus/). Is this correct?
Best regards,
IsmaelHi,
Thank you for the update.
You have to create a folder called “shortcodes” in the child theme directory, and add this code in the functions.php file to register the new shortcode path.
/** * Add filter to add or replace Enfold ALB shortcodes with new folder contents * * Note that the shortcodes must be in the same format as those in * enfold/config-templatebuilder/avia-shortcodes * * @link http://kriesi.at/documentation/enfold/add-new-or-replace-advanced-layout-builder-elements-from-child-theme/ * * @param array $paths * @return array */ function avia_include_shortcode_template($paths) { $helper_files = $paths[0]; $template_url = get_stylesheet_directory(); array_unshift($paths, $template_url . '/shortcodes/'); return $paths; } add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);You can now create copies of the shortcode inside the new folder and do your own modifications to the element.
Best regards,
IsmaelHi,
Thank you for the update.
You have to create a custom taxonomy for the custom post type and apply categories or terms to the custom posts. You can then set the Content > Select Entries > Do you want to display blog posts? settings to the second option (Display entries from a custom taxonomy) and select your own custom taxonomy.
Best regards,
IsmaelHi,
Glad to know that you have found a working solution. Thanks for sharing! Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelMarch 31, 2022 at 9:42 am in reply to: Can the Portfolio grid auto not show the portfolio item of the current page? #1346719 -
AuthorPosts
