Viewing 30 results - 871 through 900 (of 10,094 total)
  • Author
    Search Results
  • #1348339
    rob2701
    Participant

    Hi,

    Although the portfolio items don’t show the author of the items themselves, I noticed that the author (i.e. creator) does show up in the search results, which is a bit stange if for example the webmaster name is shown instead of the website owner’s name.

    So I added this to the child theme functions.php to be able to change the author on those items:

    // ***** Add filter for author to portfolio items (galleries) *****/
    add_filter('avf_portfolio_cpt_args', 'avf_portfolio_add_cpt_args', 1);
    function avf_portfolio_add_cpt_args($args) {
    	$args['hierarchical'] = true;
    	$args['supports'] = array('title','thumbnail','excerpt','editor','comments', 'page-attributes','author');
    	return $args;
    }

    So far so good, I can now change the author of the portfolio items so they show in the search results like they should.
    Today however I noticed that if the above code is kept there, the previous-next buttons (navigation) on portfolio items disappear, so I had to comment the above code out again.

    While this is no problem in itself (the author being changed already and stored in the database), I am curious how and why this code can interfere with the portfolio navigation buttons (they continue to work on blog posts though).

    Thanks for clarifying!

    Rob

    #1348158

    Hello again, I added the line, but no results yet.
    below are lines 37 – 43 of my loop-author.php:
    `$size = strpos($blog_style, ‘big’) ? (strpos($current_post[‘post_layout’], ‘sidebar’) !== false) ? ‘entry_with_sidebar’ : ‘entry_without_sidebar’ : ‘square’;
    $current_post[‘slider’] = get_the_post_thumbnail($current_post[‘the_id’], “entry_with_sidebar”);
    $current_post[‘title’] = get_the_title();
    $current_post[‘content’] = apply_filters(‘avf_loop_author_content’, get_the_excerpt());
    $with_slider = empty($current_post[‘slider’]) ? ” : ‘with-slider’;`

    I have a similar problem with my category pages: the thumbnails just arent getting rendered at all.
    I get this element: <header class="entry-content-header">
    but not: <div class='page-thumb'>
    which makes me suspicious that the call on line 23 in loop-page.php (below) isn’t returning a value for these posts.
    $thumb = get_the_post_thumbnail( get_the_ID(), $avia_config['size'] );

    Additional info:
    – my primary page for my articles (the one that looks right) is set as the “blog page” in the ACOM theme options, and these other pages are not. Is there some kind of styling or templating that happens for the formatting of the primary page that I can copy over to my /category/{category} and author pages?

    #1348030

    Hi,

    Thank you for the update.

    To adjust the size of the featured images, please look for this code around line 40 in the same loop-author.php file..

    $current_post['slider'] = get_the_post_thumbnail($current_post['the_id'], $size);
    

    .. and replace it with:

    $current_post['slider'] = get_the_post_thumbnail($current_post['the_id'], "entry_with_sidebar");
    

    We adjusted the size parameter of the get_the_post_thumbnail function and made sure that it displays the “entry_with_sidebar” thumbnail.

    Best regards,
    Ismael

    #1347657

    Hey Joakim,

    Thank you for the inquiry.

    You may need to unregister some thumbnails and regenerate the images in the library as suggested in these threads.

    // https://kriesi.at/support/topic/enfold-image-sizes-3/#post-1109028
    // https://kriesi.at/support/topic/how-can-i-delete-all-enfold-image-sizes/

    This article should help.

    // https://wpengine.com/resources/wordpress-media-library-clean-up/

    Best regards,
    Ismael

    #1347515
    noellmn
    Participant

    I have a problem with a youtube video on the page: https://www.spreewald-luftaufnahmen.de/drohnen-aufnahmen-firma/

    It was added with a thumbnail but won’t play. On my other website is exactly the same video with the same link and it works: https://www.sgl-concept.de/werkstatt/

    I have already checked the wordpress versions, everything is identical. The code looks like it is incomplete. Can you tell me why a script is written? The code seems incomplete since the <div is started but not completed.

    The script:
    <script type=”text/html” class=”av-video-tmpl”>
    <div class=’avia-iframe-wrap’>
    <iframe title=”SGL – Concept GmbH | Virtuelle Tour mit Drohne 4K | Spreewald Luftaufnahmen” width=”1500″ height=”844″ src=”https://www.youtube.com/embed/MN8fRjOeROQ?feature=oembed&autoplay=1&loop=0&controls=1&mute=1&#8243; frameborder=”0″ allow=”accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture” allowfullscreen>
    </script>

    the text is also under the video, but this should be next to it.

    Thank you and best regards!

    #1347188

    Wenn du mit einem Child-Theme arbeitest ist das möglich, indem du dir ein child-theme loop-search.php erstellst.
    wenn du das öffnest, siehst du auf Zeile 37 im neuesten Enfold :

    echo "<span class='search-result-counter {$counterclass}'>{$post_loop_count}</span>";
    

    dahinter könnte man platzieren: ( this is edited content here – it is better to avoid placement if there is image )

    $searchimage = get_the_post_thumbnail( $the_id, 'square' );
    if( ! empty( $searchimage ) ) {
    	echo "<a class='slide-image search_image' href='".get_permalink()."'><span class='search-result-image'>{$searchimage}</span></a>";
    }

    wobei hier square durch andere Image-sizes von Enfold ersetzt werden kann ( large etc.)
    Der Rest wäre dann css.
    Dann hast du beides – die Nummerierung und ein featured Image.

    hier wäre die loop-search.php auf Basis von Enfold 4.9.2.1 – : https://pastebin.com/8d1jCDdJ
    platziert würde diese ( ich behalte gerne die original Baumstruktur bei ) im child-theme/includes folder

    schau mal hier: https://webers-testseite.de/?s=portfolio

    __________
    PS :
    das wäre auch mit der ajax Suche möglich – ohne ein extra Plugin.
    ___________

    PPS:
    hier sind mal die image-sizes, die man da setzen kann ( aus functions.php 211ff )

    widget (36x36), 
    square (180x180),
    featured (1500x430),
    featured_large (1500x630),
    extra_large (1500x1500),
    portfolio (495x400),
    portfolio_small (260x185),
    gallery (845x684),
    magazine (710x375),
    masonry (705x705),
    entry_with_sidebar (845x321),
    entry_without_sidebar (1210x423),
    • This reply was modified 3 years, 11 months ago by Guenni007.
    #1346486
    terishka1
    Participant

    HI,

    How do I remove the gallery widget boarder on the thumbnails. I found this thread but the code does not work.

    #1346370

    Hi BrendaSarg,

    Thanks for giving us admin access.
    I have removed the one thumbnail that is duplicate in the gallery, please review your site.

    Best regards,
    Nikko

    #1346341
    BrendaSarg
    Participant

    Hi there, I see a few post about this, but no solutions I can do myself.

    In the private content is a link to the page I have the gallery inserted – you’ll see the thumbnails are duplicated. I have disabled the css file merging and compression – it didn’t help.

    #1346297

    In reply to: Home page broken

    I waited 2days . today i use google insights and devtools for first load the home page.
    same error code and broken layout.. I feel confused why it still load the past home page???
    I have already canceled the hide pop up quote form. can you check with the google insight?
    you will find the broken layout in google insight thumbnail. please help. login in private content.
    many thanks in advance.

    #1346222

    Hey sebzh22,
    Merci pour votre patience et les captures d’écran, votre première capture d’écran concerne les vignettes woocommerce, je ne pense pas que vous puissiez les désactiver et que la boutique woocommerce fonctionne correctement.
    Votre deuxième capture d’écran semble provenir de la bibliothèque multimédia principale et la plus petite vignette 150 a été supprimée, essayez donc de l’activer à nouveau.

    — Translated with Google —

    Thank you for your patience and the screenshots, your first screenshot is of woocommerce thumbnails, I don’t believe that you can disable these and have the woocommerce shop work correctly.
    Your second screenshot looks like it is of the backend media library and the smallest thumbnail 150 has been removed, so try enabling this again.

    Best regards,
    Mike

    #1345678

    Topic: Posts: remove lines

    in forum Enfold
    tanjatheiler
    Participant

    Hello, I already had contact in thread 1345370. You helped me with the quick css.

    Unfortunately the problem is not completely solved yet. My customer doesn’t want the grid view for the posts, but the “single author, large thumbnail” view. The double line appears below the post. Can you remove them or at least center them in the column?

    Next I want the short gray line under the title in green.

    Thanks for the help, Tanja

    #1345501

    Hi,
    Glad this helped,

    Pourriez-vous me dire ou aller pour supprimer les miniatures qui sont créées automatiquement?

    Once the thumbnails are created you would need to delete the ones you don’t want via FTP, or your cPanel file manager, but you can stop these from being created if you know that you won’t need some of them by using the plugin Simple Image Sizes and setting the sizes to zero.
    Then future image uploads will not create the thumbnails marked with a zero.

    Please note that we ask that each thread stays “on topic” and different threads are used for multiple questions, this helps future users find solutions easier and multiple Moderators assist you with a solution, thank you for understanding.

    Best regards,
    Mike

    #1345478

    Personally, I was only bothered by the galleries with previews.
    https://kriesi.at/themes/enfold-2017/elements/gallery/
    If you hover a little bit over the thumbnails, an Enfold Tooltip and the WordPress Tooltip will be shown at the same time. Therefore my solution to hover the Titles in a Substitute Title ( org_title ) to cache.

    there is a simpler method to remove all titles – but then as mentioned above – the seo aspect will be ignored – and if you decide to show on an image a lightbox – the title is missing in the bottom-bar of the lightbox.

    #1345468

    Hey vantagepointmg,

    Thank you for the inquiry.

    With that said, I would also mention that themes must be designed to look well on many different screen sizes, from small mobile phones up to large computer displays, so it’s possible your theme developer has done things this way intentionally.

    What the developer said above is actually correct. The theme is designed to look well on every screen sizes and displays, so most thumbnails will usually have to be larger than their actual container. However, every image element in the theme has a dedicated option where you can change or select a specific image size to display. In the slider elements for example, you can go to the Styling > Slideshow Settings panel and select a different image size in the Slideshow Image and Video Size dropdown. With this option you can choose to display a thumbnail which has a dimension that is almost the same as the slider container. Unfortunately, we cannot control the size of images from external sources such as instagram or facebook.

    Best regards,
    Ismael

    #1345424
    vantagepointmg
    Participant

    Hello,

    I’ve run several performance reports on one of our sites (below) and have reached out to plugin support and hosting support regarding the performance.

    The report (from GT Metrix) is saying there’s two main issues:
    1. Avoid enormous network payloads
    2. Properly size images

    I spoke with the hosting company, WP Engine, and they suggested reaching out to the plugin developer directly, which I did.

    This is what they got back to me with:

    This is Joseph from Imagify, and I’ll gladly assist you here!

    I ran a Pagespeed test of my own to see the specific results you’re getting, and I can see the following 2 sections being flagged that are the sections related to Imagify (these sections are related to image optimization and serving images as WebP format on your pages). However, I don’t think the issue with the images specifically flagged is related to Imagify because they are all external images (see highlighting of a couple examples below):

    5ce40e3163193a0362a81b60db6f588a.png
    1a5414952590b0f4b0e070718cb63469.png

    If we look at a list of all the images on your page, we can see that all the local ones (the ones on your website’s server) are in WebP format (meaning they have been optimized and are displaying on your page properly):

    cafc613775134543c742be9bcc3332a2.png

    Basically what this all means is that you have some images on your page(s) that seem to be from Instagram and Facebook. Since those images are being served from external servers, there’s nothing that can be done about them, unfortunately.

    Regarding these 2 items that you mentioned:

    1. Avoid enormous network payloads
    2. Properly size images

    The first one is a bit more of a general category, and part of it does relate to the “Efficiently Encode Images” and “Serve images in next-gen format” categories that are related to Imagify, but since as I mentioned there’s not much further we can do about the remaining external images, I don’t think there is anything further from Imagify’s perspective that I can suggest.

    The “Properly Size Images” warnings are actually not related to Imagify. Imagify doesn’t technically serve images, as that is the job of your theme. When you upload an image, your theme creates all the different thumbnail sizes of that image and (when working properly) serves the appropriate size based on where the image is used on your site, and the size of the visitor’s screen.

    The reason that you’re getting these warnings is that your theme is serving images that are larger in size than the size at which they are actually displayed on your site. So for example, if an image is actually 1000 pixels wide, but your theme uses HTML or CSS to resize it down to 500 pixels wide when it is displayed, these warnings are saying your theme should actually just be creating a 500 pixel wide thumbnail version of the image to use.

    Imagify optimizes all your thumbnail image sizes to reduce file size. However, even an optimized image will still get flagged if its dimensions are larger than necessary for the context in which it is used. Although this is one of those external images, so Imagify is not able to optimize it either.

    With that said, I would also mention that themes must be designed to look well on many different screen sizes, from small mobile phones up to large computer displays, so it’s possible your theme developer has done things this way intentionally.

    Often, themes set image widths and heights based on a percentage of how wide the visitor’s screen is so the display looks good no matter the screen size. The downside of doing this, is that it causes the displayed dimensions of images (again based on percentages) to be somewhat smaller than the actual dimensions of the images, which leads to the speed tests flagging them, as is the case here.

    The best course of action is likely to ask your theme developer about this, and to see whether they have any solutions or suggestions on how things could be improved. However, this is a tradeoff between design and function, so it is possible that you might want to leave things as they are for the sake of your site’s design and layout.

    Any help would be appreciated

    #1345313

    Hey martystl,

    Thank you for the inquiry.

    We created a test page (see private field) with the easy slider and the selected “Gallery” thumbnail is displaying correctly in the slider as shown in the screenshot below.

    Screenshot: https://1drv.ms/u/s!AjjTfXSRbKTvwEcuz2W6Mw8ygIxS?e=d6FEZo

    Please make sure to upload images that are larger than the selected thumbnail.

    Best regards,
    Ismael

    #1345266

    Hey mmathiesen,
    Thanks for the link to your page, but I don’t see any duplicated thumbnails, I see that you are using a gallery big with thumbnails below, the large image is selected and changes based on the small thumbnails below, so the small thumbnail and the large image matching is correct and not a duplication.

    Best regards,
    Mike

    #1345262
    mmathiesen
    Participant

    I am having some issues with duplicated thumbnails in the gallery widget. See example here: https://www.musikkbooking.com/lyd-og-lys/leie-scene/
    What causes this issue? I have updated to the latest Enfold theme and WordPress. The issue appeared after updating to the latest version of Enfold.

    #1345260
    Jules
    Participant

    I reported this issue yesterday: https://kriesi.at/support/topic/youtube-video-not-showing-thumbnail-black-screen/#post-1345218

    It worked yesterday, but I applied the same suggested fix for the pages I listed below, but the black screen still appears. How can I resolve this? Thank you.

    Best Regards,
    Julio

    #1345188
    Jules
    Participant

    I have 2 posts that I created with YouTube videos using the Video Element (see links below) where the preview screen is black with the link in the upper left-hand corner. This is what typically occurs when the YouTube video is Private, but that’s not the case…they are Public. If I click on the link the video will play.

    Note: I created these posts from a template and simply changed the video URL and a couple other items. The other 2 posts created from the same template work fine.

    How can I have the preview screen / thumbnail show up vs. this black screen? Thanks for your help.

    Best Regards,
    Julio

    #1344942

    Hi,

    Please use this plugin – https://wordpress.org/plugins/simple-image-sizes/, change the size of “entry_with_sidebar” images and then regenerate them.

    You are not using a sidebar on your blog page so the changes to thumbnails would not affect your single blog posts :)

    Best regards,
    Yigit

    #1344768

    Thank you! That fixed it (temporarily, as you said). I was also getting that same spacing error on my iPhone, but was able to fix it with the code you provided.

    Is there a way to set it so there is only 1 column of thumbnail images on the phone, 2 columns for large phone/small tablet and 3 for tablet size screens? I like that there are 4 columns for desktop view.

    Regards,
    Jonah

    #1344568
    joschro
    Participant

    Hello,

    I am using the Gallery on one page, and there are gaps in it. Why is that happening, and how do I get the gaps to go away? That is happening in Firefox on my MacBook Pro.

    On mobile phone, there are still gaps for that same gallery, and there are still four columns of thumbnail images, although it would be better if there was one column for mobile phone, and probably two for small tablet and three for large tablet. How can I get that to happen?

    Regards,
    Jonah

    #1344558

    Hi,

    Thank you for the clarification.

    For the single post page, you have to modify the includes > loop-index.php file and define a different thumbnail in this code around line 85.

    /*
    		 * retrieve slider, title and content for this post,...
    		 */
    		$size = strpos( $blog_style, 'big' ) ? ( ( strpos( $current_post['post_layout'], 'sidebar' ) !== false ) ? 'entry_with_sidebar' : 'entry_without_sidebar' ) : 'square';
    

    The current thumbnail that is being used is called “entry_without_sidebar” which has a maximum size of 1210x423px. You can replace the current thumbnail with another image with a different size. This is a list of available thumbnails and their corresponding dimension.

    $avia_config['imgSize']['widget'] 			 	= array('width'=>36,  'height'=>36);						// small preview pics eg sidebar news
    $avia_config['imgSize']['square'] 		 	    = array('width'=>180, 'height'=>180);		                 // small image for blogs
    $avia_config['imgSize']['featured'] 		 	= array('width'=>1500, 'height'=>430 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['featured_large'] 		= array('width'=>1500, 'height'=>630 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['extra_large'] 		 	= array('width'=>1500, 'height'=>1500 , 'crop' => false);	// images for fullscrren slider
    $avia_config['imgSize']['portfolio'] 		 	= array('width'=>495, 'height'=>400 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['portfolio_small'] 		= array('width'=>260, 'height'=>185 );						// images for portfolio 4 columns
    $avia_config['imgSize']['gallery'] 		 		= array('width'=>845, 'height'=>684 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['magazine'] 		 	= array('width'=>710, 'height'=>375 );						// images for magazines
    $avia_config['imgSize']['masonry'] 		 		= array('width'=>705, 'height'=>705 , 'crop' => false);		// images for fullscreen masonry
    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>845, 'height'=>321);		            	// big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 );						// images for fullsize pages and fullsize slider
    

    Best regards,
    Ismael

    #1344333

    Hi,

    The size of the product image in your screenshot above is actually 512x512px. Maybe it is the closest size to the specified width value and the only available thumbnail. As we mentioned above, it will not exactly display images with the exact width value.

    Please note that the catalogue images will not exactly display in the specified size. It will only display a thumbnail or image size that is closest to the specified width value.

    Best regards,
    Ismael

    #1344218

    Hey Ivana,
    I would recommend using the plugin Simple Image Sizes and placing a zero in sizes that you don’t need, including the basic WordPress sizes.
    While you could make a function from the thumbnail sizes in functions.php starting at line 211 for your child theme, using this plugin is easier, don’t worry about the age of the plugin, it is very basic and reliable.
    Please note that typically you would use the regenerate thumbnails option to correct the existing thumbnails, but in your case you want to “remove” them so I don’t know if the plugin will remove them, you may need to delete them via FTP, but future image uploads will not create thumbnails for the ones you make zero.

    Best regards,
    Mike

    #1344152

    Hi Mike,

    Thank you for your response. Yes, the only issue now is that the next video plays automatically and I don’t want this?

    I “think” I’ve disabled any auto continuous play setting, but maybe I’m overlooking it.

    Here is a link to my test page: https://kingdomlearners.com/youtube-embed-plus-test-page/ I also provided my credentials below.

    I have the plugin-in working as Contained Playlist at the top of my test page, which displays one video and after this video plays, the next ordered video in the Playlist starts, etc. However, the second test on this page I have a Gallery from the Playlist. The top video is the most recent. When it plays, at the end it stops and displays other relevant videos. If I could keep this and remove the other videos, this would be perfect. I think this is what @guenni007 was eluding to, but just not clear to me on how to implement it (e.g. “All these thumbs are in a unique container ( class: epyt-gallery-list ) if you set this to display none – you will have on top the newest video link.”)

    “you see that there is on top the last added video and beneath the thumbnails of the older videolinks in that playlist” and “All these thumbs are in a unique container ( class: epyt-gallery-list ) if you set this to display none – you will have on top the newest video link.”

    Thank you and others @guenni007 for your help.

    Best Regards,
    Julio

    • This reply was modified 4 years ago by Jules.
    #1344139

    Hi,
    I have not used this plugin before but looking at the plugin page it says:

    YouTube gallery auto continuous play – embed a playlist or channel gallery and allow it to play one video after the next without requiring viewers to click a thumbnail.

    so I assume that if you don’t want the next video to play there is a setting auto continuous play that you can disable, check for this.
    If you don’t see this please include an admin login in the Private Content area so we can check.
    As I understand the only issue now is that the next video plays automatically and you don’t want this?

    Best regards,
    Mike

    #1344066

    but i think if you show the gallery – you see that there is on top the last added video and beneath the thumbnails of the older videolinks in that playlist.
    All these thumbs are in a unique container ( class: epyt-gallery-list ) if you set this to display none – you will have on top the newest video link.


    @Guenni007
    THANK YOU so much for your CONTINUED SUPPORT and WILLINGNESS to HELP ME!!!

    I have Embed Plus setup with a YouTube API v3. I’m not sure I totally follow “you see that there is on top the last added video and beneath the thumbnails of the older videolinks in that playlist” and “All these thumbs are in a unique container ( class: epyt-gallery-list ) if you set this to display none – you will have on top the newest video link.

    Can you show me in the plug-in with a screenshot and explain a little further – please. This is new to me and I’m trying to follow along. THANK YOU!!!

    I’ve created a test page: https://kingdomlearners.com/youtube-embed-plus-test-page/ and it plays, but the problem is that once the latest video plays, it continues into the next Daily Word video from the Playlist, etc. etc. I’m pretty sure it’s because I didn’t fully understand your generous instructions.

    Any and all assistance is GREATLY APPRECIATED!

    Best Regards,
    Julio

Viewing 30 results - 871 through 900 (of 10,094 total)