Forum Replies Created
-
AuthorPosts
-
Hey craigriches,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
#footer #text-5 .avia-button-wrap { float: left; }It seems to be center aligned but css code should fix it
Best regards,
YigitHey
Please use a child theme – http://kriesi.at/documentation/enfold/using-a-child-theme/ and add following code to Functions.php file of your child theme
add_filter( 'avia_post_nav_entries', 'enfold_customization_postnav', 10, 2); function enfold_customization_postnav($entries, $settings) { $entries['next'] = get_next_post($settings['same_category']); $entries['prev'] = get_previous_post($settings['same_category']); return $entries; }Best regards,
YigitHi,
You can find the code in enfold/css/layout.css file.
We would recommend you to use a child theme – http://kriesi.at/documentation/enfold/using-a-child-theme/ and then copy the file into your child theme inside /css/ folder and add following code to functions.php file of your child themeadd_action( 'wp_enqueue_scripts', 'wp_change_layoutcss', 20 ); function wp_change_layoutcss() { wp_dequeue_style( 'avia-layout' ); wp_enqueue_style( 'avia-layout-child', get_stylesheet_directory_uri().'/css/layout.css' ); }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 post them here on the forum and we will gladly try to help you :)Best regards,
YigitHi,
Please feel free to request – or vote if already requested – such feature on Enfold feature request form.
Best regards,
YigitFebruary 15, 2017 at 5:38 pm in reply to: ENFOLD Page Templates are showing up in Google Search #747562Hi,
Please go to Portfolio Items > Portfolio Categories and remove those categories
Best regards,
YigitHi,
You are using WordPress’ widget therefore we cannot help you much. Please consider using Enfold’s Latest News widget or a plugin such as this one – https://wordpress.org/plugins/recent-posts-widget-extended/
Best regards,
YigitHey!
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 post them here on the forum and we will gladly try to help you :)Best regards,
YigitHi Erin
Thanks for contacting us!
Enfold uses standard php mail function and unfortunately sent mails are not stored.
Let us know if you have any other questions!
Cheers!
YigitFebruary 15, 2017 at 5:29 pm in reply to: Why there is excerpt text displayed only in one post in the author view? #747556Hey pimroll!
Please edit your blog posts and click “Screen options” on the top right corner and check “excerpt” and then scroll below and insert your excerpt in “excerpt” field :)
Best regards,
YigitHey!
Exactly and then you should make sure the link in your menu is #solobus-verkehrsseite-hinten as well :)
Regards,
YigitFebruary 15, 2017 at 5:11 pm in reply to: How can I display only the list of blog posts when someone clicks on the tag #747547Hi,
Try the following:
1. Install this plugin: https://wordpress.org/plugins/simple-image-sizes/
2. Go to Settings > Media
3. Change theportfolioimage size (increase its width / height).
4. Regenerate the thumbnails by clicking the button at the bottom.Best regards,
YigitHi Monique!
Yes, it is perfectly fine to move the code to style.css file of your child theme.
You are welcome! Let us know if you have any other questions or issues :)
Cheers!
YigitHi,
It seems like you are using Advanced Layout Builder to create your blog posts. You can simply edit your text block elements and increase their font sizes. Or you can use following code instead
.single-post p, .single-post li { font-size: 16px; }Best regards,
YigitFebruary 15, 2017 at 5:02 pm in reply to: How can I display only the list of blog posts when someone clicks on the tag #747538Hi!
Yes, you can add following code to Functions.php file in Appearance > Editor
add_filter('avf_blog_style','avia_change_tag_blog_layout', 10, 2); function avia_change_tag_blog_layout($layout, $context){ if($context == 'tag') $layout = 'blog-grid'; return $layout; }Regards,
YigitHey!
You forgot to change ID in the code i posted. It was “custom-anchor” while it should be “solobus” :)
Cheers!
YigitHi,
Please enable the custom css class field: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and then edit your slider and give it a custom class (“your-custom-class” in example below) and use the code as following
.your-custom-class img { border-radius: 25px !important;}
@begrafiks Thanks as always! :)Best regards,
YigitFebruary 15, 2017 at 4:58 pm in reply to: Enfold Partner/Logo Element – Padding after each row #747530Hey!
It should have worked. Could you please register to our support forum and then post WP admin logins here privately after logging in so we can look into it?
Best regards,
YigitHi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
.avia-content-slider .slide-entry-title { font-size: 20px; }Best regards,
YigitHey Monique,
I added following code to Quick CSS in Enfold theme options under General Styling tab
html[lang="en-GB"] .only-nl { display: none !important; } html[lang="nl-NL"] .only-en { display: none !important; }and inserted your text as following
Best regards,
YigitFebruary 15, 2017 at 4:41 pm in reply to: How can I display only the list of blog posts when someone clicks on the tag #747520Hi,
I am not sure if i understood you clearly as clicking tags goes to tag archive on my end. If you would like to change tag archive style, please refer to this post – http://kriesi.at/documentation/enfold/change-archive-categorytag-blog-style/
Best regards,
YigitFebruary 15, 2017 at 4:38 pm in reply to: Advanced Custom Fields don't show on pages, posts etc #747517Hey Designweb!
You should edit theme files and add your code into where you would like to display your custom field. Please refer to this post – https://www.advancedcustomfields.com/resources/get_field/
Regards,
YigitHi!
Can you please create a temporary admin login and post it here privately so we can look into it?
Cheers!
YigitFebruary 15, 2017 at 4:27 pm in reply to: Enfold Partner/Logo Element – Padding after each row #747513Hey Christophe Demaer,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
#top .avia-logo-element-container .slide-entry { padding-bottom: 30px; }If you have any other questions or issues, please register to our forum – https://kriesi.at/support/register/ and start a new thread under Enfold sub forum :)
Best regards,
YigitHey!
Please add code block to the top of your 1/1 column element and insert following inside it
<div id="custom-anchor"></div> <style> #custom-anchor { clear: both; } </style>Regards,
YigitFebruary 15, 2017 at 2:14 pm in reply to: Button-Settings, no links, issue Enfold 3.8.5 WP 4.7.2 #747481Hey!
Glad you figured it out!
As mentioned in other thread, upcoming Enfold update will fix the issue :)
Let us know if you have any other questions or issuesBest regards,
YigitHi!
You are welcome! Glad you liked it :)
Let us know if you have any other questions!
Cheers!
YigitHi,
I tried to create a testing page using masonry element on this site and could not reproduce the issue. Have you figured it out already?
If not, please try de-activating all active plugins and check if that helps.Best regards,
Yigit -
AuthorPosts
