Forum Replies Created
-
AuthorPosts
-
Hi,
No problem. Glad we could be of help. Please feel free to open another thread if you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
The latest version of the theme is 4.8.9. You might have to update the theme manually this time. Please check the documentation below for more info about the manual update.
// https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
Best regards,
IsmaelHi,
Where can I see the mandatory attributes for your shortcodes? Can I omit empty attributes? I generated the av_team_member with Enfold 4.8.9 and I saw a few new attributes, do I have to add them to my generator code?
There are no mandatory attributes in a shortcode. You can use the av_team_member shortcode without any attributes and it will still work but it will not render anything because there’s no data.
What is with the attribute av_uid?
The builder by default applies a unique id to each elements shortcodes in a page or post, but the element will still render with or without the ID. The ID is generated dynamically using Javascript and is based on the current date, which is then converted to a string and prepended with “av-“.
'av-' + ( new Date().getTime()).toString(36);
Best regards,
IsmaelHi,
As @Yigit observed, the display property of the avia-builder container is set to “none” when the other user is active. Adding the snippet that he provided above should override the inline css.
add_action('admin_head', 'ava_custom_admin_css_admin'); function ava_custom_admin_css_admin() { echo '<style> #avia_builder { display: block !important; } </style>'; }
Best regards,
IsmaelHey saschapi,
Thank you for the inquiry.
We can manually add the contentURL property to the avia-gallery container, but we have to directly edit the enfold/config-templatebuilder/avia-shortcodes/gallery/gallery.php. Around line 697, look for this code.
$output .= "<div {$meta['custom_el_id']} class='{$container_class} avia-gallery-" . self::$gallery . "' {$markup_gallery}>";
Below, add the meta element with the contentURL property and the post title as content value.
$title = get_the_title(get_the_ID()); $output .= "<meta itemprop='contentURL' content='{$title}'>{$title}</meta>";
Best regards,
IsmaelJanuary 31, 2022 at 9:51 am in reply to: Menu on product pages has disappeared after last theme update #1338001Hi,
Thanks for the update.
Yes I have made a widget called “Shop sidemenu” and added it on the product page
What do you mean by “product page”? The widget has to be added in the Single Product Page widget area. Please check the screenshot in the private field. Also, please make sure that the sidebar in the Enfold > Sidebar Settings > Sidebar on Single Post Entries settings is enabled.
Can we access the dashboard? Please post the login details in the private field so that we can check the site settings.
Best regards,
IsmaelHi,
Thank you for your patience.
Adding this code in the functions.php file should fix the gallery sorting.
function ava_custom_css_admin_mod() { echo '<style> .wp-core-ui .attachments:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; } </style>'; } add_action('admin_head', 'ava_custom_css_admin_mod');
Best regards,
IsmaelHi,
Odd. It is not working now. When we add a product using the table, it redirects to an empty cart page and the cart icon doesn’t pop out like it used an to hour earlier. Did you adjust the settings just recently?
Best regards,
IsmaelHey navindesigns,
Thank you for the inquiry.
The white space is the default 20px margin of the columns on mobile view. You can override it with this css code.
@media only screen and (max-width: 767px) { .responsive #top .container .av-content-small, .responsive #top #wrap_all .flex_column, .responsive #top #wrap_all .av-flex-cells .no_margin { margin-bottom: 0; } }
You do not have to create the same css media query another already exists. Just move the css rule inside the existing css media query.
Best regards,
IsmaelJanuary 31, 2022 at 6:51 am in reply to: a single specific character; different rendering in headings and text #1337986Hi,
Thank you for the update.
The above filter is supposed to disable the modification that the theme applies to the ampersand character and the css modifies the default style of the “special_amp” element. Please keep the css modification for now.
If you want to directly apply the default font to the ampersand, please use this css code.
.responsive #top .special_amp { font-size: 15px; font-weight: 400; font-family: 'rubik',Helvetica,Arial,sans-serif; font-style: normal; }
Best regards,
IsmaelJanuary 31, 2022 at 6:41 am in reply to: Show image description in Horizontal Gallery also when the image is enlarged #1337985Hey Angelo,
Thank you for the inquiry.
You can use the following script in the functions.php file to insert the title below the horizontal gallery images. You may need to modify the style or css of the av-horizontal-gallery-img-title a bit.
function ava_custom_script() { ?> <script> (function($) { $(".av-horizontal-gallery-img").each(function() { var title = $(this).attr("title"); $("<span class='av-horizontal-gallery-img-title'>" + title + "</span>").insertAfter(this); }); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_custom_script');
Best regards,
IsmaelHey Gerrit Gerrit Rekers,
Thank you for the inquiry.
Looks like you are now able to access the forum using your new account or license key. Please continue on this thread.
// https://kriesi.at/support/topic/woocomerce-wholesale-tabel-problem/#post-1337976
Best regards,
IsmaelHey jond33,
Thank you for the inquiry.
The category info is not included in the masonry template by default but you can still add them using “avf_masonry_entry_content” filter. Please try this code in the functions.php file.
add_filter("avf_masonry_entry_content", function($content, $entry, $config) { $categories = get_the_category($entry["ID"]); $separator = ' '; $output = ''; if ( ! empty( $categories ) ) { $output .= "<ul>"; foreach( $categories as $category ) { $output .= '<li>' . esc_html( $category->name ) . '</li>'; } $output .= "</ul>"; $content = $content . $output; } return $content; }, 10, 3);
Please note that the filter above will only on the default post type or post types that supports categories.
Best regards,
IsmaelJanuary 31, 2022 at 5:52 am in reply to: Menu on product pages has disappeared after last theme update #1337977Hi,
Thank you for the info.
Did you add any widgets in the Appearance > Widgets > Single Product Pages widget area? Only widgets in this area will display in the product sidebar. Also, please note that the sidebar area in the product page is located below the product image by default.
Best regards,
IsmaelHey rekers,
Thank you for the inquiry.
How can we reproduce the issue? The wholesale table seems to be working correctly on our end. The products in the table were automatically added to the cart after we clicked the “order” button. Please check the screenshot in the private field.
Best regards,
IsmaelHey Aron,
Thank you for the inquiry.
It might be due to the privacy policy options or the consent message bar. Does it work correctly when you accept the cookies and refresh the page? If you want the spam protection to work automatically on load, you have to set the Enfold > Privacy & Cookies > Cookie Handling > Default Cookie Behavior settings to the first and second option.
Best regards,
IsmaelJanuary 31, 2022 at 5:32 am in reply to: Sliders/Galeries duplicated without doing anything #1337973Hi,
Please try to delete the current page, trash it, create another page with same title, then apply the “Innenausbau Temp” template to it.
Did you follow the recommendation above? Unfortunately, we are not sure why the sliders don’t work in the original page, but as you can see both sliders work perfectly fine in the new page, so you can just delete and trash the old page and rename the other.
Best regards,
IsmaelJanuary 31, 2022 at 5:31 am in reply to: Sliders/Galeries duplicated without doing anything #1337972Hi,
Please try to delete the current page, trash it, create another page with same title, then apply the “Innenausbau Temp” template to it.
Did you follow the recommendation above? Unfortunately, we are not sure why the sliders don’t work in the original page, but as you can see both sliders work perfectly fine in the new page, so you can just delete and trash the old page and rename the other.
Best regards,
IsmaelHi,
Thank you for the info.
1.) Since the update went through regardless of the error, it might be a cache issue or the data hasn’t propagated yet, so the key was temporarily deemed invalid. Let us know if the issue persists.
2.) Have you updated the theme to version 4.8.9? For the load more button, the code changes in the private field should help.
Best regards,
IsmaelJanuary 31, 2022 at 5:10 am in reply to: Blog Featured Image crop and social share icons formatting #1337970Hi,
I don’t think your measurements are correct. The Book image I just measured is over 500px tall
We were referring to the featured images in the blog overview page. Please check screenshot 1 in the private field and look at the name of the thumbnail. FYI, WordPress automatically creates thumbnails of the original image and crops them based on the registered size of the thumbnails. The thumbnail that is used in the blog page is called “entry_without_sidebar“, which has a maximum size of 1210x423px. If you want to check how the size of the thumbnails are defined, edit the wp-content > themes > enfold > functions.php file and look for this code around line 223.
$avia_config['imgSize']['entry_with_sidebar'] = array('width'=>845, 'height'=>321); // big images for blog and page entries $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 ); // images for fullsize pages and fullsize slider
Did you follow our suggestions above about thumbnail size adjustment using the Simple Image Sizes plugin ? You should also upload images with the same size and aspect ratio for every posts to get a much more consistent result.
I just measured it and it’s over 600px.
https://staging7.investforbetter.org/circling-back-invest-for-better-one-year-later/You are looking at the “rendered size”, which is different compare to the “intrinsic size” or the actual size of the image. The actual size of the image in that post is only 700x394px, but since the layout requires the image to be stretched full width, you are seeing a much larger “rendered size”. (see screenshot 2)
Best regards,
IsmaelHey sandrasii,
Thank you for the inquiry.
The builder content is saved in the post content field and in a custom field or a post meta which is called “_aviaLayoutBuilderCleanData”. You will find this code in the templateb-builder.php file around line 69.
$content = apply_filters( 'avia_builder_precompile', get_post_meta( get_the_ID(), '_aviaLayoutBuilderCleanData', true ) );
Best regards,
IsmaelHi,
Thank you for the info.
Where did you add the link? Please post the site URL in the private field so that we can check the element. Is the default lightbox still enabled? Please check if the Lightbox Modal Window option is still enabled in the Enfold > Theme Options panel.
Best regards,
IsmaelHi,
On our own installation, the loading attribute does not get applied to the Image block regardless of the lazy loading option in the theme, so the attribute is coming from somewhere else. You can check our screenshot above.
Did you install an image compression plugin? Can we access the dashboard?
Best regards,
IsmaelHi,
Thanks for the info.
The issue probably occurs in the gcst_board_members_shortcode_content function within the yc-wp-gcst/yourchoice-gcst.php file, around line 284. The value of the attachment attribute is statically set to “11198”. The value of this attribute should be ID of the image.
$teamMember .= "[av_team_member name=\"" . $row["name"] . " " . $row["vorname"] . "\" job=\"" . $row["funktion"] . "\" src=\"" . $row["bild"] . "\" attachment=\"11198\" attachment_size=\"portfolio\" image_width=\"\" description=\"\" font_color=\"custom\" custom_title=\"#cb2323\" custom_content=\"#cb2323\" av_uid=\"av-5ca50s\" admin_preview_bg=\"rgb(34, 34, 34)\"][/av_team_member]";
Best regards,
IsmaelJanuary 28, 2022 at 12:46 pm in reply to: Background images aren't showing up on mobile devices. #1337705Hi,
Thanks for the update.
We cannot reproduce the issue on our end. Did you purge the cache before checking the page? We provided a screenshot of the About page in the private field. The background images of the cells are displaying correctly as shown in the screen capture. Please try to disable the Enfold > Performance > File Compression settings temporarily, then check the page again on incognito mode. Let us know if it changes anything.
Best regards,
IsmaelHi,
That is a lot of css for a read more link. Did you remove the post slider in the “whoweare” page? We cannot find it anywhere and the post items in the news page look different compare to the screenshot, so we are not really sure what is the current appearance or style of the element. Please create a test page so that we can check the post slider and the read more link.
Best regards,
IsmaelJanuary 28, 2022 at 12:26 pm in reply to: Sliders/Galeries duplicated without doing anything #1337699Hey Michael,
Thank you for the inquiry.
We are not really sure why the second slider is displaying the images on the first one, and we cannot check the actual shortcodes because the debug mode is not enabled, so we saved the current content as template and applied it to a temp page and for some reason, both sliders display correctly on this page. We post the link of the test page in the private field.
Please try to delete the current page, trash it, create another page with same title, then apply the “Innenausbau Temp” template to it.
Best regards,
IsmaelHi,
That is quite strange. We encountered this kind of issue before and it usually happens in the builder when an html tag was not closed properly but when we checked your page, we cannot find any invalid html tags, so we are not really sure what was the issue here. Please feel free to open another thread if the problem happens again.
Thank you for your patience.
Best regards,
IsmaelHey onedesignprint,
Thank you for the inquiry.
The URL of the fonts may need to be updated to https as well. Have you tried uploading the fonts again? Which fonts are you using?
Best regards,
IsmaelHi,
Thank you for following up.
We tried to access the site using the login account above, but it seems like the username doesn’t exist according to the login error. Please check the login info carefully or provide another admin account so that we can test the modification.
Best regards,
Ismael -
AuthorPosts