Forum Replies Created

Viewing 30 posts - 2,761 through 2,790 (of 25,536 total)
  • Author
    Posts
  • in reply to: Woocommerce styling issues #1358846

    Hi ivanglaser,

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

    Best regards,
    Nikko

    in reply to: Telegram in Social Share Button #1358737

    Hi aboderc,

    Thanks for posting the code that you used.
    The code will only show up in Social Profiles where you have the option to add it on the header or footer, on the social links however you may need to do these extra steps:
    1. Override Social Share
    – Do the things posted on this section: https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb
    – Copy social_share folder located in the parent theme wp-content/enfold/config-templatebuilder/avia-shortcodes and paste it to the shortcodes folder in the child theme
    – Edit social_share.php in the child theme and find this code (line 453-462):

    array(
        'name'		=> __( 'YouTube Link', 'avia_framework' ),
        'desc'		=> $check_profile,
        'id'		=> 'share_youtube',
        'type'		=> 'checkbox',
        'std'		=> '',
        'container_class' => 'av_third ',
        'lockable'	=> true,
        'required'	=> array( 'buttons', 'equals', 'custom' )
    ),

    and below it add this code:

    array(
        'name'		=> __( 'Telegram Link', 'avia_framework' ),
        'desc'		=> $check_profile,
        'id'		=> 'share_telegram',
        'type'		=> 'checkbox',
        'std'		=> '',
        'container_class' => 'av_third ',
        'lockable'	=> true,
        'required'	=> array( 'buttons', 'equals', 'custom' )
    ),

    2. Add this code in functions.php:

    function avia_add_custom_social_share_link_arguments($args) {
    	$telegram = array('telegram'	=> array(
    								'encode'		=> false,
    								'encode_urls'	=> false,
    								'profile_only'	=> true
    							));
    	$args = array_merge($args, $telegram);
    	return $args;
    }
    
    add_filter('avia_social_share_link_arguments', 'avia_add_custom_social_share_link_arguments', 10, 1);

    Hope this helps.

    Best regards,
    Nikko

    in reply to: Uploading Icons to my site #1358735

    Hi brmurphy,

    1. Follow the instructions posted here: https://kriesi.at/documentation/enfold/icon/#adding-your-own-fontello-or-flaticon-icons-
    You can download the icon fonts using the link in private content.

    2. The icons you purchased in flaticon are all in SVG form and not webfont files. Please go flaticons and download again the collection but choose the Icon font format.

    Hope this helps.

    Best regards,
    Nikko

    in reply to: Icon element centered on one line #1358732

    Hi ellamac,

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

    Best regards,
    Nikko

    in reply to: masonry is not displayed on the page #1358730

    Hi Th. Beck,

    Please create a separate thread and post the credentials in private content for the staging site since it will be shown as well to the thread creator.
    As for the affiliate program, I believe you are referring to Envato/Themeforest’s program, please check: https://www.envato.com/affiliates/

    Best regards,
    Nikko

    Hi virtualbis,

    Thanks for sharing the solution and we’re happy the the issue on mobile is now fixed :)

    Best regards,
    Nikko

    in reply to: Fullwidth Easy Slider Expanding in Height #1358728

    Hi sdsitetechdotcom,

    Thanks for giving us admin access.
    Is this already fixed? I have checked the page and I don’t see the fourth slide or any of the slides have the issue you mentioned.
    If it’s not fixed yet on your end, please try to clear the browser cache, if you’re using Chrome, please try to check it in incognito mode.

    Best regards,
    Nikko

    in reply to: Small Feature Request Partner/Logo Element #1358727

    Hi Tim,

    We will forward your request to our devs :)

    Best regards,
    Nikko

    in reply to: Exclude pages from maintenance #1358726

    Hi Patrick,

    Thanks for posting your suggestion.
    Will forward your request to our devs :)

    Best regards,
    Nikko

    Hi Veronika,

    I checked your page on desktop and I don’t see the issue at all.
    But on mobile I do see the issue you posted but it fixes itself after several seconds which leads me to think that js is loaded or working after.
    Probably some caching plugin is causing the issue.
    A quick fix for it on mobile would be via CSS:

    @media only screen and (max-width:479px) {
      .responsive #top .av-masonry-entry {
        position: static !important;
      }
    }

    Best regards,
    Nikko

    in reply to: problems with Pinterest #1358606

    Hi Veronika,

    You can exclude the welcome/homepage by using this code instead (

    function pin_script(){
    	if (!is_front_page() ) {
    		echo '<script type="text/javascript" src="//assets.pinterest.com/js/pinit.js" data-pin-hover="true"></script>';
    	}
    }
    add_action('wp_footer', 'pin_script');

    As for positioning it to the right, I’m afraid it’s not possible.

    Best regards,
    Nikko

    Hi G,

    Thanks for providing the site, I could see this code working:

    #top .avia-form-success {
        text-align: center;
        border-style: solid;
        border-width: 1px;
        padding: 20px 15px;
        font-size: 10px;
        line-height: 1.4em;
        border-radius: 2px;
        clear: both;
    }

    However, the issue is that the Color Section where the form is located has a bottom margin of -180px which results in the form success message being hidden.

    Best regards,
    Nikko

    in reply to: checkboxes font size #1358174

    Hi goodpixel,

    Please use this code instead (with !important it will be hard to override CSS):

    top label.input_checkbox_label {
        font-size: 18px;
    }
    
    @media only screen and (max-width:767px) {
      #top label.input_checkbox_label {
        font-size: 14px;
        padding-left: 25px;
      }
    }

    The first block with 18px (font-size) is for desktop and tablet versions.
    The second block in the media query is set to 14px (font-size) for mobile and I added a left padding so the label does not show under the text box when it’s more than one row of text.
    Just adjust the values as you see fit.

    Best regards,
    Nikko

    in reply to: Responsive text on mobile phone #1358169

    Hi evanskathy,

    Can you give us the link to your site?

    Best regards,
    Nikko

    Hi Philip,

    Thanks for giving us admin credentials.
    I have checked it but I don’t see the issue you mentioned.
    Can you give us steps on how to replicate the issue?

    Best regards,
    Nikko

    in reply to: "code block" affecting other sections of main page #1358165

    Hey sondijkatarzyna,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( to be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create an admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    in reply to: masonry padding #1358164

    Hi Veronika,

    Please try to add this CSS code:

    @media only screen and (max-width:767px) {
      #top .container .av-masonry.av-large-gap, 
      #all_posts .av-masonry-container {
        width: 100%;
      }
    
      #all_posts.av-large-gap.av-flex-size .av-masonry-entry .av-inner-masonry {
        margin-right: 0;
      }
    }

    Best regards,
    Nikko

    in reply to: Easy Slider and Fullscreen slider elements are blank #1358160

    Hi mountainlover,

    We’re glad that you were able to resolve the issue :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: the width on mobile version #1358158

    Hi Veronika,

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

    Best regards,
    Nikko

    in reply to: Hire Someone to Fix this website? #1358157

    Hi cindybird52,

    Thanks for giving us those credentials.
    We have fixed it for you.
    Please review your site :)

    Best regards,
    Nikko

    Hi G,

    I tried to check your site however this is what I’m getting:

    This site can’t be reached
    c2350005.ferozo.com took too long to respond.

    Is it blocked on certain countries?

    Best regards,
    Nikko

    Hi John,

    I can’t seem to see the issue on my end, This is what it looks like on my end using Edge browser:

    I’ll ask my colleagues to check it as well.

    Best regards,
    Nikko

    Hi aruizhuidobro,

    Does this code work properly on your site?

    #top .round-submit_m_p .avia-form-success {
    text-align: center;
    border-style: solid;
    border-width: 1px;
    padding: 20px 15px;
    font-size: 10px;
    line-height: 1.4em;
    border-radius: 2px;
    clear: both;
    }

    If not, try to replace #top .round-submit_m_p .avia-form-success with #top .avia-form-success
    If that does not work as well, then please give us a link to your site.
    You can post it privately.

    Best regards,
    Nikko

    in reply to: Hire Someone to Fix this website? #1357904

    Hey cindybird52,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( to be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create an admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    in reply to: Enfold Theme – Various setup #1357794

    Hi Marcus,

    I see, I’m glad that it worked well now :)

    Best regards,
    Nikko

    in reply to: first clicked picture appears 2 times #1357774

    Hi Franz,

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

    Best regards,
    Nikko

    in reply to: Grid Row content not centering on Mobile #1357773

    Hey Dzimnikov,

    Can you try adding this CSS code in Enfold > General Styling > Quick CSS:

    @media only screen and (max-width:767px) {
      .responsive #top #wrap_all .av-layout-grid-container .av_two_fifth {
        display: flex;
        align-items: center;
        justify-content: center;
      }
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Enfold Theme – Various setup #1357769

    Hi Marcus,

    Thanks for giving us admin access.
    I have checked your site as well as theme options however I’m not seeing any issues on my end.
    The Fira sans font that is set is showing up properly on my end, the code in Quick CSS is also fetching properly (social icons) and the buttons set to 100px border-radius in Advanced Styling also shows.
    Can you give us a screenshot on how it looks on your end? what browser are you using?

    Best regards,
    Nikko

    in reply to: background indicator on sub-menu mouse-over #1357767

    Hi ivanglaser,

    Thanks for providing us the screenshot.
    This code should not shift the layout because it does not target layouts:

    #top #wrap_all .av-main-nav ul > li > a, #top #wrap_all .av-main-nav ul {
        background-color: transparent;
    }

    however since you mentioned that I think the greater than symbol (>) might be changed to & g t ; (without the spaces)
    If it still shifts the layout then please revert back to your old code and then use this code for hover:

    #top #wrap_all .av-main-nav ul > li:hover > a {
        background-color: rgba(255,255,255,0.5) !important;
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Centering an Element within a column on the homepage #1357761

    Hi Dzimnikov,

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

    Best regards,
    Nikko

Viewing 30 posts - 2,761 through 2,790 (of 25,536 total)