Forum Replies Created
-
AuthorPosts
-
Hi ivanglaser,
We are happy to hear that :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi 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,
NikkoHi 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,
NikkoHi ellamac,
I’m glad that Mike could help you :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi 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,
NikkoJuly 19, 2022 at 2:29 am in reply to: Layerslider Text cut off after turning mobile sideways #1358729Hi virtualbis,
Thanks for sharing the solution and we’re happy the the issue on mobile is now fixed :)
Best regards,
NikkoHi 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,
NikkoHi Tim,
We will forward your request to our devs :)
Best regards,
NikkoHi Patrick,
Thanks for posting your suggestion.
Will forward your request to our devs :)Best regards,
NikkoJuly 17, 2022 at 4:55 pm in reply to: blog masonry-images overlapping the heading and excerpt #1358608Hi 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,
NikkoHi 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,
NikkoJuly 17, 2022 at 4:01 pm in reply to: [av_contact title='' sent='Suscripción exitosa' text size #1358605Hi 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,
NikkoHi 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,
NikkoHi evanskathy,
Can you give us the link to your site?
Best regards,
NikkoJuly 13, 2022 at 8:41 am in reply to: My keyboard space key doesn't work when entering Avia Layout content #1358168Hi 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,
NikkoHey sondijkatarzyna,
Please post us your login credentials (in the “private data” field), so we can take a look at your backend.
- Install and activate ” Temporary Login Without Password “.
- Go to ” Users > Temporary Logins ” on the left-side menu.
- Click ” Create New “.
- 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 ). - Click ” Submit “.
- 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,
NikkoHi 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,
NikkoHi mountainlover,
We’re glad that you were able to resolve the issue :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi Veronika,
I’m glad that Mike could help you :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi cindybird52,
Thanks for giving us those credentials.
We have fixed it for you.
Please review your site :)Best regards,
NikkoJuly 13, 2022 at 7:08 am in reply to: [av_contact title='' sent='Suscripción exitosa' text size #1358156Hi 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,
NikkoJuly 13, 2022 at 7:04 am in reply to: Background Video on color section doesn't show correct aspect ratio #1358155Hi 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,
NikkoJuly 11, 2022 at 7:26 am in reply to: [av_contact title='' sent='Suscripción exitosa' text size #1357905Hi 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,
NikkoHey cindybird52,
Please post us your login credentials (in the “private data” field), so we can take a look at your backend.
- Install and activate ” Temporary Login Without Password “.
- Go to ” Users > Temporary Logins ” on the left-side menu.
- Click ” Create New “.
- 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 ). - Click ” Submit “.
- 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,
NikkoHi Marcus,
I see, I’m glad that it worked well now :)
Best regards,
NikkoHi Franz,
I’m glad that Mike could help you :)
Thanks for using Enfold and have a great weekend!Best regards,
NikkoHey 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,
NikkoHi 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,
NikkoHi 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,
NikkoHi Dzimnikov,
We’re happy to hear that :)
Thanks for using Enfold and have a great day!Best regards,
Nikko -
AuthorPosts