Forum Replies Created
-
AuthorPosts
-
Hi AlexBellaTropea,
I have fixed the icon with this code (added some color):
#top .social_bookmarks [title='Tripadvisor'] { background-color: #5aa85d !important; } #top [title='Tripadvisor']:before { content: '\e808'; font-family: 'fontello'; }Unfortunately you can alter only the icon and the background color and it’s not possible to use multiple colors.
Best regards,
NikkoHi bojsenit,
Thanks for giving us admin access.
The problem was not actually the cloning but the cause of the issue why the portfolio nav arrows are not showing is because of the slider.
This is the default behavior and to alter this, you’ll need to use a child theme, you can download it and find the instructions on how to use it in this link: https://kriesi.at/documentation/enfold/child-theme/
Then in the functions.php of your child theme, add this code:function enfold_post_nav_settings($settings) { if(is_singular('portfolio')) { $settings['is_fullwidth'] = false; $settings['skip_output'] = false; } return $settings; } add_filter('avf_post_nav_settings','enfold_post_nav_settings', 999, 1);Best regards,
NikkoHi elenapoliti,
You’re welcome, just let us know your feedback :)
Best regards,
NikkoHi elenapoliti,
I’m not really sure what you’re trying to achieve so I can’t really say for sure which to remove but if you only want to change the content area, then you’ll only need to replace:
get_template_part( 'includes/loop', 'index' );replace with something like:
get_template_part( 'includes/loop', 'posttype1' );Then copy loop-index.php (inside includes folder) and paste it in the includes folder of your child theme and rename it to loop-posttype1.php and tweak it.
Hope this helps.Best regards,
NikkoHi tonyiatridis,
We’re glad to hear that :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi theideaboutique,
Can you try with manual import?
– https://kriesi.at/documentation/enfold/import-demos/#manual-demo-import–using-xml-files-Best regards,
NikkoHi AlexBellaTropea,
We will close this thread and continue the discussion on your other thread with the same topic.
Best regards,
NikkoHi AlexBellaTropea,
Thanks for providing the admin access, I have modified your functions.php code to this:
function avia_add_custom_icon($icons) { $icons['Whatsapp'] = array( 'font' =>'whatsapp', 'icon' => 'uf232'); $icons['tripadvisor'] = array( 'font' =>'tripadvisor', 'icon' => 'ue808'); 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['Whatsapp'] = 'Whatsapp'; $icons['Tripadvisor'] = 'Tripadvisor'; return $icons; } add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);Best regards,
NikkoHi bobfurgo,
We’re glad that we could help :)
Thanks for using Enfold and have a great day!Best regards,
NikkoMarch 12, 2020 at 5:44 pm in reply to: Contact form : typed text in input fields is invisible #1192698Hi Schnippsche,
Glad that Jordan could help :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi Elena,
You should have 4, you’ll need to have the default single.php aside from the 3 single-{post-type}.php.
I think it’s correct and should work according to the WP Codex: https://developer.wordpress.org/themes/basics/template-hierarchy/
Can you give us a link for each post type mentioned? you can post this in private content.Best regards,
NikkoHi bojsenit,
That shouldn’t be an issue.
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,
NikkoHey bobfurgo,
Yes, please add this code at the bottom of your child theme’s functions.php:
function enfold_which_archive_output($output) { if ( is_category() ) { $output = __('Artists by starting with ','avia_framework').' '.single_cat_title('',false); } return $output; } add_filter('avf_which_archive_output', 'enfold_which_archive_output');Hope it helps.
Best regards,
NikkoHi Riccardo,
We’re glad to hear that :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi Playsystem,
I tried to recheck your site again, however, I could not access it.
Can you give us access again?Best regards,
NikkoHi Scott,
Can you create a staging server and give us wp-admin and FTP access?
We will need to further check on this issue on your server since I could not replicate this issue on my end.
Just post the details in private content.Best regards,
NikkoMarch 12, 2020 at 4:45 pm in reply to: Featured Image is not shown in category and deactivated Meta data is still shown #1192673Hi znello,
You’re welcome, you can disable the access to your site since it’s not needed anymore.
As for #2, I have checked the previous versions but I could not find what you mentioned, I just want to clarify if you are referring to Blog Posts element in the Advanced Layout Builder?Best regards,
NikkoMarch 12, 2020 at 4:37 pm in reply to: woocommerce plugin "my account page" – compatibility #1192670Hi Mayya,
We apologize for the delayed response.
Actually there are lots of plugins out there and we can’t test each one of them so unfortunately, we can’t answer which one of those are without any issues but we have made sure that Enfold is fully compatible with woocommerce but haven’t tested with each of its extensions. For now, I can only say that you stick with the current one you have since it’s an official extension to woocommerce.Best regards,
NikkoMarch 12, 2020 at 4:25 pm in reply to: Hide posts from specific categories from "You might also like" section #1192667Hi donnaschilder,
I apologize for the delayed response.
The “You might also like” section is not actually based on categories but based on tags, you can find its query in wp-content > themes > enfold > includes > related-posts.php (line 77-84):$my_query = get_posts( array( 'tag__in' => $tag_ids, 'post_type' => get_post_type($this_id), 'showposts'=>$postcount, 'ignore_sticky_posts'=>1, 'orderby'=>'rand', 'post__not_in' => array($this_id)) );based on what WordPress Codex describes in https://developer.wordpress.org/reference/functions/get_posts/
You can add another argument which is category, however I may need enough context to give the exact code that you need, since you may have multiple categories and if you only have a single category for example the current post is category 1 should it show just category 1 or show all categories except for category 3? and if you have a single category 3 in your current post which related post should it show?Best regards,
NikkoHi Hannah,
Can you give us a link to the page? you can just post in private content.
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,
NikkoMarch 10, 2020 at 1:05 pm in reply to: exclude the current post item from the masonry element #1191801Hi Alice,
We’re glad that we could help :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi mclweb,
Glad that Mike could help :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHey Gute,
Just use an icon and make sure that Icon Style is Default inline style
Hope this helps.Best regards,
NikkoHey beziehungvorerziehung,
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,
NikkoMarch 9, 2020 at 5:14 pm in reply to: Hide posts from specific categories from "You might also like" section #1191583Hey donnaschilder,
Can you give us more context on this? so we can accurately provide an answer to it.
Best regards,
NikkoHey kipperfletcher23,
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 jomtones,
Can you give us ftp access on your staging site as well?
Just post the credentials in private content.Best regards,
NikkoHey _riccardo_,
PHP ZipArchive Extension is disabled. Please enable this php extension on your site.
You can ask for your hosting provider for assistance.Best regards,
NikkoHey NorthcoastProject,
1. I think it too cumbersome to do that and would take a lot of time, you’ll know what I mean if you inspect the layerslider with web inspector. Layerslider isn’t developed by Kriesi but an independent plugin which is bundled to the theme, so we can’t really help further on this issue and is outside the scope of our support.
2. You can make use of Custom CSS classes or the take advantage of the current structure of the sections in Enfold, inside the sections there’s an inner div with a class of container.
Best regards,
NikkoHey Doris Kooper,
Thanks for contacting us!
I have forwarded your offer to Kriesi, if he is available or interested he will contact you.
Please wait for his response.Best regards,
Nikko -
AuthorPosts
