Forum Replies Created
-
AuthorPosts
-
Hey Fran!
Thank you for using Enfold.
Is the layer slider not working? You can just ignore the message for now. The latest version of the theme, 3.2, includes the latest version of the plugin. Please wait for that. The plugin is included in the theme package so you will not be able to update it manually. And you don’t have to buy the plugin. Who told you to buy it in the first place?
Best regards,
IsmaelHey!
The home page of the english language is set to the default editor. It is fixed now: http://orderflowtrading.net/
You have to sync or translate the main menu. https://wpml.org/documentation/getting-started-guide/translating-menus/
Best regards,
IsmaelHey mdmllc!
Thank you for using Enfold.
The footer height will depend on the content inside. The current height is quite normal for a 3 widget footer on mobile device. Having said that, you have to compress the footer widgets in order to decrease the height of the footer container. You can start by decreasing the font size, widget margins etc. Use css media queries. Example:
@media only screen and (max-width: 767px) { #footer .widget p { font-size: 11px !important; } #footer .widget { margin: 10px 0 5px 0; }}Regards,
IsmaelHey Jameel!
Thank you for using Enfold.
We already answered this inquiry before. Please avoid creating duplicated posts: https://kriesi.at/support/topic/multi-colored-nav-menu/
You can try this for the first two menus:
#top #wrap_all .av_seperator_big_border#header li#menu-item-31 > a, #top #wrap_all .av_seperator_big_border#header li#menu-item-31 > a > .avia-menu-text { background-color: red !important; color: white; } #top #wrap_all .av_seperator_big_border#header li#menu-item-30 > a, #top #wrap_all .av_seperator_big_border#header li#menu-item-30 > a > .avia-menu-text { background-color: blue !important; color: white; }As you can see the only difference in the css selectors are the menu id li#menu-item-30 and li#menu-item-31. You can do the same for the remaining menu items. Use google inspector or firebug to get the proper id.
Regards,
IsmaelHi Bubarama!
Thank you for using Enfold.
Please read the documentation carefully: http://kriesi.at/documentation/enfold/install-enfold-over-ftp/
And this article will help to get you started with Enfold: http://kriesi.at/archives/wordpress-beginners-how-to-start-with-enfold-from-scratch
Regards,
IsmaelHi!
@Muskrat37: What did you upgrade, the theme or WordPress? This issue should only happen once, when you update to WordPress 4.2 and then upgrade the theme to 3.1.4. On version 3.1.5, the sidebars should be intact unless you added special characters in the custom widget area name. Unfortunately, you can’t use the database to import the sidebar settings. We tried this method but failed.Regards,
IsmaelHi!
Since you delete the default blog page, the blog option in theme options panel has been reset to default. We set it again for you: http://bursttobright.com/blog/
Cheers!
IsmaelHi!
It’s not possible without modifying the core files. You can add the blog posts element and select categories or tag related to the current post. Set the layout to grid, limit the number of entries and disable the pagination. You should also enable the Offset Number to avoid duplicated post.
OR edit the template-builder.php, look for this code:
echo $content;Below, add this code:
//show related posts based on tags if there are any if(is_single()) get_template_part( 'includes/related-posts');Regards,
IsmaelHi jenki!
Thank you for using Enfold.
It’s not possible to stack another column in that space. You can try the Grid Row element instead. Set the cell size to 4/5, 1/5. Set the padding of the cells to 0 then place two 1/2 column layout inside the 4/5 cell. If you want more content below the 1/2 columns, just add another column. Since the grid row element is set to full width by default, you will need to adjust it using the Quick CSS field.
Best regards,
IsmaelHi!
Delete the functions-enfold.php file in the child theme and then try to copy the whole avia_post_nav function in the child theme’s functions.php file:
function avia_post_nav($same_category = false, $taxonomy = 'category') { global $wp_version; $settings = array(); $settings['same_category'] = $same_category; $settings['excluded_terms'] = ''; $settings['wpversion'] = $wp_version; //dont display if a fullscreen slider is available since they overlap if((class_exists('avia_sc_layerslider') && !empty(avia_sc_layerslider::$slide_count)) || class_exists('avia_sc_slider_full') && !empty(avia_sc_slider_full::$slide_count) ) $settings['is_fullwidth'] = true; $settings['type'] = get_post_type(); $settings['taxonomy'] = ($settings['type'] == 'portfolio') ? 'portfolio_entries' : $taxonomy; if(!is_singular() || is_post_type_hierarchical($settings['type'])) $settings['is_hierarchical'] = true; if($settings['type'] === 'topic' || $settings['type'] === 'reply') $settings['is_bbpress'] = true; $settings = apply_filters('avia_post_nav_settings', $settings); if(!empty($settings['is_bbpress']) || !empty($settings['is_hierarchical']) || !empty($settings['is_fullwidth'])) return; if(version_compare($settings['wpversion'], '3.8', '>=' )) { $entries['next'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); $entries['prev'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); } else { $entries['next'] = get_previous_post($settings['same_category']); $entries['prev'] = get_next_post($settings['same_category']); } $entries = apply_filters('avia_post_nav_entries', $entries, $settings); $output = ""; foreach ($entries as $key => $entry) { if(empty($entry)) continue; $the_title = isset($entry->av_custom_title) ? $entry->av_custom_title : avia_backend_truncate(get_the_title($entry->ID),75," "); $link = isset($entry->av_custom_link) ? $entry->av_custom_link : get_permalink($entry->ID); $image = isset($entry->av_custom_image) ? $entry->av_custom_image : get_the_post_thumbnail($entry->ID, 'thumbnail'); $tc1 = $tc2 = ""; $class = $image ? "with-image" : "without-image"; $output .= "<a class='avia-post-nav avia-post-{$key} {$class}' href='{$link}' >"; $output .= " <span class='label iconfont' ".av_icon_string($key)."></span>"; $output .= " <span class='entry-info-wrap'>"; $output .= " <span class='entry-info'>"; $tc1 = " <span class='entry-title'>{$the_title}</span>"; if($image) $tc2 = " <span class='entry-image'>{$image}</span>"; $output .= $key == 'prev' ? $tc1.$tc2 : $tc2.$tc1; $output .= " </span>"; $output .= " </span>"; $output .= "</a>"; } return $output; }Regards,
IsmaelHey!
I want to check it but I get a forbidden error when I tried to access the wp dashboard. Please check.
Best regards,
IsmaelHey!
Where can we find the actual page? I checked the site above (http://sundaradesign.com.au/) but it’s not using Enfold.Alright. I find the correct url but it is on maintenance mode. You also forgot the username.
Best regards,
IsmaelHi!
You can add this in the Quick CSS field to keep them from overlapping on smaller screens.
@media only screen and (max-width: 767px) { .av-catalogue-title, .av-catalogue-price { position: relative; }}You can also decrease the font size.
Cheers!
IsmaelJune 3, 2015 at 3:36 pm in reply to: Please help with Layout, I want to post a banner at the top! #453857Hi!
You can try the “avia_meta_header” action hook. Make sure that the top header is enabled or at least you have something enabled on Header > Extra Elements panel. Provide the url to the website so that we can see it.
Cheers!
IsmaelHey!
If you want to add all thumbnails in the drop down list, you can edit functions.php. Look for this code:
$avia_config['selectableImgSize'] = array( 'square' => __('Square','avia_framework'), 'featured' => __('Featured Thin','avia_framework'), 'featured_large' => __('Featured Large','avia_framework'), 'portfolio' => __('Portfolio','avia_framework'), 'gallery' => __('Gallery','avia_framework'), 'entry_with_sidebar' => __('Entry with Sidebar','avia_framework'), 'entry_without_sidebar' => __('Entry without Sidebar','avia_framework'), 'extra_large' => __('Fullscreen Sections/Sliders','avia_framework'), );Above that, you can find the list of thumbnails available in the theme. You can register the other thumbnails in the $avia_config[‘selectableImgSize’] array.
Best regards,
IsmaelHey cooperjitts!
Thank you for using Enfold.
Edit the slides then click the “Select Transition” > “3D” tab, disable the 3D effects. The 3D effects are currently enabled for all slides.
Regards,
IsmaelHi scotthco!
Thank you for using Enfold.
Please add this to the Quick CSS field to fix the overlay on IE8:
.avia-msie-8 .av-section-color-overlay { opacity: .5; }Remove browser cache then reload the page.
Cheers!
IsmaelHey!
You can remove the plugin cache on Settings > WP Super Cache > Delete Cached Pages panel. Please check it now: http://personalhistorystories.com/
This the code in the Quick CSS field:
@media only screen and (max-width: 768px) { .responsive #top .slideshow_caption { display: none !important; }}Cheers!
IsmaelJune 3, 2015 at 3:12 pm in reply to: Google Verification: "Eliminate render-blocking JavaScript and CSS #453820Hi satucker!
Thank you for using Enfold.
Those files are necessary to load first before the content to render the page properly so you just to need to ignore that error. You can install a cache and a minify plugin to compress some of the scripts to get rid of some of the errors. https://kriesi.at/support/topic/page-speed-problems/
Regards,
IsmaelHey!
I think it’s best if you contact your hosting provider regarding the issue. This is clearly a server related issue so their help will be substantial. Anyway, if you can increase the wp memory limit, it might help. Please refer to this link: http://www.wpbeginner.com/wp-tutorials/fix-wordpress-memory-exhausted-error-increase-php-memory/
Best regards,
IsmaelJune 3, 2015 at 2:55 pm in reply to: WooCommerce product price on single page not showing with advanced editor #453805Hi!
You can modify the template-builder.php. This is the file responsible for the advance layout builder. You can use conditional functions so that your modifications will only affect the product pages. Please contact codeable for further modifications: http://kriesi.at/contact/customization
Cheers!
IsmaelJune 3, 2015 at 2:49 pm in reply to: Portfolio: Only show items from one category by default #453791Hi!
Yes, you can use any section name. Make sure that it is unique and doesn’t contain any special characters.
Regards,
IsmaelHey!
https://kriesi.at/support/topic/layerslider-doesnt-work-shown/#post-451949
I tried the login credentials above but I can’t login to the site, too. Please contact your hosting provider. Or create another admin user.
Cheers!
IsmaelHey anubis!
Thank you for using Enfold.
I’m not sure where exactly Kriesi got that picture but you can find free stock photos here:
http://www.gratisography.com/
https://unsplash.com/
https://stocksnap.io/
http://littlevisuals.co/Regards,
IsmaelJune 3, 2015 at 2:24 pm in reply to: Large Social Icons like at the bottom of One Page Portfolio Demo #453760Hi!
Use the Icon element then set the Icon Style to the second option.
Cheers!
IsmaelJune 2, 2015 at 11:20 am in reply to: AviaLayoutArchitect: Post-Slideshow-element – how to show popular instead of new #453072Hey COLORIT!
Thank you for using Enfold.
Popularity can be based on different criteria. Are you trying to show posts with the most views, most comments or etc? As you can see, there is no default option for that in the theme so this will be considered as a custom work. The only element that is closest to what you’re trying to achieve is the Enfold Combo Widget which contains a Popular posts tab base on the number of comments of a post. Try to look for a plugin like this: https://wordpress.org/plugins/wordpress-popular-posts/
Cheers!
IsmaelHey dburton77!
Thank you for using Enfold.
You can try this:
.page-id-1325 #main { background: url("//utah.momentumrecycling.com/wp-content/uploads/2015/06/grp-bg.jpg") repeat; background-color: transparent; } .page-id-1325 .main_color { background-color: transparent; }Regards,
IsmaelJune 2, 2015 at 11:10 am in reply to: I want my main page to be a blank page with background and text #453068 -
AuthorPosts
