Forum Replies Created

Viewing 30 posts - 9,001 through 9,030 (of 67,449 total)
  • Author
    Posts
  • in reply to: Image size of Blog archiv and Category #1395484

    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,
    Ismael

    in reply to: Theme registration, Envato, Personal token don't work #1395483

    Hey!

    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,
    Ismael

    in reply to: Enfold Developer – API Assistance #1395324

    Hey 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,
    Ismael

    Hey 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,
    Ismael

    in reply to: Pop-up feature #1395322

    Hi,

    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,
    Ismael

    in reply to: reCaptcha #1395320

    Hey 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,
    Ismael

    Hi,

    Great! Let us know if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: enfold Cloudinary background image not showing #1395318

    Hey 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,
    Ismael

    in reply to: Area section into blog categories #1395317

    Hi,

    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,
    Ismael

    Hi,

    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,
    Ismael

    in reply to: Enfold settings / polylang #1395306

    Hi,

    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,
    Ismael

    Hi,

    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,
    Ismael

    in reply to: row too high on mobile #1395304

    Hey 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,
    Ismael

    in reply to: Image size of Blog archiv and Category #1395302

    Hey 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,
    Ismael

    in reply to: Different typography size in pages and posts #1395288

    Hi,

    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,
    Ismael

    in reply to: Upgrade to 5.4 removed Large Gap on Masonry? #1395287

    Hey 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,
    Ismael

    in reply to: Author picture and name in the single post #1395114

    Hey 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,
    Ismael

    in reply to: Create another image size in library options #1395055

    Hey 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,
    Ismael

    in reply to: LInk to an image #1395053

    Hey 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,
    Ismael

    in reply to: How to remove the author link #1395050

    Hey 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,
    Ismael

    in reply to: Avia layout builder not opening #1395049

    Hey 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,
    Ismael

    in reply to: Pop-up feature #1395048

    Hey 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-1354989

    Or just use a plugin.

    // https://wordpress.org/plugins/wp-popups-lite/

    Best regards,
    Ismael

    in reply to: insert a Schema JSON-LD script to specific pages #1395045

    Hey 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,
    Ismael

    in reply to: Banner Slider Style #1395044

    Hi,

    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,
    Ismael

    in reply to: Portfolio Item & Folders plugin Metadata #1395038

    Hi,

    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,
    Ismael

    in reply to: Modal popup window mobile version not scrollable #1395032

    Hi,

    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,
    Ismael

    Hi,

    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.

    Hi,

    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,
    Ismael

    in reply to: Enfold settings / polylang #1395027

    Hi,

    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,
    Ismael

    in reply to: Mobile friendly home page #1395026

    Hi,

    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

Viewing 30 posts - 9,001 through 9,030 (of 67,449 total)