Forum Replies Created
-
AuthorPosts
-
Hi Verena,
Your code in functions.php file should be looking as following at the moment
// Register tripadvisor icon as a theme icon function avia_add_custom_icon($icons) { $icons['tripadvisor_icon'] = array( 'font' =>'tripadvisor', 'icon' => 'uf262'); return $icons; } add_filter('avf_default_icons','avia_add_custom_icon', 10, 1); // Add new icon as an option for social icons function avia_add_custom_social_icon($icons) { $icons['Tripadvisor'] = 'tripadvisor_icon'; return $icons; } add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1); //Add items on the social share section add_filter('avia_social_share_link_arguments', 'avia_add_social_share_link_arguments', 10, 1); function avia_add_social_share_link_arguments($args) { $new_array = array( 'tripadvisor_icon' => array( "encode"=>true, "encode_urls"=>false, "pattern" => "https://www.tripadvisor.com://send?text=[title]-[permalink]" ) ); return array_merge($new_array, $args); }Please change it to following one
// Register tripadvisor icon as a theme icon function avia_add_custom_icon($icons) { $icons['Tripadvisor'] = array( 'font' =>'tripadvisor', 'icon' => 'uf262'); return $icons; } add_filter('avf_default_icons','avia_add_custom_icon', 10, 1); // Add new icon as an option for social icons function avia_add_custom_social_icon($icons) { $icons['Tripadvisor'] = 'Tripadvisor'; return $icons; } add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1); //Add items on the social share section add_filter('avia_social_share_link_arguments', 'avia_add_social_share_link_arguments', 10, 1); function avia_add_social_share_link_arguments($args) { $new_array = array( 'Tripadvisor' => array( "encode"=>true, "encode_urls"=>false, "pattern" => "https://www.tripadvisor.com://send?text=[title]-[permalink]" ) ); return array_merge($new_array, $args); }After that you may need to reset Tripadvisor icon in Enfold theme options > Social Profile.
If you only need to add Tripadvisor icon to social share and not social profiles, you can use the code as following
// Register tripadvisor icon as a theme icon function avia_add_custom_icon($icons) { $icons['Tripadvisor'] = array( 'font' =>'tripadvisor', 'icon' => 'uf262'); return $icons; } add_filter('avf_default_icons','avia_add_custom_icon', 10, 1); //Add items on the social share section add_filter('avia_social_share_link_arguments', 'avia_add_social_share_link_arguments', 10, 1); function avia_add_social_share_link_arguments($args) { $new_array = array( 'Tripadvisor' => array( "encode"=>true, "encode_urls"=>false, "pattern" => "https://www.tripadvisor.com://send?text=[title]-[permalink]" ) ); return array_merge($new_array, $args); }Best regards,
YigitHi Susanne,
I just replied to your thread here – https://kriesi.at/support/topic/again-because-masonry-links/.
I could not reproduce the issue on my end and I am thinking that is because issue is not clear to me. Could you please elaborate on that thread so we can look into it?We are sorry for the late reply. Forums have been pretty busy after the update. For future reference, if you have an urgent case, please add “urgent” to thread title so we can try to look into it as soon as we can :)
Best regards,
YigitHi Susanne,
We are sorry for the late reply!
I checked every item on your partner page and they all have an external link and they are working.
To make sure we are on the same page, could you please elaborate on the issue?Regards,
YigitHey WZ,
Thanks for contacting us and sorry for the late reply!
I am afraid that would not be easily possible. You would either need to heavily modify theme files or use custom CSS to adjust those pages.
Best regards,
YigitHey,
I have tested it on my local installation before posting and it worked for me.
Could you please create temporary admin logins and post them here privately so we can look into it? :)
Regards,
YigitHi,
We have fixed the issue in Enfold 4.8.1. Since you have already updated to that version, I simply edited your page and updated it.
Please review your website :)Cheers!
YigitHi,
Thanks for the update!
I am closing this thread and will reply in your new thread shortly :)Regards,
YigitHi,
Glad Nikko could help! :)
For your information, you can take a look at Enfold documentation here – https://kriesi.at/documentation/enfold/
If you have any other questions or issues, feel free to start a new thread under Enfold sub forum and we will gladly try to help you :)
Enjoy the rest of your day!
Best regards,
YigitHey,
Thanks for contacting us!
Please add following code to Quick CSS field in Enfold theme options > General Styling tab
#js_sort_items .text-sep { opacity: 0; }Best regards,
YigitHey,
Thanks for contacting us!
Please update Enfold to the latest version 4.8.1 and flush cache :)
Best regards,
YigitHi,
Thanks for contacting us!
Could you please post FTP and WP admin logins here privately so we can look into it? :)
Cheers!
YigitHey,
Thanks for contacting us!
Please use the code as following
add_filter('woocommerce_sale_flash', 'woocommerce_custom_sale_text', 10, 3); function woocommerce_custom_sale_text($text, $post, $_product) { $text = '<span class="onsale">'. __( 'Aktion', 'text_domain' ). '</span>'; return $text; }Best regards,
Yigit-
This reply was modified 5 years ago by
Yigit.
Hi,
I added following code to bottom of Quick CSS field
.html_header_top #top .av_header_stretch .container { width: 100%; max-width: 100%; padding: 0 !important; } @media only screen and (max-width: 480px) { #top #header .widget { top: 28px; width: 100%; }} @media only screen and (max-width: 768px) and (min-width: 481px) { #top #header .widget { top: 27px; width: 50%; right: 0; left: auto; }}Please review your website.
Also, please refrain from self posting on your thread :)
Best regards,
YigitHi,
Thanks for contacting us!
Please add following code to bottom of Functions.php file of your child theme
function avia_remove_woocommerce_frontend_search_params() { remove_action('woocommerce_before_shop_loop','avia_woocommerce_frontend_search_params', 20); } add_action( 'init', 'avia_remove_woocommerce_frontend_search_params');This would remove default sorting. Please let us know if plugin works after removing default sorting :)
Best regards,
YigitHi Thilo,
Thanks for contacting us!
I checked your website and YouTube icon shows up in Footer on my end. I attached a screenshot in private content field below. Have you figured it out already? :)
@guenni007 Thanks for your input. It was YouTube icon in social profiles :)Cheers!
YigitMarch 9, 2021 at 1:17 pm in reply to: Database connection failed after saving Enfold theme options #1286695Hi,
Thanks for contacting us and sorry for the late reply!
Have you tried disabling CSS and JS file merging and compression in Enfold theme options > Performance tab? If you have, does it also throw error after that?
If it does, would it be possible for you to create a clone testing site where we could test further?Best regards,
YigitHey Michael,
Could you please create temporary admin logins for both sites and post them here privately so we can look into it? :)
Regards,
YigitHi,
@Guenni007 thanks for your input! Yes, plugin is no longer needed to upload themes and plugins as zip files :)Best regards,
YigitHi Dan,
Sorry for the late reply!
That should be possible. You could use if conditions for languages and attributes for room types – https://codex.wordpress.org/Shortcode_API
I have been meaning to provide you a complete shortcode as well however forums have been pretty busy after the most recent updates therefore I unfortunately did not have time to look into it.
Could you please look into it and if you cannot figure it out, let us know so we can assist you further as soon as we can? :)Best regards,
YigitMarch 9, 2021 at 1:05 pm in reply to: How can I add messenger icon in enfold theme social icons in header? #1286691Hi,
I uploaded two Messenger icons that I downloaded from Flaticon – https://imgur.com/a/tkGAV6J
Please upload them on your website – https://www.mediafire.com/file/4qf1x2fvm9o02bn/fontello-0fd1deab.zip/fileIf you need further assistance, please create temporary admin logins and post them here privately :)
Best regards,
YigitHi Verena,
Could you please try adding following code to Functions.php file as well
//Add items on the social share section add_filter('avia_social_share_link_arguments', 'avia_add_social_share_link_arguments', 10, 1); function avia_add_social_share_link_arguments($args) { $new_array = array( 'tripadvisor_icon' => array( "encode"=>true, "encode_urls"=>false, "pattern" => "https://www.tripadvisor.com://send?text=[title]-[permalink]" ) ); return array_merge($new_array, $args); }Best regards,
YigitHey,
No, because there is no overlay on your column background image. You could however change the background image on hover.
If you would like to do that, please edit your Grid Cell and give it a custom CSS class (“test-class” in example below) in Advanced > Developer Settings tab and then add following code to Quick CSSbody .flex_cell.avia-link-column.avia-link-column-hover.test-class:hover { background-image: url(URL OF THE BACKGROUND IMAGE HERE) !important; }Regards,
YigitMarch 9, 2021 at 12:30 pm in reply to: After ALB Custom Elements activated –> SQL queries jumps from 20 –> 200 #1286686Hi,
Thanks for your feedback!
We actually saw performance improvement in our initial tests after this fix.
Could you please point out the queries and if possible, check without any active plugins?We are going to test further as well however we would like find out more so we can make sure performance is as good as possible :)
Best regards,
YigitHey,
Replied to your thread here – https://kriesi.at/support/topic/double-registration/. Closing this one :)
Best regards,
YigitHey,
Thanks for contacting us!
Download and purchase processes are managed by Envato. Please contact Envato support and request a refund – https://help.market.envato.com/hc/en-us/articles/202821460-Can-I-Get-A-Refund-.
Regards,
YigitHi Thomas,
Thanks for contacting us!
Short answer is, you can use a regular license :)
For better understanding the licenses I will give an example:
LayerSlider is included in Enfold. Legally, we could not do that with regular license but it is possible with extended license. But if we needed LayerSlider to install on a clients website, we could simply purchase a regular license. You can read more about licenses here – https://themeforest.net/licenses/standardIf you have any other questions, please let us know :)
Best regards,
YigitHi Jonah,
1- Yes, it is possible. You can simply edit the Audio Player element and choose to start manually – https://imgur.com/a/F8jCWau
2- YouTube and Instagram icons are available out of the box and Spotify icon can be added by referring to this post – https://kriesi.at/documentation/enfold/social-share-buttons/#how-to-add-custom-social-icons-to-enfold-options. If you decide to purchase Enfold and would like us to add it, we can gladly add it for you. We would just need temporary admin logins :)Best regards,
YigitHi Michael,
You are welcome!
Let us know if you have any other questions and enjoy the rest of your day!Best regards,
YigitHi Buddy,
I tried to login couple of times as well but logins are not working for me either. Could you please check them once again?
Best regards,
YigitMarch 8, 2021 at 6:48 pm in reply to: After 4.8 or 4.8.1 update "copyright" text disappered. #1286519 -
This reply was modified 5 years ago by
-
AuthorPosts
