Forum Replies Created
-
AuthorPosts
-
Hi,
Setting a specific height for the slider will create black spaces on both sides of the main container. Is that ok? Please add this in the Quick CSS field.
#player_734_1843070160_832626560 { max-height: 400px !important; top: 0 !important; }Best regards,
IsmaelHi,
Thanks for sharing. Please request or upvote the feature here: https://kriesi.at/support/enfold-feature-requests/
Best regards,
IsmaelJanuary 16, 2017 at 6:44 am in reply to: Menü + Untermenü ohne hover in Photography Demo / submenu in photography demo #733895Hi,
Have you tried the Custom Menu widget in the Appearance > Widgets panel? Or you can install the following plugins.
// https://wordpress.org/plugins/easy-sidebar-menu-widget/
// https://wordpress.org/plugins/advanced-sidebar-menu/Best regards,
IsmaelJanuary 16, 2017 at 5:22 am in reply to: How to allow image to be enlarged on product screen #733875Hi,
Thank you for using Enfold.
In the product editor, have you tried adding more product images in the Product Gallery metabox? This will create a product gallery and users can click on the thumbnails to enlarge or open it inside a lightbox displaying the larger version of the thumbnail.
Best regards,
IsmaelHey Kathy,
Thank you for using Enfold.
The related posts are items with the same tags as the current posts. You need to modify the includes > related-posts.php file if you want to increase the number of items. Look for this line and increase the value of the columns parameter.
if(!isset($avia_config['related_posts_config'])) { $avia_config['related_posts_config'] = array( 'columns' => 8, 'post_class' => "av_one_eighth no_margin ", 'image_size' => 'square', 'tooltip' => true, 'title_short'=> false ); if($rp == "av-related-style-full") { $avia_config['related_posts_config'] = array( 'columns' => 6, 'post_class' => "av_one_half no_margin ", 'image_size' => 'square', 'tooltip' => false, 'title_short'=> true ); } }Best regards,
IsmaelHi,
Please add this in the functions.php file.
//portfolio query add_filter( 'avia_post_grid_query', 'avia_post_grid_query_mod', 10, 2); function avia_post_grid_query_mod( $query, $params ) { $query['orderby'] = 'date'; $query['order'] = 'DESC'; return $query; }Adjust the value as needed.
// https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters
Best regards,
IsmaelHi,
Please continue here: https://kriesi.at/support/topic/problems-after-update-2/#post-733866
Best regards,
IsmaelHi!
We reset the Enfold > General Layout > Dimensions > Maximum Container width option. Please remove browser cache or hard refresh before checking the page.
Cheers!
IsmaelHi,
Thank you for the screenshots.
The slider is responsive in a way that the background image covers the whole slider container and the aspect ratio kept regardless of the screen size. The only issue is that some parts of the images may not be in view within the background positioning area on smaller screens. We can set the background size property to 100% but it will distort the images. Please edit the slider images then set the Image Position settings accordingly. The best option is “Center Center”.
Best regards,
IsmaelJanuary 16, 2017 at 4:53 am in reply to: Avia page builder and WP visual editor / text editor not working #733864Hi,
We saw a lot of errors in the console when we accessed the advance layout builder. Some of the files do not exist or cached. Please post the content of the .htaccess file on pastebin.com. We would like to check it. And if possible, please deactivate every plugins, see if it fixes the issue.
Best regards,
IsmaelHi,
Please add this in the functions.php file.
add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 9999, 1); function avf_header_setting_filter_mod($header) { $header['header_title_bar'] = ''; return $header; }This will enable the title container even if the Logo and Main Menu settings is set to left or right sidebar.
Best regards,
IsmaelHi,
This is possible but you have to modify one of the parent theme files. Edit the framework > php > class-framework-widgets.php file then look for this code around line 484:
$new_query = array("posts_per_page"=>$count,"post_type"=>$this->avia_post_type);.. replace it with:
$new_query = array("orderby" => "date", "order" => "ASC", "posts_per_page"=>$count,"post_type"=>$this->avia_post_type);Best regards,
IsmaelJanuary 16, 2017 at 4:20 am in reply to: Enfold – previous and next product-page arrows on posts to navigate to products #733858Hi,
Please add this code in the functions.php file:
add_filter('avia_post_nav_settings', 'avia_post_nav_settings_mod'); function avia_post_nav_settings_mod($settings) { if(is_singular('product')) { $settings['taxonomy'] = 'product_cat'; $settings['is_fullwidth'] = false; } $settings['same_category'] = true; return $settings; }Best regards,
IsmaelHi,
Thank you for the info.
We set the Style > Left position value of the layer to “-380px”.
Best regards,
IsmaelJanuary 16, 2017 at 4:13 am in reply to: Specify font size for only blog index and blog posts #733856Hey seykom,
Thank you for using Enfold.
1.) You can define the image size in the slider’s Slideshow Image and Video Size settings. However, uploading images with the same dimension is still the best solution.
2.) Where can we find the gallery? Are you using the theme’s gallery element?
3.) Go to the Enfold > Advanced Styling panel and edit the Main Menu Links element. If you want to enlarge the logo, you have to increase the size of the header itself. You can do it in the Enfold > Header > Header layout panel. Set the Header Size settings accordingly.
4.) In the Appearance > Menus panel, replace the menu item with a Custom Link. Use the hashtag (#) symbol as the url.
5.) Please add this in the Quick CSS field.
.main_color .avia-content-slider .slide-image { background: transparent; }In the future, please create a single topic or thread for each inquiry. Thank you.
Best regards,
IsmaelHi,
1: We can move the code from Quick CSS field to our child-themes CSS-file?
1.) Do you mean the child theme’s style.css file? Yes, you can move the css modifications there.
2: On a mobile the heading of the description is chopped off. I guess its more a question of the height of the color section. Is that correct? can you please point me in the right direction?
2.) The minimum height of the slider can be adjusted on mobile view. This will create more space for the title and captions.
// https://kriesi.at/support/topic/logo-section-overlapping-full-length-slider/#post-722773
// https://kriesi.at/support/topic/how-to-add-cta-button-into-the-slider/#post-722308Best regards,
IsmaelJanuary 16, 2017 at 3:58 am in reply to: Category in blog post, add it and delete it from the main blog page #733852Hi,
Are you using the advance layout builder for the post? The elements such as the category, post title and other default post elements will not be included in the template if you’re using the advance layout builder.
Best regards,
IsmaelHi!
In the single-event.php file, you can add it below this container.
<div id="tribe-events-content" class="tribe-events-single vevent hentry"> <p class="tribe-events-back"><a href="<?php echo tribe_get_events_link() ?>"> <?php _e( '« All Events', 'avia_framework' ) ?></a></p>And look for this line in the default-template.php file.
<div id="tribe-events-pg-template">Add the shortcode below and don’t forget to wrap it inside a php tag.
Best regards,
IsmaelHi,
Thank you for using Enfold.
You have to modify the archive.php template file if you want to add the submenu element in the category pages. Use the do_shortcode function in combination with the full width sub menu element shortcode.
// https://developer.wordpress.org/reference/functions/do_shortcode/
Example:
echo do_shortcode("[av_submenu which_menu='center' menu='' position='center' color='main_color' sticky='true' mobile='disabled' mobile_submenu=''][av_submenu_item title='Menu Item 1'][av_submenu_item title='Menu Item 2'] [/av_submenu]");Best regards,
IsmaelHi,
Do you see any errors after uploading an image? Please send a screenshot of the issue and provide the server info (php version, os etc).
Best regards,
IsmaelHi,
The posts are displaying even if I set the blog style differently.
// https://www.chosenpeople.com/site/resources/videos/
Best regards,
IsmaelJanuary 14, 2017 at 6:36 am in reply to: Blog pages do not show blog category title nor description #733464Hi,
The archive or category pages will display a title container by default if the Enfold > Header > Header Layout > Header Title and Breadcrumbs settings is enabled.
Best regards,
IsmaelHi,
A few of the sections are outside the main or wrap_all container, thus breaks the responsive layout of the page. Please make sure that all elements or set of elements are inside their own color section. If you’re not sure what to do, please post the login details here so that we can edit the page.
Best regards,
IsmaelHi,
Is that a custom post type? How did you register it? Please set the rewrite > with_front parameter to false.
// https://codex.wordpress.org/Function_Reference/register_post_type#Parameters
Best regards,
IsmaelHi,
I can’t reproduce the scroll bar issue but the sticky contact form is located below the footer on IE 8, Windows 7. Please try this css modification in the Quick CSS field:
.avia-msie .wpcs-slide-out-div { line-height: 1; position: fixed; z-index: 999999999; height: 487px; top: 10%; right: -461px; }Or this code to completely hide it on IE.
.avia-msie .wpcs-slide-out-div { display: none !important; }Best regards,
IsmaelJanuary 14, 2017 at 6:19 am in reply to: Date and Author Missing from single post with Grid View #733454Hi,
I checked the site again today and every posts have the author info. Is this fixed?
Best regards,
IsmaelHi,
Thank you for the update. Please add this css code inside the css media query that we created before.
.av-caption-image-overlay-bg { background-color: transparent !important; opacity: 0 !important; }This code will remove the background color of the overlay but it won’t affect the actual caption.
Best regards,
IsmaelHey thatcommsguy,
Thank you for using Enfold.
Please edit the templates inside the config-events-calendar > views folder. Add the do_shortcode function in combination with the full width sub menu shortcode.
// https://developer.wordpress.org/reference/functions/do_shortcode/
Example:
echo do_shortcode("[av_submenu which_menu='center' menu='' position='center' color='main_color' sticky='true' mobile='disabled' mobile_submenu=''][av_submenu_item title='Menu Item 1'][av_submenu_item title='Menu Item 2'] [/av_submenu]");Best regards,
IsmaelHi,
Please look for the nb_No.po file inside the enfold > lang folder then look for the strings “Bottom Right”, “Bottom Left” etc. Let us know if the translations are correct. If the text are not properly translation, install the following plugin.
// https://wordpress.org/plugins/loco-translate/
Best regards,
Ismael -
AuthorPosts
