Forum Replies Created
-
AuthorPosts
-
Hey DROR!
Thank you for using Enfold.
Try this in the Quick CSS field:
#top .form-row .input-checkbox { position: relative; right: -215px; }
Regards,
IsmaelHey nullhorn!
Thank you for using Enfold.
You can modify the main menu style on Enfold > Advanced Styling panel. Edit the Main Menu Links element.
Cheers!
IsmaelHey!
I’m sorry but it’s not possible to insert post or custom post types inside another post. The blog posts element might work but you have to use a unique category for the single portfolio item. Maybe, a plugin will do the trick: https://wordpress.org/plugins/xili-postinpost/
Note that this plugin will only work for the default posts so custom post types such as the portfolio item is out of the question. The plugin shortcode doesn’t render the theme’s shortcode (gallery etc) so you have to use the plugin’s widget. On the actual post, use the Widget Area element to display the plugin widget.
Best regards,
IsmaelHi garamaleki!
Thank you for using Enfold.
Edit the product then go to the Variations panel. Look for the Defaults: [?] option. Select the variation that you want to show as default.
Regards,
IsmaelHey Magellan!
Thank you for using Enfold.
You don’t need to add the code above if you use the more tag inside the post. The code will render the more tag useless because it will fetch the entire post content instead.
Best regards,
IsmaelHey!
This will require another template, to be specific, another loop-index.php or single.php whatever direction you choose. Use conditional function inside the file. OR add this in the functions.php file:
add_action('template_include', 'load_single_template'); function load_single_template($template) { $new_template = ''; // single post template if( is_single() ) { global $post; // 'cat1' and 'cat2' are category slugs if( has_term('cat1', 'category', $post) ) { // use template file single-cat1-template.php $new_template = locate_template(array('single-cat1-template.php' )); } if( has_term('cat2', 'category', $post) ) { // use template file single-cat2-template.php $new_template = locate_template(array('single-cat2-template.php' )); } } return ('' != $new_template) ? $new_template : $template; }
Create a file called single-cat1-template.php for the cat1 category. Do the same for cat2 category.
Best regards,
IsmaelHey!
I haven’t done anything yet. Is the sidebars OK now? I don’t want to login unless the sidebars are OK. Did you update the theme?
Cheers!
IsmaelMay 1, 2015 at 10:03 am in reply to: Every Enfold photo gallery not working after theme and WP update – HELP! #437945Hey!
I checked the site but it’s on maintenance mode. I can see some errors on the console coming from a plugin, I guess, called shadowbox. Is that a plugin on your installation?
Regards,
IsmaelMay 1, 2015 at 10:01 am in reply to: Disable parallax effect on fullscreen slider for all browsers #437944Hey LaNeraNura!
Thank you for using Enfold. :)
Add this in the Quick CSS field if you want to disable parallax effect:
ul.avia-slideshow-inner { transform: translate3d(0px, 0px, 0px) !important; }
Regards,
IsmaelHi!
Please check the page now. Adjust the padding if the menu items fall out of the menu container at certain browser width.
Best regards,
IsmaelHey steviger!
Thank you for using Enfold.
After you make the changes in the .po file, you need to compile it in order to create a .mo file. Use the POEdit software:
https://wordpress.org/plugins/poeditor/
https://poedit.net/wordpressBest regards,
IsmaelHey Guilherme!
Thank you for using Enfold.
The menu is not ordinary but not impossible. Unfortunately, that will require custom modifications that we can’t provide here. Is the site live? Please post it here. We would like to take a look. Maybe, you can start by switching the layout to boxed. Most header elements can be found inside the includes > helper-main-menu.php file. Hire a freelance developer to modify it.
Cheers!
IsmaelHey!
Please post the login details here. Did you replace the line of code or did you just copy the new code?
Best regards,
IsmaelHey endoradigital!
Thank you for using Enfold.
Edit functions.php, add this below below line 16 or 17:
add_filter( 'avf_google_content_font', 'avia_add_content_font'); function avia_add_content_font($fonts) { $fonts['Muli'] = 'Muli:300,400,300italic,400italic'; return $fonts; }
Best regards,
IsmaelHey!
Thank you for the screenshot. The only issue there is the misplaced avia-menu-fx or line below the menu item. You can add the css above to fix it.
Cheers!
IsmaelHey bramblejam!
Thank you for using Enfold.
Please update the theme to 3.1.5. That should fix the issue.
Regards,
IsmaelHi!
Thank you for using Enfold.
Use this to disable the arrow:
.socket_color .avia-bullet { display: none; }
And this to fix the border:
#socket .container { top: 1px; }
Best regards,
IsmaelHey ccarberg!
Thank you for using Enfold.
What is the current version of Enfold on your installation? Please update to version 3.1.4.
Best regards,
IsmaelApril 30, 2015 at 11:54 am in reply to: Enfold theme – homepage always refreshing…can't edit #437337Hi safauset!
I’m sorry that you’re having this issue. What do you mean by “refreshing”? It reverts back? Please try to increase the wp memory limit to at least 128M: http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Best regards,
IsmaelHi davidesieb!
Thank you for using Enfold.
This is fixed on the latest update of the theme. Please upgrade to 3.1.4.
Cheers!
IsmaelHey!
Adjust the gap with this on the Quick CSS field:
.av-large-gap.av-fixed-size .av-masonry-entry .av-inner-masonry { right: 30px; bottom: 30px; }
Best regards,
IsmaelHi edinc79!
Thank you for using Enfold.
There is no link for individual feature request. Only the Popular requests are being taken into consideration so there’s no point to check the request if they are not included in the popular category. If you want to add or edit anything on your previous post, you need to make a new request: https://kriesi.at/support/enfold-feature-requests/
Cheers!
IsmaelHey!
You can increase the max width of the post content:
#top .fullsize .template-blog .post .entry-content-wrapper > * { max-width: 800px; }
Note that the content will inherit the size of the column width regardless of the max width value.
Cheers!
IsmaelHey!
Works fine on our installation. Please post the login details here. We’ll create an example.
Regards,
IsmaelHey!
I think a plugin or a custom script is causing the issue. When I checked the fifth column, a css inline styling is being applied to the widget when you decrease the browser size:
<section id="nav_menu-3" class="widget clearfix widget_nav_menu" style="position: fixed; width: 180px; bottom: 2929px;">
The bottom property pushes the widget content out of nowhere. It also creates a clone:
<section id="nav_menu-3_clone" class="widget clearfix widget_nav_menu q2w3-widget-clone-sidebar-10" style="height: 155px; visibility: hidden;"></section>
Please deactivate the plugin.
Regards,
IsmaelApril 30, 2015 at 11:10 am in reply to: URGENT – Theme causing WooCommerce product not to display #437315Hey tremblayly!
Thank you for using Enfold.
There’s an internal server error when I checked the page. I noticed that there are tons of plugins installed in the site, total of 45. Do you really use all those plugins? Please deactivate all plugins except for woocommerce then activate them one at a time to find the culprit. Please contact your hosting provider for more info concerning the internal server error issue.
Regards,
IsmaelHey!
Yes, you can add your own thumbnail size or use the existing thumbnail sizes. Regenerate the thumbnails afterwards. http://wordpress.org/extend/plugins/regenerate-thumbnails/
Cheers!
IsmaelApril 30, 2015 at 10:42 am in reply to: Enfold Google Maps Widget: Rand zu Widget-Titel zu klein #437298Hey aebli!
Thank you for using Enfold.
Please give us a link to the actual page. We would like to check it. Try to add a text widget above the map widget then add br tags as content or use the separator / whitespace shortcode.
Regards,
Ismael -
AuthorPosts