Forum Replies Created
-
AuthorPosts
-
Hi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
@media only screen and (max-width: 800px) { .content { width: 100% !important; border: none !important; } }Best regards,
YigitHi,
Please point out the page where you are having this issue. It seems like it is currently disabled. We are going to need to see the issue to provide you an accurate solution.
Best regards,
YigitMerhabalar,
Dosyalara mudahaleden ote Functions.php dosyasina yapmak istediginiz degisiklikleri kondisyonlu bir sekilde ekleyebilirsiniz – https://developer.wordpress.org/reference/functions/is_page/. Sayfalariniz dongulerle olusturuluyor ve her sayfa icin ayri bir dosya yok. Ekran goruntuleriyle gosterebilirseniz yapmak istediginiz degisiklikleri daha saglikli yardimci olabilirim :)
Regards,
YigitHi,
Glad you figured it out! :)
For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)Best regards,
YigitNovember 20, 2017 at 12:28 pm in reply to: Special characters font problem and disabling navigation in ajax portfolio #879074Hey,
1- Please try adding following code to Functions.php file in Appearance > Editor
function add_subset_func($fontlist) { $fontlist .= "&subset=latin,latin-ext"; return $fontlist; } add_filter('avf_google_fontlist', 'add_subset_func');2- Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
a.ajax_previous, a.ajax_next { display: none; }I was not able to login to your site due to IP restriction you have. If solutions above do not work for you, please disable restriction temporarily so we can look into it :)
Best regards,
YigitHi,
You are welcome! :)
For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)Best regards,
YigitHi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
.menyfelt a:hover { color: #fd0101!important; }Best regards,
YigitHi,
I went to Settings > Reading and deselected your front page and blog page and only chose them in Enfold theme options. Now you can go to Enfold theme options > Blog Layout > Blog Layout and choose to use Advanced Layout Builder.
Best regards,
YigitHey,
You can choose your frontpage and blog page in Enfold theme options as well :)
Let us know if you have any other questions or issues!
Cheers!
YigitHey!
You can disable it in Enfold theme options > Advanced Styling > Linked image overlays :)
Best regards,
YigitHey Peter,
Thanks for contacting us!
Yes, you can use the same license on your local installation and on your live server :)
Let us know if you have any other questions!
Regards,
YigitP.S.: If you would like to receive replies in German, please let us know so our German speaking moderators can help :)
Hey jelle,
We would recommend you to use Masonry Gallery element instead – https://kriesi.at/themes/enfold-2017/elements/masonry-gallery/. You would avoid having whitespace problems :)
Best regards,
YigitHi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
#top .fullsize .template-blog .post-meta-infos { display: none; }Best regards,
YigitHey Kristofer,
We would be glad to help you with this customization, but at the moment there is no easy way to do this by using a small custom code snippet, so I am afraid its out of the scope of our support.
But please feel free to request such feature at our feature request system: https://kriesi.at/support/enfold-feature-requests/
This system allows us to keep track of user suggestions and lets you vote on the feature you would like to see the most. I am afraid though there is no guarantee that a feature will get implemented. If that’s something you really need you can always try to hire a developer for the task :)
Best regards,
YigitHi Andi,
I believe your teammate clicked “reset all options” button instead of “save” button, is that correct?
You can simply overwrite /wp-content/uploads/dynamic_avia/{sitename}.css file, refresh your page and then save in Enfold theme options and that should work :)Best regards,
YigitHey,
Yes, that would be the correct class. It seems like you figured it out already though. Shall we mark the thread as resolved? :)
Best regards,
YigitHey,
Since download and purchase processes are managed by Envato, we are not able to provide you any discount unfortunately. However, please contact Envato support team and ask if it would be possible for you to get a discount if you make a bulk purchase :)
Best regards,
YigitHi Isabella,
Thanks for contacting us!
Sure! You can go to – https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990?ref=Kriesi to purchase more licenses :)
Let us know if you have any other questions and enjoy your weekend!
Cheers!
YigitHi,
You are welcome! :)
For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)Best regards,
YigitHi,
You are welcome! :)
For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)Best regards,
YigitHi,
Thanks for the clear instructions!
It seems like some files were not updated correctly. I re-updated the theme and it worked. Please review your website :)
Best regards,
YigitHi,
My bad. Please use following code instead
h2.woocommerce-loop-product__title { font-size: 50px!important; }Best regards,
YigitHi,
Yes, your settings will be kept. If you have made any changes on parent theme files, they will be overwritten. If you have, please firstly apply those changes on a child theme – kriesi.at/documentation/enfold/using-a-child-theme/
Best regards,
YigitNovember 16, 2017 at 11:02 pm in reply to: Footer.php, some help to add an "php if language" #877817Hi,
Please use the code as following
<?php if(ICL_LANGUAGE_CODE=='fr'){ echo 'Link A'; } if(ICL_LANGUAGE_CODE=='en'){ echo 'Link B'; } if(ICL_LANGUAGE_CODE=='nl'){ echo 'Link C'; } if(ICL_LANGUAGE_CODE=='de'){ echo 'Link D'; } ?>Tested :)
Best regards,
YigitNovember 16, 2017 at 10:48 pm in reply to: WooCommerce notice indicates that your theme contains outdated copies #877809Hi,
You can simply zip that Enfold folder (2nd from top) and upload it :)
Best regards,
YigitHi,
Please try using this code
.header_color .cart_dropdown_first .cart_dropdown_link { background: red; }If that too does not help, please elaborate on the changes you would like to make.
Best regards,
YigitNovember 16, 2017 at 10:22 pm in reply to: WooCommerce notice indicates that your theme contains outdated copies #877794Hi!
Please make sure you download Installable WordPress file only – https://i.imgur.com/2B4H4zm.png :)
Regards,
YigitHey Ray,
Please try this plugin to clear WordPress transients if you do not receive auto updates and make sure your API key is correct: https://wordpress.org/plugins/artiss-transient-cleaner/.
If it does not help, I am afraid you might need to update the theme manually – http://kriesi.at/documentation/enfold/updating-your-theme-files/
Unfortunately not all Server environments are able to make use of the auto update feature provided by ThemeForest
Best regards,
Yigit -
AuthorPosts
