Forum Replies Created

Viewing 30 posts - 2,371 through 2,400 (of 25,536 total)
  • Author
    Posts
  • in reply to: Change social share title on blog post without ALB #1368214

    Hi Lyse,

    It seems correct based on the code given.
    I could see Share tyhis post on:
    I tested the hook/filter:

    add_filter('avia_social_share_title','new_share_title');
    function new_share_title() {
    	$output = 'Share this post on:';
    	return $output;
    }

    And it does change the title.

    Best regards,
    Nikko

    in reply to: problem in my store and the catalog images. RESIZE #1368202

    Hi brunet77,

    We apolgize for the delayed response.
    Please check the answer on this thread: https://kriesi.at/support/topic/bug-in-enfold-for-woocommerce-prduct-images/#post-1362576

    Best regards,
    Nikko

    in reply to: Professional Help Needed For Image Issues #1368201

    Hi la_tripping,

    Thanks for giving us access, FTP does work however admin access does not seem to work.
    I’m getting this error “ERROR: The username or password you entered is incorrect.“, please check.

    Best regards,
    Nikko

    in reply to: Small Feature Request #1368199

    Hi Tim,

    We are happy to hear that :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Last easy problems #1368197

    Hi cuccarini,

    I’m glad that Mike could help you :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Farbe anpassen #1368196

    Hi diefleischerei,

    The only way to change it is via CSS, go to Enfold > General Styling > Quick CSS and add this CSS code:

    .caption_framed .slideshow_caption .avia-caption-content p, 
    .caption_framed .slideshow_caption .avia-caption-title, 
    .avia-caption .avia-caption-content p, 
    .avia-caption .avia-caption-title {
        background-color: black;
    }

    Just change the color as you see fit.
    You can check this article for more information regarding the background color values: https://www.techonthenet.com/css/properties/background_color.php
    Hope this helps.

    Best regards,
    Nikko

    in reply to: blog layout featured image breaks grid after css changes #1368194

    Hi Sovietovic,

    The code given does not apply to other blog styles.
    The problem is with the very small featured image, you can test this by removing the code we gave.
    In order to force the grid layout to have a uniform size please try to add this CSS code:

    #top .avia-content-slider .slide-image img {
        height: 400px;
        width: 100%;
    }

    Best regards,
    Nikko

    in reply to: Change social share title on blog post without ALB #1368193

    Hi Lyse,

    Can you share with us the code snippet that you used?

    Best regards,
    Nikko

    in reply to: Logo size desktop #1368192

    Hi Ivan,

    You can change the logo size of desktop by changing it in Enfold > Header > Header Layout (tab) > Header Size set it to custom pixel size, then set Header Custom Height
    Next, change the image height and width attributes (default is 100px for height and 300px for width).
    You’ll need to add this PHP code in functions.php file in your child theme (or you can use some code snippets plugin if you’re not using a child theme):

    add_filter('avf_logo_dimension', 'custom_logo_dimension');  
    function custom_logo_dimension($dimension) { 
       $dimension = "height='150' width='450'";
       return $dimension;
    }

    Just adjust the width and height that you want to use.
    Hope this helps.

    Best regards,
    Nikko

    in reply to: Internationalization Logo Transparency Snippets #1368191

    Hi fritzves,

    Thanks for giving us admin access.
    Please try to add this code snippet for transparency logo:

    add_filter('avf_logo_subtext', 'kriesi_logo_addition');
    
    function kriesi_logo_addition($sub) {
    
        $lang = pll_current_language('locale');
    
        switch ($lang) {
            case 'en_US':
                $sub = '<img src="https://www.website.com/wp-content/uploads/2022/09/transparent-logo-en.png" class="alternate" alt="" title="alternate logo">';
                break;
            case 'es_CL':
                $sub = '<img src="https://www.website.com/wp-content/uploads/2022/09/transparent-logo-es.png" class="alternate" alt="" title="alternate logo">';
                break;
            default:
                $sub = '<img src="https://www.website.com/wp-content/uploads/2022/09/transparent-logo-default.png" class="alternate" alt="" title="alternate logo">';
        }
         
        return $sub;
    }

    Just change the image links and adjust the code as you see fit.

    Also, I have modified your code snippet to remove unnecessary codes, however, since you have three languages installed I suggest adding a default:

    add_filter('avf_logo','av_change_logo');
    
    function av_change_logo($logo) {
        $lang = pll_current_language('locale');
    
        switch ($lang) {
            case 'en_US':
                $logo = "https://www.website.com/wp-content/uploads/2022/09/logo-en.png";
                break;
            case 'es_CL':
                $logo = "https://www.website.com/wp-content/uploads/2022/09/logo-es.png";
                break;
            default:
                $logo = "https://www.website.com/wp-content/uploads/2022/09/logo-default.png";
        }
    
        return $logo;
    }

    Hope this helps.

    Best regards,
    Nikko

    • This reply was modified 2 years, 9 months ago by Nikko.
    in reply to: Could contact form email subject contain field value #1368189

    Hi Jaro,

    Please try to add this code in your child theme’s functions.php file:

    add_filter('avf_form_subject','avia_change_mail_subject', 10, 3);
    function avia_change_mail_subject($subject, $new_post, $form_params) {
    	$subject = $subject . ' - ' . urldecode($new_post['1_1']);
    	return $subject;
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Professional Help Needed For Image Issues #1368188

    Hi la_tripping,

    Please provide us with admin and FTP access to your site? so we can check and debug the issue.
    Please post the credentials in private content.

    Best regards,
    Nikko

    in reply to: Debug file #1368187

    Hi Asterios,

    Thanks for providing the debug file.
    I checked again what I recommended and it seems the single quote I pasted appears to be problematic, please replace the single quotes before and after KMA-Enfold Child manually and that should work.
    If it still does not work, please provide FTP and WP admin access so we can fix the problem for you.

    Best regards,
    Nikko

    in reply to: Video loading without end #1368116

    Hi Natacha,

    You’re welcome :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Debug file #1368115

    Hi Asterios,

    Can you send the debug file as well? so we can check.

    Best regards,
    Nikko

    in reply to: Coming Soon #1368068

    Hi josephmurphy,

    I’m glad that Rikard could help you :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Part of the tool list #1368066

    Hi Franz,

    We’re glad that you were able to fix the problem.
    Thanks for using Enfold and have a great weekend!

    Best regards,
    Nikko

    in reply to: Background video not showing up #1368065

    Hey rootbranch,

    I have checked on your site and could see a js error, can you try to disable the Siteground Optimizer plugin? and see if it helps.

    Best regards,
    Nikko

    in reply to: Enfold Portfolio Grid #1368063

    Hi Molly,

    I tried to login however there’s a popup window that shows up, which doesn’t allow me to go to the login page (screenshot link in private content)
    As for your question, there’s no need for theme extension or plugin for it to work.

    Best regards,
    Nikko

    in reply to: full width video in Fullwidth Easy Slider #1368062

    Hi Nancy,

    Yes it’s possible however it would also depend on the width and height of the video.

    Best regards,
    Nikko

    in reply to: how to eliminate 2px right margin from layout element #1368061

    Hi Ryan,

    Thanks for providing the link for us.
    I have checked the page and the masonry has this class av-large-gap which means the Gap between elements (in Styling) is set to Large Gap.
    If it has been set to No Gap, then please try to clear any caching plugin and temporarily disable it.
    If that still does not work, you can either give us temporary admin access or try fixing it by going to Enfold > General Styling > Quick CSS and add this CSS code:

    #top .av-large-gap.av-flex-size .av-masonry-entry .av-inner-masonry {
        margin: 0;
    }

    Best regards,
    Nikko

    in reply to: Debug file #1368059

    Hi Asterios,

    Yes, we will this thread open for you :)
    Have a great weekend!

    Best regards,
    Nikko

    in reply to: SECTION HEIGHT ERROR #1368033

    Hi karmenka,

    I’m glad that Rikard could help you :)
    Thanks for using Enfold and have a great weekend!

    Best regards,
    Nikko

    in reply to: Headline Rotator unformated #1368032

    Hi AFDCO,

    Please try to temporarily disable all plugins.
    If that does not work, please check the .htaccess file also in the root of your directory, you will need to check it via FTP or cPanel.
    You can also check this article: https://betterstudio.com/blog/wordpress-permalinks-not-working/

    Best regards,
    Nikko

    in reply to: Debug file #1368031

    Hi Asterios,

    In line 65 of your child theme’s functions.php file, please replace THEMENAME with ‘KMA-Enfold Child’ and see if this helps.

    Best regards,
    Nikko

    in reply to: blurry images mobile woocommerce #1368030

    Hi Angelo,

    Can you try to use a different image size? one that has a higher value.

    Best regards,
    Nikko

    in reply to: Icon on hover in stead of underline #1367878

    Hi Jasper,

    Please try to add this CSS code in Enfold > General Styling > Quick CSS:
    (just change the image URL and and background size as you see fit)

    #top #header .av-main-nav > li > a:hover {
        background-image: url(https://kriesi.at/themes/enfold-2017/wp-content/uploads/sites/66/2017/02/logosquare-layer-mini.jpg);
        background-size: 20px 20px;
        background-repeat: no-repeat;
        background-position: bottom center;
    }

    Best regards,
    Nikko

    in reply to: Debug file #1367876

    Hi Asterios,

    Can you give us a copy of your child theme? you can upload it in ufile.io or google drive and put the link in private content.

    Best regards,
    Nikko

    in reply to: Headline Rotator unformated #1367875

    Hi AFDCO,

    Can you give us a link to the page? so we can try to inspect it.

    Best regards,
    Nikko

    in reply to: blurry images mobile woocommerce #1367874

    Hi Angelo,

    Please try to go to Enfold > Performance, then disable Responsive Images.
    See if it helps.

    Best regards,
    Nikko

Viewing 30 posts - 2,371 through 2,400 (of 25,536 total)