Forum Replies Created
-
AuthorPosts
-
October 10, 2022 at 8:56 am 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,
NikkoOctober 10, 2022 at 6:21 am in reply to: problem in my store and the catalog images. RESIZE #1368202Hi 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-1362576Best regards,
NikkoHi 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,
NikkoHi Tim,
We are happy to hear that :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi cuccarini,
I’m glad that Mike could help you :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi 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,
NikkoOctober 10, 2022 at 6:02 am in reply to: blog layout featured image breaks grid after css changes #1368194Hi 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,
NikkoOctober 10, 2022 at 5:41 am in reply to: Change social share title on blog post without ALB #1368193Hi Lyse,
Can you share with us the code snippet that you used?
Best regards,
NikkoHi 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,
NikkoHi 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.
October 10, 2022 at 4:31 am in reply to: Could contact form email subject contain field value #1368189Hi 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,
NikkoHi 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,
NikkoHi 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,
NikkoHi Natacha,
You’re welcome :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi Asterios,
Can you send the debug file as well? so we can check.
Best regards,
NikkoHi josephmurphy,
I’m glad that Rikard could help you :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi Franz,
We’re glad that you were able to fix the problem.
Thanks for using Enfold and have a great weekend!Best regards,
NikkoHey 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,
NikkoHi 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,
NikkoHi Nancy,
Yes it’s possible however it would also depend on the width and height of the video.
Best regards,
NikkoOctober 8, 2022 at 3:43 pm in reply to: how to eliminate 2px right margin from layout element #1368061Hi 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,
NikkoHi Asterios,
Yes, we will this thread open for you :)
Have a great weekend!Best regards,
NikkoHi karmenka,
I’m glad that Rikard could help you :)
Thanks for using Enfold and have a great weekend!Best regards,
NikkoHi 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,
NikkoHi 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,
NikkoHi Angelo,
Can you try to use a different image size? one that has a higher value.
Best regards,
NikkoHi 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,
NikkoHi 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,
NikkoHi AFDCO,
Can you give us a link to the page? so we can try to inspect it.
Best regards,
NikkoHi Angelo,
Please try to go to Enfold > Performance, then disable Responsive Images.
See if it helps.Best regards,
Nikko -
This reply was modified 2 years, 9 months ago by
-
AuthorPosts