Viewing 30 results - 2,491 through 2,520 (of 10,096 total)
  • Author
    Search Results
  • #1059252
    rosewoodva
    Participant

    Hi There,

    I have tried a few solutions recommended in the forums but nothing has worked.

    We’re trying to accomplish a similar Blog layout to this site: https://www.zayo.com/company/blog/

    I am using the Magazine element, but can’t resize the thumbnails. Also, all text is white…

    Login in private content, thanks!

    #1058923

    In reply to: Gallery Problem

    Thanks, but in this case the wordpress doesnt create the thumbnails. So this, solution will works?

    I select in the galley preview image size: Portfollio Small (260×185). But the last update, the two images doesnt create that images.

    #1058271

    Can you please confirm to me the answers to the following questions:

    1. When a .PNG is uploaded is it usual that I can only see a greyed out box in my media library, as opposed a thumbnail of the image?
    2. Are .PNG files compatible with full-page sliders? Because if they are not, I might as well just convert to .jpeg files.

    Kind regards,

    Oliver

    #1058262

    Topic: Gallery Problem

    in forum Enfold
    lamenezes
    Participant

    I was created one gallery with some pictures (04/2018), in the last update I added two pictures (01/2019) but dont create thumbnails… How can I fix that?. I dont understand what it is happens.

    • This topic was modified 7 years, 2 months ago by lamenezes.
    holodyn
    Participant

    I have create a page with accordion image sliders and the titles will not appear in the light box mode. The “mfp-title” div is empty, I have titles in the slider that you can view on hover in thumbnail view. What am I doing wrong?

    #1058190

    Hi Enfold team,

    I managed to solve this by adding functions to child theme function.php and some css and a custom field in the page

    In case someone needs to do the same. Here is the code I used.
    Add to functions.php of child theme:

    add_shortcode( 'page_title', 'page_title_sc' );
    add_shortcode('field', 'shortcode_field');
     
    function shortcode_field($atts){
         extract(shortcode_atts(array(
                      'post_id' => NULL,
                   ), $atts));
      if(!isset($atts[0])) return;
           $field = esc_attr($atts[0]);
           global $post;
           $post_id = (NULL === $post_id) ? $post->ID : $post_id;
           return get_post_meta($post_id, $field, true);
    }
    
    add_shortcode('thumbnail','thumbnail_in_content');
    function thumbnail_in_content( $atts ) {
    global $post;
    return get_the_post_thumbnail_url( $post->ID );
    }

    Add to content in the color section of the header template page:

    <h1>[page_title]</h1>
    <p>[field "Subtitle"]</p> (Create a custom field with the name Subtitle)

    and css in header template

    <style type="text/css">
    #top #wrap_all #main .avia-no-border-styling {
    background-repeat: no-repeat;
    background-image: url([thumbnail size=full]);
    background-attachment: scroll;
    background-position: center center;
    background-size: cover !important;
    </style>

    Maybe there is an easier solution. But this one did the job for me.

    • This reply was modified 7 years, 2 months ago by Onlineplaner.
    #1058143
    Onlineplaner
    Participant

    Hi,
    In my page I have a header image placed in a color section with background image, Title and subtitle.
    So that I can reuse the same element I built this header as a page so I can include it as a content element into some of my pages. Now I placed the page title as it is, the subtitle from custom fields. Is there a possibillity to use the post thumbnail or page default image as the background for the color section?
    css or a shortcode?

    Thanks in advance.
    Onlineplaner

    • This topic was modified 7 years, 2 months ago by Onlineplaner.
    #1058114
    nadjak77
    Participant

    Hi,
    we use the galery-element with Thumbnails.
    The Thumbnails show a short description on mouseover.
    The description has a black background. But it is to short. WHere can I change the length of the description-background?
    Thank you
    Nadja

    Marc
    Participant

    Hello together,

    I am using the Gallery content element on one of my websites and would like to remove the fading effect and the delayed display of the main picture.
    Basically when somebody hovers between the thumbnails below the main picture, the main picture should change instantly.

    Can you advice some Quick CSS for this?

    Best regards,
    Marc

    #1058067
    lion73
    Participant

    Dear support,
    In enfold 4.5.2, but probably also in the previous versions, Tab Section has a problem in the mobile (small screen like iPhone) view.
    When the page containing tab section is loaded the thumbnail view is not on the same line but on two.
    If the page is reloaded, the miniarures will return correctly on a single line.
    I urgently need to solve this problem.
    I await a solution from someone competent, please.
    Regards
    Lion
    Update: Solved

    • This topic was modified 7 years, 2 months ago by lion73.
    #1057708

    In reply to: enfold

    Hi,

    Please try the following:
    1. Install this plugin: https://wordpress.org/plugins/simple-image-sizes/
    2. Go to Settings > Media
    3. Change for example entry_without_sidebar image size (increase its width / height).
    4. Regenerate the thumbnails by clicking the button at the bottom.

    Best regards,
    Yigit

    #1057470

    Okay – it looks like they had had a developer change out the shortcode template because they wanted to change the size of the thumbnails from being a square to the aspect ratio they are using for their blog posts so we’re good now. Thank you.

    • This reply was modified 7 years, 2 months ago by CurlyHost.
    #1057387
    conflock
    Participant

    Hi,

    I’m using ACF PlugIn for custom events. What I want is to show future events with the help of a shortcode inside the Avia builder. Unfortunately the loop is always shown at the beginning of the page, not at the position of the shortcode. What am I doing wrong?

    <?php
    
    /* -------------------------------------------------------------
    	SHORTCODE FUTURE EVENTS
    ------------------------------------------------------------- */
    
    function future_events_all_shortcode() {
    
    // Begin Function
    
    $today = current_time('Y-m-d');
    $args = array(
        'post_type' => 'veranstaltungen',
        'posts_per_page' => '20',
        'meta_key'  => 'datum_beginn',
        'order' => 'ASC',
        'orderby' => 'meta_value',
        'meta_query' => array(
          array(
                'key'   => 'datum_beginn',
                'compare' => '>=',
                'value'   => $today,
            	'type' => 'DATETIME'
            ),
        ),
    );
    
    // Format date
    $date = get_field('datum_beginn');
    $date_day = date_i18n("D", strtotime($date));
    $date_day_digit = date_i18n("d", strtotime($date));
    $date_month = date_i18n("M", strtotime($date));
    
     
    $children = new WP_Query($args);
    
    if ($children->have_posts()) :
    	while ($children->have_posts()) : $children->the_post(); $fields = (object) get_fields();
        
        echo '<div class="atomic-events">';
    	    
    	    echo '<div class="atomic-event">';
    	    	
    	    	echo '<div class="event-date">';
    				echo '<div class="event-date-day">', $date_day, '</div>';
    				echo '<div class="event-date-day-digit">', $date_day_digit, '</div>';
    				echo '<div class="event-date-month">', $date_month, '</div>';
    			echo '</div>'; // end event-date
    			
    			echo '<div class="event-text">';			
    				echo '<h1 class="event-title"><a href="' , the_permalink() , '">' , the_title() , '</a></h1>';
    			echo '</div">'; // end event text
    			
    			echo '<div class="event-image">';			
    				echo '<div class="event-image"><a href="' , the_permalink() , '">' , the_post_thumbnail( 'large', array( 'class' => 'img-responsive' ) ) , '</a></div>';
    			echo '</div">'; // end event image
    			
    	    echo '</div>'; // end event
    	
    	echo '</div>'; // end events
    	
     	endwhile; wp_reset_postdata();
    endif;
    
    // End Function
    
    }
    add_shortcode('future_events', 'future_events_all_shortcode');
    Loes
    Participant

    Dear team,
    After upgrading to Enfold 4.5.2 (from 4.4 something) images (thumbnails?) in my product / catalogue list are displayed differently than before and different than the preview generated in wordpress admin. They are square instead of round, too large, a bullet point has appeared and a dashed line between my products has disappeared as well

    Here’s how it was and how it looks like in preview: https://www.verbindwerk.nl/wp-content/uploads/2019/01/Screenshot-2019-01-22-at-13.10.05.png
    And this is how it looks like live / now: https://www.verbindwerk.nl/wp-content/uploads/2019/01/Screenshot-2019-01-22-at-13.10.22.png

    Can you help me with getting it back how it was?

    • This topic was modified 7 years, 2 months ago by Loes.
    #1056430

    In reply to: Events Featured Image

    Hi,

    Did you regenerate the thumbnails after adding the code? I recheck the events template and it seems to be using the “medium” thumbnail, which is specified in the Settings > Media library. Please try to adjust that thumbnail and then regenerate thumbnails again. Or post the FTP details in the private field so that we can check the events template.

    Best regards,
    Ismael

    #1056364

    Topic: Blog issue

    in forum Enfold
    kunstkaffe
    Participant

    Hi, I have many questions ^^.
    ———————————————————————————————————————————————————————–
    1. If I upload a image, theme makes various sized images automatically. I don’t want to make them. How?
    ———————————————————————————————————————————————————————–
    My site – Link
    2. Post-meta-infos and comment area are out of line. How to fix them? (blog style: default / modern)
    3. The single post width is too narrow . How to expand?
    4. I want to delete a featured image in single post.
    5. How to remove the rounded corners of thumbnail images in blog list?
    6. How to change circle pagination into square pagination ?
    ———————————————————————————————————————————————————————–
    I look forward to your reply.
    Thanks.

    • This topic was modified 7 years, 2 months ago by kunstkaffe.
    shhattori
    Participant

    HI,
    I made a shopping page with woocommerce and got unexpected issue.
    When I activated a specific filter, in this case “diamond”, thumbnails of sub-categories come up.
    I want to they doesn’t show up.

    When other filter activates, like color stone, sub categories doesn’t show up.
    Is it a bug?

    Please tell me how to solve it.

    https://sindb.com/product-category/diamond

    Best Regards,
    Shoko

    Hi Gitte, I saw that button and used it on Simple Image Sizes Plugin to re-generate thumbnails, but after it ran I checked via SFTP and all the old ones were still there. It was not until I used the “Regenerate Thumbnails” plugin that the old ones were deleted. Perhaps this is unique to my server environment on WP Engine but I’m just glad to have the disk space cleaned up.

    Thanks for your help!

    @goldengate415

    when you use the “Simple Image Sizes Plugin” you do not need to install the “Regenerate Thumbnails plugin”, too, because the Simple Image Size plugin has the regenerate thumbnail functionality. See at the very bottom of the page, where you change your media sizes.

    OK… I gave up on using the functions.php and installed the plugins…. and I’ve reduced the storage used on my site by 50% from 9 GB to 4.5 GB with zero impact on the site itself. I DO THINK that Enfold should add this to the theme options… it’s ridiculous to save 15 files for every photo if you only need a few of them… wastes lots of space.

    For anyone else searching for this or needing to do this in the future, download:
    – Regenerate Thumbnails plugin
    – Simple Image Sizes Plugin

    Use Simple Image Sizes (SIS) to select which photo sizes you want to use on your site (See Gitte’s screenshots above for how to do it), then use Regenerate Thumbnails and select ” Delete thumbnail files for old unregistered sizes in order to free up server space. This may result in broken images in your posts and pages”

    BE SURE TO MAKE A BACKUP OF YOUR ENTIRE SITE BEFORE YOU BEGIN THIS PROCESS

    Thanks all for your help!! I am surprised this isn’t a more common request on this forum.
    Rob

    • This reply was modified 7 years, 2 months ago by goldengate415.

    Thanks Gitte, and then to re-generate the older media files already uploaded, do you use regenerate thumbnails plugin?
    I’m a bit concerned that the plugin you are recommending has not been updated in a long time and has not be certified to be compatible with WP 5.0…?

    #1054866

    In reply to: Events Featured Image

    Hi Ismael,

    I placed the code and now my image is just cropped into a square. I changed the height to make it more rectangular in the hopes of not cropping the photo, but it’s still cropping it. How can I prevent the photo from being cropped?

    I deactivated the regenerate thumbnails plugin because no matter what I did the photo just remained in a square (regardless of the dimensions I put into your code).

    This code seems to keep all the thumbnails except the shop thumbnails when I upload… so after I installed the code in functions.php in my child theme, I uploaded a photo, and there are still 12 files (versus the original 15 at the top of this thread).

    I would imagine others will have this request if and when they start running up against their own 10 GB server storage limits. Can we figure this out please?

    Thanks,
    Rob

    #1054796
    Maskenzauber
    Participant

    Hi
    this is number 16 of “not working things in Enfold

    The code i use has been given by one of your mods to create this:

    Please see the video and let me know the correct code:
    [video src="https://maskenzauber.com/temp/coming-soon.mp4" /]

    No – i cant give you access
    maren (seriously bugged)

    CODE:

    [av_section min_height='100' min_height_px='500px' padding='large' shadow='no-border-styling' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' custom_margin='0px' custom_margin_sync='true' custom_arrow_bg='' id='' color='alternate_color' background='bg_color' custom_bg='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' attach='fixed' position='center center' repeat='stretch' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' av_element_hidden_in_editor='0' av_uid='av-7f7csbl' custom_class='']
    
    [av_one_fourth first av_uid='av-q91u69']
    
    [av_textblock size='' font_color='' color='' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' av_uid='av-6fbe69']
    Klicke hier, um Ihren eigenen Text einzufügen
    [/av_textblock]
    
    [/av_one_fourth][av_one_half min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' row_boxshadow_color='' row_boxshadow_width='10' link='' linktarget='' link_hover='' padding='0px' padding_sync='true' highlight_size='1.1' border='1' border_color='' radius='0px' radius_sync='true' column_boxshadow='aviaTBcolumn_boxshadow' column_boxshadow_color='#ededed' column_boxshadow_width='10' background='bg_color' background_color='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='' mobile_breaking='' mobile_display='' av_uid='av-6v7q5fl' custom_class='']
    
    [av_image src='http://kriesi.at/themes/enfold-coming-soon/files/2014/09/logo_coming_soon-80x80.png' attachment='16' attachment_size='thumbnail' align='center' animation='pop-up' link='' target='' styling='no-styling' caption='' font_size='' appearance='' av_uid='av-67kgkox'][/av_image]
    
    [av_heading heading='<strong>Coming Soon</strong><br/>to a place near you!' tag='h1' link_apply='' link='manually,http://' link_target='' style='blockquote modern-quote modern-centered' size='44' subheading_active='subheading_below' subheading_size='15' margin='' padding='10' color='' custom_font='#ffffff' custom_class='' admin_preview_bg='' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' av_uid='av-o44m9n']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.sellus dolor. Maecenas vestibulum mollis
    [/av_heading]
    
    [/av_one_half][av_one_fourth av_uid='av-5f98m75']
    
    [av_textblock size='' font_color='' color='' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' av_uid='av-rp9jxd']
    Klicke hier, um Ihren eigenen Text einzufügen
    [/av_textblock]
    
    [/av_one_fourth][av_hr class='invisible' height='100' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello' av_uid='av-4x58tmp']
    
    [av_countdown date='10/02/2016' hour='12' minute='0' min='1' max='5' align='av-align-center' size='' style='av-trans-light-style' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' av_uid='av-fxlhup' custom_class='' admin_preview_bg='']
    
    [av_hr class='invisible' height='100' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello' av_uid='av-40h7ae9']
    
    [av_one_fourth first av_uid='av-3bhcqox']
    
    [/av_one_fourth][av_one_half av_uid='av-2uun8rl']
    
    [av_contact email=' (Email address hidden if logged out) ' title='' button='Notify me on Launch' on_send='' sent='Thank you!' link='manually,http://' subject='' autorespond='' captcha='' color='av-custom-form-color av-light-form' av_uid='av-2gxp4dd']
    [av_contact_field label='Name' type='text' options='' check='is_empty' width='element_third' av_uid='av-26ex5b5'][/av_contact_field]
    [av_contact_field label='E-Mail' type='text' options='' check='is_email' width='element_third' av_uid='av-1n3pa81'][/av_contact_field]
    [/av_contact]
    
    [av_textblock size='21' font_color='custom' color='#ffffff' av_uid='av-15mmog1']
    <p style="text-align: center;">Want to get notified once we are ready to launch? Leave us your mail address and we will!</p>
    [/av_textblock]
    
    [/av_one_half][av_one_fourth av_uid='av-oejpwh']
    
    [/av_one_fourth][/av_section]
    #1054574
    patricknh
    Participant

    Hi Kriesi people,
    Pls refer to screenshot pic

    1. Two sections (one in menu and one in footer) do not display in Firefox but work as expected in Safari. Is there anything that I can do to fix this? *sort of solved…see next message

    2. I would like to centre the gallery as indicated – ie centred within the section block (it is aligned left and leaves ugly gap on right), with image thumbnails as is but equal spaced. Is this possible?

    Firefox 64.0.2 (64-bit)
    Safari 12.0.2 MacOS 10.14.2 Mojave
    Enfold 452
    Thank you
    Patrick

    • This topic was modified 7 years, 2 months ago by patricknh.
    #1054570

    Hi,
    Sorry for the late reply. I have been studying a lot about srcset and sizes property in the img tag;), just so I am able to understand what is happening.
    See the private content URL. The thing is that normally the thumbnails/featured images are hidden when on mobile devices (setting Single post with small preview image). Therefore the sizes attribute in the image tag is set to (max-width: 180px) 100vw, 180px, meaning the shown thumb on screensize between 180 and the mobile screen setting (768px default) is max 180px. Therefore the quality is too low. Removing the sizes attribute or changing it to (max-width: 180px) 100vw will collect the image that the best quality for the users viewport.

    -Since I am still quite new to this, I really like other thoughts on this issue.
    -Also, what is the best way to make these adjustments in the Enfold theme.
    -Also, the reason why Enfold coded it like this, is to make sure to not download a big image when the users viewport is large, since only a thumbnail needs to be shown (normally, without the custom CSS changes). Correct?

    #1054052
    solf
    Participant

    Hi there,

    1. Size of post pictures thumbnails in sitebar blog: These are 36×36. how can I change that iun 100 x100?
    The CSS code I found in the forum does not seem to work.
    img.attachment-shop_thumbnail.size-shop_thumbnail.wp-post-image {
    width: 100px;
    }

    2. How can I change the name for “Blog”? Especially in the breadcrump line

    thank’s

    Deutsch:
    1.Grösse der Beitragsbilder thumbnails in sitebar blog
    Diese sind 36 x 36 wie kann ich die Größe in 100 x100 ändern?
    Der CSS code, den ich im Forum gefunden habe, scheint nicht zu funktionieren.

    img.attachment-shop_thumbnail.size-shop_thumbnail.wp-post-image {
    width: 100px;
    }

    2.Wie kann ich den Namen für “Blog” ändern? Speziell in der Breadcrump Zeile
    danke.

    • This topic was modified 7 years, 2 months ago by solf.
    #1054041

    In reply to: Resize Image Sizes

    Hi kcloud3,

    Try to add this code in functions.php:

    add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 );
    function enfold_customization_modify_thumb_size( $size ) {
      $size['square'] = array('width'=>250, 'height'=>250);
      return $size;
    }

    then you’ll need to re-add the image for it to trigger this function.
    However if you have already lots of images uploaded, you should use this plugin: https://wordpress.org/plugins/regenerate-thumbnails/ to regenerate images.

    Best regards,
    Nikko

    #1053821
    kathyfg
    Participant

    Hello,

    We have excerpt overlays on our Portfolio item thumbnails and they show correctly in the Portfolio section of our website. However, they don’t appear when we have the Portfolio Grid on other pages. Link to page where it DOES not show below. How can we fix this?

    Thanks!

    mkammes
    Participant

    Hello!

    Currently using Enfold and I’m trying to use a YouTube playlist instead of linking to Internal Portfolio pages.

    I can either use the Avia Layout builder (Media Elements/Video) and insert a new video for every video I’d like to display, but that would be very time-consuming. I don’t see an option for a YouTube Playlist in the Media Elements , so I hoped Enfold may have something I can use instead of that.

    I’d like the video thumbnails, title and (some of the) description to be present, preferably in a 3 column layout. Is there a way to parse a YouTube playlist, and represent them individually as clickable ‘items’ on the page, to either load the YouTube video in a shadowbox, or load up the YouTube page?

    Thanks!

Viewing 30 results - 2,491 through 2,520 (of 10,096 total)