Forum Replies Created
-
AuthorPosts
-
Hi,
Thanks for the update.
Have you tried indexing the posts using the SearchWP plugin? You need to add this filter in the functions.php file in order to set or change the default function from get_posts to the actual function used by the plugin to fetch the posts. An implementation for the Relevanssi plugin is also available in that section.
// https://kriesi.at/documentation/enfold/search/#use-searchwp-instead-of-the-standard-search
Best regards,
IsmaelHi,
Thanks for the update.
Did you set the blog page in the Enfold > Theme Options? You should set the blog page there and reset the Settings > Reading options back to default. The default widgets will display if the respective widget areas are empty. It doesn’t really make sense to have a sidebar if you’re not going to place any widgets or content in it, so the theme auto populates that container when it’s empty.
Best regards,
IsmaelHi,
Thanks for the update.
You can choose either of the two editors if you don’t want to use the ALB for your posts. It’s your choice, but a lot of users prefer the classic or the old editor. You can adjust the editor in the Enfold > Theme Options panel. Look for the “Select your editor” settings.
That is the default layout in the single post template. We suggested a css code that can remove that image.
.small-preview { display: none !important; }It’s already added in the Quick CSS field.
Best regards,
IsmaelHey NHAT TAN!
Thank you for usiing Enfold.
What do you mean by “code blog”? How would you like that section to look like? Please provide a mock up or a screenshot of the expected layout.
Best regards,
IsmaelHi,
Thanks for the update.
The image is center aligned on Chrome, Windows 8. You’re probably looking on a cached version of the page. Try to remove the browser history before checking the page.
Best regards,
IsmaelApril 30, 2019 at 2:27 pm in reply to: Update Failed: Download failed. A valid URL was not provided. #1095769Hey Louise_Brace,
Thanks for the update.
The current version of the theme in the site contains a deprecated version of the automatic update, so it will no longer work properly. You have to update the theme manually this time. More info about that in the documentation.
// https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
A short read about updating.
// https://kriesi.at/archives/the-complete-guide-to-updating-enfold
Best regards,
IsmaelHey jonrouse,
Thanks for the update.
We could not reproduce the issue on our end. We tried to go to a specific section in a page using an external link and it landed directly above the specified section. (see private field)
Best regards,
IsmaelHi,
Thanks for the update.
It turned out to be an issue with the image’s initial compression. Please check the image details and you should see the color representation set to “uncalibrated” and the compression to “uncompressed”. If you try to resave the image using Photoshop or any image editor, you should be able to recompress the image without altering the color profile. Please check the screenshot.
Screenshot: https://imgur.com/a/LX7ZE1v
First image in the screenshot is the “resaved” or “compressed” version and the second one is the original.
Best regards,
IsmaelHi,
Thanks for the update.
I’m sure that’s possible. According to this forum, it has to be set in the application directly.
Try to follow the steps here:
// https://talk.sonymobile.com/t5/Xperia-Z2/Open-links-in-Facebook-app-itself/td-p/933637#gref
Best regards,
IsmaelHi,
Thanks for the update.
The product thumbnails are resized to the specified dimension, 360x540px. (see private field)
You may need to decrease the number of columns in the product page and increase the maximum width container of the site if you want the exact size of the product images to display in the shop page.
Best regards,
IsmaelApril 30, 2019 at 2:38 am in reply to: Blog list page post meta infos stopped displaying correctly #1095562Hi,
Thanks for the update.
Did you change this line?
for (var i = 0; i < entry.length; ++i) {It should be:
for (var i = 0; i < entry.length; i++) {Best regards,
IsmaelApril 30, 2019 at 2:36 am in reply to: Since last update avia construtor is not working on posts #1095561Hey marcelhochman,
Thank you for using Enfold.
Are you referring to the advance layout builder? Please post the login details in the private field so that we can check the post editor. Make sure that the site is running on the latest version of the theme, 4.5.6.
Best regards,
IsmaelApril 30, 2019 at 2:33 am in reply to: Color text white for label form in check box only on dark background #1095559Hey Stefano,
Thank you for using Enfold.
You can use this css code adjust the font color of checkbox label.
label.input_checkbox_label { color: #ffffff; }Best regards,
IsmaelHey Gary,
Thank you for using Enfold.
A quick search led me to this snippet.
function pippin_add_taxonomy_filters() { global $typenow; // an array of all the taxonomyies you want to display. Use the taxonomy name or slug $taxonomies = array('portfolio_entries'); // must set this to the post type you want the filter(s) displayed on if( $typenow == 'portfolio' ){ foreach ($taxonomies as $tax_slug) { $tax_obj = get_taxonomy($tax_slug); $tax_name = $tax_obj->labels->name; $terms = get_terms($tax_slug); if(count($terms) > 0) { echo "<select name='$tax_slug' id='$tax_slug' class='postform'>"; echo " <option value=''>Show All $tax_name</option>"; foreach ($terms as $term) { echo ' <option value='. $term->slug, $_GET[$tax_slug] == $term->slug ? ' selected="selected"' : '','>' . $term->name .' (' . $term->count .')</option>'; } echo " </select>"; } } } } add_action( 'restrict_manage_posts', 'pippin_add_taxonomy_filters' );This is going to add a category filter in the portfolio admin area.
// https://pippinsplugins.com/post-list-filters-for-custom-taxonomies-in-manage-posts/
Best regards,
IsmaelHi,
Thanks for the update.
Did you disable or toggle the Performance > File Compression settings after the file modification? Please post the site url along with the login credentials so that we can inspect issue.
Best regards,
IsmaelHey MaritzaPB,
Thank you for using Enfold.
The theme is a bit outdated. Please do an upgrade from version 4.1.2 to 4.5.6. That should fix the issue. If it’s still not working, go to the Enfold > Performance panel and disable the File Compression settings.
Best regards,
IsmaelHey NoraGTS,
Thank you for the update.
What did you modify in that file? Please post it on pastebin.com. For the menu items, try to redirect the users to a custom page containing links to other pages. It’s like a site map. Or use the mega menu option.
Best regards,
IsmaelApril 30, 2019 at 2:00 am in reply to: Place thumbnail between title and price in catalogue element #1095548Hi,
Thanks for the update.
This is possible but it might ruin the layout of the catalogue container. Add this script in the functions.php file:
add_action('wp_footer', 'ava_custom_move_catalogue_elements'); function ava_custom_move_catalogue_elements(){ ?> <script type="text/javascript"> (function($) { $('.av-catalogue-item').each(function() { var image = $(this).find('.av-catalogue-image'); var title = $(this).find('.av-catalogue-title'); if(image) { image.insertAfter(title); } }); })(jQuery); </script> <?php }And insert this css code in the Quick CSS field or the child theme’s style.css file.
.av-catalogue-content { clear: both; } .av-catalogue-title { float: left; }Best regards,
IsmaelHey Carolin,
Thank you for using Enfold.
There is an empty paragraph tag in the special heading element, which increases the overall height of the section. This is the actual markup of the element.
<h4 class="av-special-heading-tag " itemprop="headline"><span class="special_amp">“</span>I can’t believe how lucky we are to have a carnival come to our neighbourhood park – nowhere else in Vancouver can say the same!<span class="special_amp">”</span> <i> <p style="font-size:20px">J. Sears</p> </i><i></i></h4>Please remove the extra spaces at the bottom of special element content.
Best regards,
IsmaelHey Justin,
Thank you for using Enfold.
Is that an iPad Pro? Try to adjust the maximum height of the “#home” section and make sure to use a css media query that targets that specific device.
#home { max-height: 50vh; }CSS media query for iPad Pro:
// https://stackoverflow.com/questions/41978487/correct-media-query-for-ipad-pro
Best regards,
IsmaelHey webdesignaustria,
Thank you for using Enfold.
You don’t need to add that code because the reCAPTCHA option is already available in the Enfold > Google Services panel. Just make sure that the theme is updated. The latest version is 4.5.6.
Best regards,
IsmaelHey webguy007,
Thank you for using Enfold.
The menu items’ font weight are set to “bold”.
#top #header .av-main-nav > li > a { color: #000000; background-color: #fcfcfc; border-color: #f2f2f2; font-size: 18px; font-weight: bold; }Did you add that one?
Best regards,
IsmaelHey webguy007,
Thank you for using Enfold.
Did you add the following css code?
.responsive #top #header #header_main .inner-container .main_menu { order: 3; flex-basis: auto; align-items: center; align-self: center; height: inherit !important; }That code alters the default position of the mobile menu and social icons. If you want to keep that code, try to add the following.
@media only screen and (max-width: 767px) { .responsive #top #header #header_main .inner-container .main_menu { position: absolute; top: 45px; } .responsive #top #header #header_main .inner-container .logo img, .responsive #top #header #header_main .inner-container .logo, .responsive #top #header #header_main .inner-container .logo a { min-width: 0 !important; height: 60px !important; } .responsive #top #header #header_main .inner-container .logo { top: 15px; } }It should look like this afterwards.
Screenshot: https://imgur.com/a/dExGfbR
Best regards,
IsmaelHey webguy007,
Thanks for the update.
Make sure that the text clear both sides or prevent other elements from floating beside it. Something like this should work.
p.nofloat { clear: both; }You have to insert that inside a css media query.
Best regards,
IsmaelHey webguy007,
Thank you for using Enfold.
Use this css code to adjust the color of the submenu indicator and increase its size.
#top #wrap_all #av-burger-menu-ul li a .av-submenu-indicator { color: #000000; font-size: 20px; }And add this one to change the symbol.
.html_av-submenu-hidden .av-submenu-indicator:before { content: "\E816"; font-family: 'entypo-fontello'; }Best regards,
IsmaelHey alex2545,
Thank you for using Enfold.
The Layout box is available in the page editor when we checked. Make sure that the metabox is enabled in the Screen Options.
Best regards,
IsmaelHi,
Thank you for using Enfold.
As @michaelH suggested, it’s possible to toggle the elements’ device visibility using the their Screen Options. This feature is available in the later versions of the theme, so you have to do the upgrade. The idea is to insert another element of the same type in addition to the existing one, toggle its Screen Options so it only displays on the specified devices and upload an image that is actually intended for mobile view.
@michaelH: Thanks for helping!
Best regards,
IsmaelHey Qeibu,
Thanks for the update.
We are not that familiar with the plugin, so additional help from the plugin authors will help. Do you see any errors in the backend when the plugin is activated? Please post the login details in the private field so that we can inspect the dashboard.
Best regards,
IsmaelHi,
Thanks for the update.
Are you referring to the grid row cells? Please edit the element, set the “Mobile Behaviour” to the first option and then go to the Screen Options. In that panel, set the “Fullwidth Break Point” to the second option (On tablets (at a screen width of 989px or lower), so the cells become full width on tablet view.
Best regards,
IsmaelHi,
Thanks for the update.
You can actually download the svg or eps format of the vero logo from this page.
// https://www.vero.co/press-kit
You can then convert it to an icon font using the fontello.com’s svg to icon generator.
// https://kriesi.at/documentation/enfold/icon/#adding-your-own-fontello-or-flaticon-icons-
And then use this filter to change the default font icon used by the existing social icons in the theme.
// https://kriesi.at/documentation/enfold/icon/#change-icon-used-for-standard-theme-elements-
Best regards,
Ismael -
AuthorPosts
