Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for the update.
Did you try purging the cache? Please provide the WP and S/FTP details in the private field so that we can test the modification.
Best regards,
IsmaelJanuary 27, 2023 at 2:17 am in reply to: Theme registration, Envato, Personal token don't work #1395483Hey!
Sorry for the troubles. We might have to wait for Envato to reply Kriesi in order to continue here. For the meantime, please try to follow the suggestions in the help tab and increase the memory limit. The installation might be using more memory compared to the other installations, thus the recommendation.
Thank you for your patience.
Best regards,
IsmaelHey Suze,
Thank you for the inquiry.
For this kind of customization, you can contact our partner Codeable. Their developers should be able to help you with the API integration. Please check the link below.
// https://kriesi.at/contact/customization
Best regards,
IsmaelJanuary 26, 2023 at 8:40 am in reply to: Making blog post full article clickable in blog post listing #1395323Hey Global4Net,
Thank you for the inquiry.
Are you referring to the Blog Posts element? Please provide a link to the page so that we can check the element.
Best regards,
IsmaelHi,
The script in the previous threads are based on this documentation.
// https://dimsemenov.com/plugins/magnific-popup/documentation.html#inline-type
You have to add this code in the functions.php file to enable the inline popup.
function inline_popup_enabler(){ ?> <script> (function($){ $(document).ready(function() { $('.inline_popup').magnificPopup({ type:'inline', midClick: true }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'inline_popup_enabler', 9999);In a text or code block, create a new element and place the content that you want to display in a popup.
<div id="test-popup" class="white-popup mfp-hide">This is the popup content</div>And in the same or separate block, create the popup button.
<a href="#test-popup" class="inline_popup">Show inline popup</a>When the inline_popup button or link is clicked, it will open the #test-popup element inside the lightbox.
Best regards,
IsmaelHey djsmbd,
Thank you for the inquiry.
Does it work correctly after accepting the privacy cookies? If you want to enable the feature without requiring the user to accept the privacy cookies, set the Enfold > Privacy & Cookies > Cookie Handling > Default Cookie Behaviour to the first or second option.
Best regards,
IsmaelJanuary 26, 2023 at 8:02 am in reply to: Hide titles and descriptions when you hover on images or thumbnails in masonry #1395319Hi,
Great! Let us know if you have more questions.
Have a nice day.
Best regards,
IsmaelHey virtualbis,
Thank you for the inquiry.
There is no selected image in the Styling > Background Image when we checked the color section. Have you tried reselecting the image?
Best regards,
IsmaelHi,
The breadcrumb should automatically display in the archive page as long as it is enabled in the theme options. Please check the archive.php file and make sure that this line is not commented out.
$showheader = true; if(avia_get_option('frontpage') && $blogpage_id = avia_get_option('blogpage')) { if(get_post_meta($blogpage_id, 'header', true) == 'no') $showheader = false; } if($showheader) { echo avia_title(array('title' => avia_which_archive())); }Best regards,
IsmaelJanuary 26, 2023 at 7:28 am in reply to: Need Help Creating A Custom Site Template (NOT Page Template) #1395316Hi,
So, what i’m looking to do is…
I need a landing page & some sub-pages that uses a completely different look/design than the rest of the site.“BUT” i need to still be able to utilize ALL of the “Avia Layout Builder” options for each page.
What specific changes are you trying to implement to these pages? It sounds like what you are trying to accomplish here is a bit out of the scope of support, but if you need to still use the ALB, you have to create a copy of the template-builder.php file and add the template comment as instructed previously so that you can use it as template. You can then add the changes to the template.
where do i…
1) add a new logo, using the same layout, size, & placement as the main one, & letting Enfold do its thing for responsiveness etc?
2) tell the new template to use a different menu from the WP Menu? and let Enfold do its thing for responsiveness there too? i only need to change the colors for the menu.
3) where do i hardcode in a different background image for the pages?
4) and how can i have the footer use different/custom Widgets?1.) To display a different logo on a specific page, you can use the avf_logo filter in the functions.php file.
add_filter('avf_logo','av_change_logo_img'); function av_change_logo_img($img) { if( is_page('1005973') ) { $img = "https://www.site.com/wp-content/uploads/2023/01/this-logo.svg"; } if(is_singular('portfolio')) { $img = "https://www.site.com/wp-content/uploads/2023/01/that-logo.png"; } return $img; }2.) You can use one of the following plugins to control the visibility of the menu items based on certain conditions.
// https://wordpress.org/plugins/conditional-menus/
// https://wordpress.org/plugins/if-menu/3) Have you tried using the Color Section element?
4) Again, you can use the following plugins to control the visibility of the widgets.
// https://wordpress.org/plugins/widget-options/
// https://wordpress.org/plugins/widget-logic/Best regards,
IsmaelHi,
Thank you for the screenshot.
Instead of adding the text directly in the field, we can create and use a custom shortcode that returns a specific text or content based on the active language. Please add the following code in the functions.php file.
function av_polylang_header_cb($atts, $content = null){ $text = ""; $lang = pll_current_language(); if($lang == "de") { $text = "Text for DE language"; } else { $text = "Text for EN language"; } return $text; } add_shortcode('av_polylang_header', 'av_polylang_header_cb');In the phone field or small info text field, use this shortcode.
[av_polylang_header]Best regards,
IsmaelJanuary 26, 2023 at 6:46 am in reply to: Split menu with centered logo through quick css – can’t click logo now #1395305Hi,
Great! Glad to know that this has been fixed. Let us know if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHey jeel147,
Thank you for the inquiry.
You can adjust the padding of the first section using the following css code.
.home div#av_section_1 .template-page.content.av-content-full.alpha.units { padding: 10px; }And to adjust the size of the text on mobile view, edit the element (special heading) in builder, go to the Styling tab and configure the Font Sizes settings.
Best regards,
IsmaelHey walhai,
Thank you for the inquiry.
You have to modify the enfold\config-templatebuilder\avia-shortcodes\postslider\postslider.php file, look for the following code around line 805.
$thumbnail = get_the_post_thumbnail( $the_id, $image_size );Replace the $image_size with a different thumbnail (ex. full, large, square, medium etc ). Default size is “portfolio”.
$thumbnail = get_the_post_thumbnail( $the_id, "full" );Best regards,
IsmaelHi,
Thank you for the links.
Did you add the following css code somewhere? It sets the font size to 15px by default on pages.
body, body .avia-tooltip { font-size: 15px; }The css below is the default style.
#top .fullsize .template-blog .post .entry-content-wrapper { text-align: justify; font-size: 1.15em; line-height: 1.7em; max-width: 800px; margin: 0 auto; overflow: visible; }To fix the issue, you have to adjust the first css rule and make sure that it is the same as the default style.
Best regards,
IsmaelHey Christie,
Thank you for the inquiry.
Did you add this css code?
#top .container .av-masonry.av-large-gap { padding: 0; width: 102%; width: calc(100% + 15px); }It sets the padding of the masonry items to zero. Please adjust the modification or override it with the following css.
#top .container .av-masonry.av-large-gap { padding: 15px 0 0 15px; }Best regards,
IsmaelHey Zdeněk,
Thank you for the inquiry.
You can create a custom shortcode and use the get_the_author_meta function to retrieve data about the author. Please check the documentation below for more info.
// https://codex.wordpress.org/Shortcode_API
// https://developer.wordpress.org/reference/functions/get_the_author_meta/Best regards,
IsmaelHey John,
Thank you for the inquiry.
You can use the avf_modify_thumb_size filter to adjust the dimension of the existing thumbnails. Usage examples can be found in the following threads.
// https://kriesi.at/support/topic/alter-featured-image-on-blog-does-not-work/#post-1342432
// https://kriesi.at/support/topic/title-and-image/#post-1304670
// https://kriesi.at/support/topic/source-for-masonry-image-size/Best regards,
IsmaelHey enfold,
Thank you for the inquiry.
We can’t find any element or image with the ID “shortcut-work”. Would you mind providing a screenshot? You can use imgur, savvyify or dropbox.
Best regards,
IsmaelHey yundian,
Thank you for the inquiry.
You can add this filter in the functions.php file to disable the author info.
add_filter("avf_show_author_meta", "__return_false" );OR edit the includes > loop-index.php file and remove this block of code starting from line 489.
/** * Allow to change theme options setting for certain posts * * @since 4.8.8 * @param boolean $show_author_meta * @param string $context * @return boolean */ if( true === apply_filters( 'avf_show_author_meta', 'blog-meta-author' == avia_get_option( 'blog-meta-author' ), 'loop-index' ) ) { $meta_author = '<span class="blog-author minor-meta">' . __( 'by', 'avia_framework' ) . ' '; $meta_author .= '<span class="entry-author-link" ' . avia_markup_helper( array( 'context' => 'author_name', 'echo' => false ) ) . '>'; $meta_author .= '<span class="author">'; $meta_author .= '<span class="fn">'; $meta_author .= get_the_author_posts_link(); $meta_author .= '</span>'; $meta_author .= '</span>'; $meta_author .= '</span>'; $meta_author .= '</span>'; $meta_info['author'] = $meta_author; }Best regards,
IsmaelHey cosemspb,
Thank you for the inquiry.
Looks like the stylesheets are not loading at all in the backend. Have you tried disabling the plugins temporarily especially the cache and compression plugins?
Best regards,
IsmaelHey schwabino,
Thank you for the inquiry.
You can use the default lightbox option in the theme to open an inline content. Please check the links below for a few examples.
// https://kriesi.at/support/topic/lightbox-popup-on-enfold/#post-1378661
// https://kriesi.at/support/topic/team-member-element-open-team-member-description-in-lightbox/#post-1354989Or just use a plugin.
// https://wordpress.org/plugins/wp-popups-lite/
Best regards,
IsmaelHey Tanja,
Thank you for the inquiry.
We recommend using an existing plugin instead of manually creating the schema yourself. Please check the link below for the list of the available plugins.
// https://wordpress.org/plugins/search/json+schema/
Best regards,
IsmaelHi,
Thank you for the update.
The header should not be sticky on mobile devices by default. Did you apply any modifications to header? You may need to remove the modification or try this css code to adjust the position of the slider.
.page-id-2134 #main div#full_slider_1 { margin-top: 88px; }Best regards,
IsmaelHi,
Thank you for the update.
We tried purging the plugin cache, but the modification is still not taking effect. It works correctly when we apply it directly in the browser as shown in the screenshot below.
// https://1drv.ms/u/s!AjjTfXSRbKTvz1wRighgecg8-J7b?e=ZrVvhL
Have you tried disabling the plugins temporarily? Is there another cache system in your server that we may not know of.
Best regards,
IsmaelHi,
Thank you for the info.
So: is there some code to make the modal window scrollable?
The modal popup window should be scrollable by default but there might be another element or script that is causing the issue. Is it working correctly when the plugins are deactivated? Please provide a short clip of the scrolling issue so that we can better understand the problem.
Best regards,
IsmaelJanuary 25, 2023 at 4:05 am in reply to: STRIPE – Error encountered with avia_cookie_check_sessionStorage() function #1395030Hi,
The modification in the previous thread just relocates the script in the footer. It will probably still cause issues with stripe’s webhooks even if we move the avia_cookie_check_sessionStorage script in the footer.
Thank you for your understanding.
Best regards,
Ismael-
This reply was modified 3 years, 1 month ago by
Ismael.
January 25, 2023 at 3:56 am in reply to: Image widget doubles in height with mouse roll-over in Chrome #1395029Hi,
Thank you for the clarification.
It seems to be an issue with the image overlay position. Adding this css code should help.
span.image-overlay.overlay-type-extern { position: absolute !important; }Best regards,
IsmaelHi,
I want to translate dynamic content in the so called additional header-row of enfold theme
Would you mind providing a screenshot of these option or settings? You can use imgur, savvyify or dropbox. Thanks.
Best regards,
IsmaelHi,
Edit the Image element, then go to the Advanced > Responsive tab and toggle the Element Visibility settings. Please check the screenshot below.
Screenshot: https://1drv.ms/u/s!AjjTfXSRbKTvz1s_T4g4eqBDh6Zf?e=mwNfvj
Best regards,
Ismael -
This reply was modified 3 years, 1 month ago by
-
AuthorPosts
