Forum Replies Created

Viewing 30 posts - 10,231 through 10,260 (of 25,536 total)
  • Author
    Posts
  • in reply to: WPML Language Switcher Replacement #1196369

    Hi Matt,

    Sure, that won’t have any issues if moved there :)
    We’re glad that we could help :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    Hi BruceJackson,

    Yes, I have tested it and this code works on my end:

    function av_return_100(){ return 82; }
    add_filter('jpeg_quality', 'av_return_100');
    add_filter('wp_editor_set_quality', 'av_return_100');

    We have already posted this issue to our devs.

    Best regards,
    Nikko

    in reply to: Social Share Buttons on a Custom Post Type #1195886

    Hi pippylu,

    We apologize for the delayed response.
    And thanks for giving us admin access.
    After doing some tests on your site and trying to reproduce it on my local server the only conclusion I get is that it is caused by your child theme.
    To verify on this I have installed a child theme on your dev site which only includes creating the project post type and the code to activate ALB in custom post types and it does work properly.
    You can verify this by switching to the Enfold Child theme I have installed on your dev site.

    Also just a tip, you don’t need this code:

    /* ADD AFB TO CUSTOM POST TYPES  */
    add_filter('avf_builder_boxes', 'add_builder_to_posttype');
    function add_builder_to_posttype($metabox)
    {
    	foreach($metabox as &$meta)
    	{
    		if($meta['id'] == 'avia_builder' || $meta['id'] == 'layout')
    		{
    			$meta['page'][] = 'program';
    			$meta['page'][] = 'project';
    			$meta['page'][] = 'event';
    			$meta['page'][] = 'resource';
    		}
    	}
    	return $metabox;
    }

    this is the code that you need to use (you can just add those other post types here):

    /* Fix Enfold Breaking Custom Post Types */
    function avf_alb_supported_post_types_mod( array $supported_post_types )
    {
      $supported_post_types[] = 'project';
      return $supported_post_types;
    }
    add_filter('avf_alb_supported_post_types', 'avf_alb_supported_post_types_mod', 10, 1);

    Best regards,
    Nikko

    Hi marcusss,

    We apologize for the delayed response.
    I have checked those fonts you mentioned and it does show as empty squares.
    The cause of the issue seems to be coming from the cache since it uses the same name fontello.
    To fix it, you just need to clear browser or force the browser to fetch the new ones, on Chrome you can do this by pressing ctrl + f5 when refreshing the page.
    Let us know if you need further assistance.

    Best regards,
    Nikko

    in reply to: WPML Language Switcher Replacement #1195668

    Hi Matt,

    I have added this CSS code in your Quick CSS (both in English and German):

    #top #header #header_main .av-language-switch-item {
        display: none;
    }

    Let us know if you need further assistance.

    Best regards,
    Nikko

    Hi BruceJackson,

    Have you placed the code in a child theme?
    If you don’t have it yet, then please download it here (instructions are also in the link): https://kriesi.at/documentation/enfold/child-theme/
    If you have already and placed the codes in the child theme’s functions.php then try to manually replace all the single quotes.
    Also the default compression of WordPress is 82.

    Best regards,
    Nikko

    in reply to: Enfold 4.7 podcast support #1195649

    Hey Islam Aghazada,

    Thanks for contacting us!
    And we apologize for the delayed response.
    We don’t have any particular podcast plugins that we support though we can guarantee that most plugins should work properly with Enfold.
    Since there are lots of podcast plugins available, can you tell us which you are trying to use? so we can try to test first then maybe give you our feedback on it if it’s compatible or has some issues.

    Best regards,
    Nikko

    in reply to: Portfolio Template using shortcodes #1195648

    Hi paoluccimarketing,

    We apologize for the delayed response.
    Based on the code you have posted, I don’t see it causing any issues or conflict with other elements such as Color Section.
    As for your last question, if you’re looking for something like choosing a Page Template then, unfortunately, I don’t think that’s possible at least from what I know based on the WP Codex: https://codex.wordpress.org/Function_Reference/register_post_type (if this is possible I’ll be glad to know as well).
    For now, I think the solution is to use single-{post-type}.php file as your single template and the workaround for the different templates is to use Conditional Tags to identify which portfolio items should use this layout and for the rest use this layout, etc.
    Hope this is helpful.

    Best regards,
    Nikko

    in reply to: grid column failure #1195645

    Hi newmesis,

    We apologize for the delayed response.
    It’s was really hard to spot the real cause of the issue as it could not be reproduced on our ends.
    However, after checking further the issue, it was because of the 2 unclosed divs located in the textblock below “Referencias”, you can refer to private content for the screenshot.
    You can still see the issue on link 1 (private content), link 2 is a duplicate of link 1 but the div is closed.
    Hope this clarifies the issue.

    Best regards,
    Nikko

    in reply to: Portfolio Gallery Photo Not Showing #1195639

    Hi allyson3,

    We’re glad to hear that it’s resolved :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Increase site identity font size #1195530

    Hi jwencke,

    We’re glad that we could help :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    Hi rob,

    Yes please, no need for the default settings, just the settings that you have changed.

    Best regards,
    Nikko

    in reply to: Increase site identity font size #1195520

    Hi jwencke,

    Please add this CSS code in Quick CSS, located in Enfold > General Styling:

    #top #header #header_main .logo {
        left: 50%;
        margin-left: -115.26px;
    }
    
    #top #header #header_main .logo a {
        font-size: 28px;
    }

    Just adjust the font size and if you adjust the font size, please adjust the margin-left value as well :)

    Best regards,
    Nikko

    in reply to: Problem woocommerce structure #1195510

    Hi Playsystem,

    Thanks for giving us access again.
    I have checked the product page that you mentioned: https://desja.it/prodotto/braccialetto-unisex-pietra-giada-agata-verde-e-crisantemo-alexis/
    And I found out that it has some unnecessary tags which caused it not to display.
    To fix it, you’ll need to go to those product pages that has its content that’s not showing and choose Text instead of Visual in the content editor to see this (div tags and remove it).

    Best regards,
    Nikko

    in reply to: Blog images wider #1195506

    Hi Charlotte,

    We’re glad that we could help :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Increase site identity font size #1195505

    Hey jwencke,

    I’m getting this when I checked your site, please check.

    Service Unavailable
    The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.

    Best regards,
    Nikko

    in reply to: social icons not showing #1195504

    Hi keyseven,

    That’s a bug in Enfold in the version you’re using.
    Please update Enfold to the latest version (4.7.3) to fix it, make sure to have a backup first before doing an update.
    If you’re not ready for an update yet, then please follow the solution on this thread: https://kriesi.at/support/topic/missing-icons-after-updating-to-wordpress-5-3-1-and-maintenance-releases/

    Best regards,
    Nikko

    in reply to: Wrong displayed Footer on home page #1195503

    Hi Black-Shadow,

    Please do update to the latest version of Enfold.
    Make sure to have a backup first before you update :)

    Best regards,
    Nikko

    in reply to: Unwanted border showing beneath grid-row #1195501

    Hi swibbycreations,

    Glad that Mike was able to help :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: How to change order of portfolio items #1195498

    Hi Nikola,

    We’re glad to hear that :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Error in my homepage #1195495

    Hi LienM,

    You’re still using Enfold 4.5.7, please update to the latest version 4.7.3.
    Please create a backup first before updating.

    Best regards,
    Nikko

    in reply to: Display copyright text below Big magazine image #1195477

    Hi Darko,

    We’re glad that we could help :)
    Thanks for your kind words as well.
    And thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Single Product: Shopping Cart in one Row #1195476

    Hi Heimkinopartner,

    You’re welcome, please replace the code I gave to this one:

    #top .single_variation_wrap {
        display: flex;
        align-items: center;
    }
    
    #top .single_variation_wrap .woocommerce-variation-add-to-cart {
        display: flex;
        flex-basis: 434px;
    }

    Best regards,
    Nikko

    in reply to: Blog images wider #1195465

    Hi charlotteraboff,

    Thanks for giving us ftp access.
    I have added loop-index.php in the includes folder and inserted this code: https://pastebin.com/tyUvvBNa
    Then added this CSS code in your Quick CSS:

    #top .fullsize .template-blog .post .entry-content-wrapper {
        max-width: 100%;
    }
    
    #top .fullsize .template-blog .post .entry-content-wrapper > * {
        width: 90%;
        max-width: 1310px;
    }
    
    #top .fullsize .template-blog .post .entry-content-wrapper > .big-preview {
        width: 100%;
        max-width: 100%;
    }
    
    .new-header .post-date {
        font-size: 20px;
        margin: 0 auto;
        overflow: hidden;
        padding: 20px 0;
        position: relative;
        text-align: center;
        width: 780px;
    }
    
    .new-header .post-date:before,
    .new-header .post-date:after {
        border-top: 1px solid #666;
        content: "";
        height: 1px;
        position: absolute;
        top: 34px;
        left: 0;
        width: 280px;
    }
    
    .new-header .post-date:after {
        left: auto;
        right: 0;
    }

    Please flush out your browser cache to view the changes properly or ctrl + f5.
    Let us know if you need further assistance.

    Best regards,
    Nikko

    in reply to: Rejilla de opiniones #1195455

    Hi,

    You’ll need to use a child theme for the tweak.
    The path should be wp-content/themes/enfold-child/functions.php
    If you haven’t used a child theme yet, please download it here (instructions on how to use is on the link as well): https://kriesi.at/documentation/enfold/child-theme/

    Best regards,
    Nikko

    in reply to: Display copyright text below Big magazine image #1195452

    Hi Darko,

    You’re welcome :)
    The copyright text is coming from functions-enfold.php and you can override it by adding this code in functions.php of your child theme (then tweak this as this is the original code):

    if( ! function_exists( 'avia_post_thumbnail_html' ) )
    {
        function avia_post_thumbnail_html($html, $post_id, $post_thumbnail_id, $size, $attr)
        {
            $attachment_id = get_post_thumbnail_id($post_id);
            $copyright_text = get_post_meta($attachment_id, '_avia_attachment_copyright', true );
    
            if ($copyright_text) {
                $html .= "<small class='avia-copyright'>{$copyright_text}</small>";
            }
            return $html;
        }
        if (! is_admin()){
            add_filter('post_thumbnail_html', 'avia_post_thumbnail_html', 99, 5);
        }
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Icons failed to load at live site #1195421

    Hi J.N.,

    We’re glad to hear that :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    Hi messmeriza,

    We apologize for the delayed response.
    Can you try adding this CSS code:

    .page-id-4311 #full_slider_1 .avia-slideshow-inner, 
    .page-id-4311 #full_slider_1 .avia-slideshow-inner > li, 
    .page-id-4311 #full_slider_1 .avia-slideshow-inner .avia-slide-wrap img {
        height: 80vh !important;
    }
    
    #full_slider_1 .avia-slideshow-inner .avia-slide-wrap .slideshow_caption {
        bottom: 80px;
    }

    inside your media query:

    @media only screen and (min-width:768px) and (max-width:959px) { 

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Display copyright text below Big magazine image #1195417

    Hi Dare_Care,

    Please add this CSS code in Quick CSS, located in Enfold > General Styling:

    #top small.avia-copyright {
        display: block;
    }

    Best regards,
    Nikko

    in reply to: Icons failed to load at live site #1195410

    Hi greyhound72,

    I see your site in https and I could it showing properly on my end including the icons.
    I have posted in private content the link to the screenshot on how it looks on my end.

    Best regards,
    Nikko

Viewing 30 posts - 10,231 through 10,260 (of 25,536 total)