Forum Replies Created

Viewing 30 posts - 22,711 through 22,740 (of 66,717 total)
  • Author
    Posts
  • in reply to: post are showing up in search but not the pages #1096046

    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,
    Ismael

    in reply to: Sidebar content for start page=blog page #1096024

    Hi,

    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,
    Ismael

    in reply to: How to activate Lightbox in a post? #1095774

    Hi,

    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,
    Ismael

    in reply to: CSS error with contained div #1095773

    Hey 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,
    Ismael

    in reply to: HELP CLUSTER #1095771

    Hi,

    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,
    Ismael

    Hey 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,
    Ismael

    in reply to: Table of Contents Widget – Anchor Links Problem #1095768

    Hey 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,
    Ismael

    in reply to: Quality of the color of the thumbnails is bad #1095763

    Hi,

    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,
    Ismael

    in reply to: Facebook Share not opening in APP #1095761

    Hi,

    Thanks for the update.

    I’m sure that’s possible. According to this forum, it has to be set in the application directly.

    // https://forums.androidcentral.com/android-apps/593611-how-force-android-open-facebook-links-facebook-app.html

    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,
    Ismael

    in reply to: Enfold Shop – Woocommerce Produktbild Größe ändern #1095751

    Hi,

    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,
    Ismael

    Hi,

    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,
    Ismael

    Hey 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,
    Ismael

    Hey 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,
    Ismael

    in reply to: Filter Portfolio Items by Category in Admin Console #1095558

    Hey 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,
    Ismael

    in reply to: Image URL being replaced by Enfold #1095556

    Hi,

    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,
    Ismael

    in reply to: Screen Options not working 2 #1095554

    Hey 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,
    Ismael

    in reply to: Rename Submenu on mobile #1095553

    Hey 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,
    Ismael

    Hi,

    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,
    Ismael

    in reply to: Colour section padding and height #1095547

    Hey 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,
    Ismael

    in reply to: Homepáge fullscreen rendering on iPad #1095546

    Hey 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,
    Ismael

    in reply to: Google recapcha #1095544

    Hey 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,
    Ismael

    in reply to: Why are some pages menu bold and others not? #1095543

    Hey 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,
    Ismael

    in reply to: Mobile Menu to right side #1095542

    Hey 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,
    Ismael

    in reply to: Mobile Photo Centered and text flow corrected #1095541

    Hey 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,
    Ismael

    in reply to: Mobile Submenus arrow and darker #1095540

    Hey 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,
    Ismael

    in reply to: Enfold theme dashboard not correct #1095538

    Hey 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,
    Ismael

    in reply to: Parallax scroll mobile view #1095537

    Hi,

    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,
    Ismael

    in reply to: Fehler:: Enfold 4.5.6 und FacetWP 3.3.6 #1095536

    Hey 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,
    Ismael

    in reply to: Problem with tablet portrait view #1095535

    Hi,

    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,
    Ismael

    in reply to: Extra Elements #1095533

    Hi,

    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

Viewing 30 posts - 22,711 through 22,740 (of 66,717 total)