Viewing 30 results - 8,101 through 8,130 (of 10,095 total)
  • Author
    Search Results
  • Thanks, Dude. That code was to fix the blurry look of the gallery element thumbnails (another forum post), but I think they look ok now. I’ll confirm that this has resloved the problem soon :)

    #279970

    Hi GoodGame!

    Thank you for using the theme!

    You can use the <!–more–> tag or use the Excerpt metabox to configure the archive excerpt. If you don’t want to do that, edit archive.php, find this code on line 184:

    echo $content;
    

    Replace it with this:

    if(!is_archive()){
                echo $content;
    			} else {
    			$excerpt = get_the_post_thumbnail( get_the_ID(), "large"); get_the_excerpt();
    			$excerpt .=  get_the_excerpt();
    			echo $excerpt.'<a href="'.get_permalink().'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow">  &rarr;</span></a>';
    			}

    Cheers!
    Ismael

    #279960
    t3lgroup
    Participant

    Hi,

    After your last update, my image gallery is not behaving as it should. The thumbnails are loading fine, but when you click on a thumbnail it does not open in a lightbox. It just opens ‘straight’ or how you describe it. It does not show the other images in the gallery as well when opens up.

    Please have a look here: http://www.3loptest.dk/products/veo-desk/

    Hey!

    I guess this css code in your child theme style.css file breaks the thumbnails.

    
    #top #wrap_all .avia-gallery-1 .avia-gallery-thumb a {
    width: auto!important;
    }
    

    Try to remove it and check the results.

    Cheers!
    Peter

    #279615
    ryanelkholy
    Participant

    Hello Everyone,

    I made a widget for latest news which I have placed in my website footer. It takes my website posts that I selected and places them in my Latest News section perfectly as I expected. The problem is that I do not want the posts in the footer to be clickable. Neither the thumbnail or the title which shows. I just want it to show a line of news and that’s it. Is there any way of removing the links from my Latest News widget in my footer?

    Thanks!

    #279374

    Hi mixedmedia99!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .woocommerce .thumbnail_container img {
    width: auto!important;
    }

    Best regards,
    Yigit

    #279359

    Topic: Blog feature image

    in forum Enfold
    Omer
    Participant

    Hello,

    When i created a new blog post i have noticed that the big feature image is not shows as well ( it appears smaller than it should be with white spaces)

    I wrote you about it 5 days ago and this was your answer:

    Thank you for the update.

    You can edit functions.php, find this code on line 117:

    $avia_config[‘imgSize’][‘entry_with_sidebar’] = array(‘width’=>710, ‘height’=>270); // big images for blog and page entries
    Change the width and height attribute then set the crop parameter to false to prevent wp from cropping the featured image:

    $avia_config[‘imgSize’][‘entry_with_sidebar’] = array(‘width’=>1500, ‘height’=>540, ‘crop’=> false); // big images for blog and page entriesand page entries
    Regenerate the thumbnails or upload it again.

    I did the changes and the problem was solved but as you can see it suddenly came back again. Please advice me how to fix it.

    Thanks,

    #279273

    Hi!

    You can modify Josues code here: https://kriesi.at/support/topic/how-to-adjust-featured-image-height-in-single-post/#post-274245 and use a different thumbnail size for single posts.

    Replace:

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

    with

    
    $size = (is_single()) ? "square" : "full";
    $current_post['slider']  	= get_the_post_thumbnail($current_post['the_id'], $size);
    

    You can replace “square” with another thumbnail size like ‘masonry’, featured’, ‘featured_large’, ‘portfolio’, ‘gallery’, ‘entry_with_sidebar’,’entry_without_sidebar’,extra_large’ or “magazine”.

    Best regards,
    Peter

    #279230

    Hi nurdwurks!

    Thank you for using the theme.

    We actually prefer a single question on a single thread. Much easier for us to answer them on that manner. Also, it’ll be useful for other users asking for the same question.

    1.) You can remove the title with this on Quick CSS:

    h1.main-title.entry-title {
    display: none;
    }

    2.) Add this on functions.php:

    add_filter('avia_post_nav_entries', 'avia_apply_custom_sort_order_to_post_nav', 10, 2);
    function avia_apply_custom_sort_order_to_post_nav($entries, $settings)
    {
    	if(!empty($entries['prev'])) $temp = $entries['prev'];
    	if(!empty($entries['next'])) $entries['prev'] = $entries['next'];
    	if(!empty($temp)) $entries['next'] = $temp;
    	return $entries;
    }

    For the category filter, add this:

    function avf_same_category_navigation($settings) {
          if($settings['taxonomy'] == 'portfolio_entries')  $settings['is_fullwidth'] = true;
          return $settings;
      }
    
      add_filter('avia_post_nav_settings','avf_same_category_navigation', 10

    3.) Edit the search.php or the includes > loop-search.php.

    4.) Change the color of the ampersand with this on Quick CSS:

    .main_color .special_amp {
    color: red;
    }

    5.) Please refer to this link on how to fix permalink issues: http://codex.wordpress.org/Using_Permalinks#Fixing_Permalink_Problems

    6.) Change the iconlist background color with this:

    .main_color .avia-icon-list .iconlist_icon {
    background-color: red;
    }

    7.) We can set a specific width for the gallery but it might break the responsiveness of the element. Please select the thumbnail size on the Gallery Preview Image Size option.

    8.) Do you mind providing a screenshot of this pointer?

    9.) You can decrease the padding or adjust the width and height with this:

    .av_font_icon.av-icon-style-border .av-icon-char {
    width: 30px !important;
    height: 30px !important;
    padding: 10px;
    }

    10.) Use this to change the hover color of the icon and icon list elemen:

    #top .main_color .av-no-color.av-icon-style-border a.av-icon-char:hover {
    color: red;
    }
    
    .main_color .avia-icon-list .iconlist_icon:hover {
    background-color: blue;
    }

    11.) Edit the menu font on Enfold > Advanced Styling. Edit the Main Menu Link element.

    12.) You can use media queries to hide or remove the accordion slider for mobile device:

    @media only screen and (max-width: 767px) {
    .avia-accordion-slider-wrap {
    display: none;
    }
    }

    Before posting a question, please take some time to search on the forum or review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.

    If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)

    Cheers!
    Ismael

    #278708

    The root of the issue is this image that doesn’t have a thumbnail (and doesn’t want to have one), the gallery popup needs to use the thumbnails in order to work properly:

    I created a test gallery here and you can see that there are no issues so far (i didn’t include Jump_4_400x400).
    http://www.draussen.at/wp-admin/post.php?post=3214

    So, my suggestion would be to re-create the Gallery without that image or re-uploading it.

    Regards,
    Josue

    #278703

    ALB is the advanced layout buiilder.

    The issue seems to be related to a missing thumbnail, try installing this plugin and doing a regenerate.

    Best regards,
    Josue

    #278667

    In reply to: Same settings but not

    Hi,

    Open includes/loop-index.php and look for line 34:

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

    Replace it by this:

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

    Regards,
    Josue

    #278593
    agenciam
    Participant

    The “Displayed Everywhere” widget is appearing at the bottom of the thumbnail photos of the product. The correct is displayed right next to the product description.
    or simplesmenete not appear.
    How to fix this?

    http://fabrikadesites.com.br/auge/enfold.jpg Image

    Sorry for my bad english, I’m using Google Translator.

    A widget “Displayed Everywhere” está aparecendo na parte inferior das fotos miniaturas do produto. O correto é aparecer ao lado direito da descrição do produto.
    ou simplesmenete não aparecer.
    Como corrigir isto?

    Desculpe pelo meu inglês ruim, estou utilizando Google Tradutor.

    #278521

    In reply to: Secondary Menu

    Hey!

    1) You can change the thumbnail size of the slideshow images: http://www.clipular.com/c/5850478747320320.png?k=t_hyVLIacH4mzcuJ_Ac6h1FVP50 – it will determine the slifdehow height and aspect ratio.

    2) I’m sorry but these questions are beyond the scope of our support forum because we can’t help with time intensive theme code customization. You can try to contact the user who posted the website in the showcase thread and maybe he can send you the customized code. If not please hire a freelancer – I guess a skilled developer can probably do this with 2 hours of work (including testing).

    3) You can select it from the “separator” option screen: http://www.clipular.com/c/5449485299744768.png?k=CWr60AqezlGPg7v5YAhHnFDwhRo

    4) You can use this css code:

    
    #top .av-main-nav li#menu-item-2327{
    background-color: #fff;
    }
    

    and replace 2327 with the id of the menu item you want to style (i.e. CONTACT US) and #fff with your custom background color value.

    Regards,
    Peter

    #278127

    In reply to: Same settings but not

    Hi!

    It looks like you already managed to get the correct size for the images:
    http://www.insanayatirim.com/is-gorusmen-icin-hazir-misin/
    http://www.insanayatirim.com/wp-content/uploads/2014/06/Is-Gorusmen-Icin-Hazir-misin-845×321.jpg

    If you want to change the image size you’d need to edit functions.php, line 108 (don’t forget the regenerate the thumbnails).

    Best regards,
    Josue

    #277715

    In reply to: Same settings but not

    Hey erkuto!

    Try re-generating your thumbnails with this plugin: http://wordpress.org/extend/plugins/regenerate-thumbnails/

    Regards,
    Devin

    #277697
    RobReinmuth
    Participant

    Our portfolio is using the same thumbnail for multiple items.

    This reply has been marked as private.
    #277654

    In reply to: Gallery Edit Issues

    Hi Josue,

    Thanks for the investigative work on my image problem.

    I have found the fix and thought it would be helpful to give to you in the event others are experiencing the same issue.

    After applying the fix you will need to re-gen thumbnail images, delete gallery, then re-add gallery.

    Below is the fix & an brief explanation of problem from my hosting provider.

    The code has been added to the functions.php*** (code below) and we have uploaded successfully. Unfortunately, this is not a simple flip a switch type of fix. The problem is caused by WordPress updating to look specifically for Imagick libraries without being backward compatible. The issue with this is that currently the version of imagick that cpanel is set to build into PHP is not the latest release, and that is where the problem comes in. The only resolution we have found currently is to add this code or create a plugin with the information below.

    The quick solution that I have found at this time is to install a plugin which changes this function to use GD libraries.

    To install the plugin, create a folder called “default-to-gd” in /wp-content/plugins/ and create a php file named “default-to-gd.php”, next add the following code:

    <?php
    /*
    Plugin Name: Default to GD
    Plugin URI: http://wordpress.org/extend/plugins/default-to-gd
    Description: Sets GD as default WP_Image_Editor class.
    Author: Mike Schroder
    Version: 1.0
    Author URI: http://www.getsource.net/
    */

    function ms_image_editor_default_to_gd( $editors ) {

    $gd_editor = ‘WP_Image_Editor_GD’;

    $editors = array_diff( $editors, array( $gd_editor ) ); array_unshift( $editors, $gd_editor );

    return $editors;
    }

    ********************************************************************************

    Code added to the functions.php
    The code that we added to the end of function.php is below:

    add_filter( ‘wp_image_editors’, ‘change_graphic_lib’ ); function change_graphic_lib($array) { return array( ‘WP_Image_Editor_GD’, ‘WP_Image_Editor_Imagick’ ); }

    The above fixes worked like a charm…. you might consider adding the to the next upgrade.

    Best Regards
    Rick Scherer

    Hi!

    Thank you for using the theme.

    We’re not sure why the gallery thumbnails are not working on your Android tablet. If you don’t mind, please deactivate the plugins because we’re getting script errors when we check the site. The thumbnails on the blog page are intentionally removed if you’re using the Single author, small preview blog style to give more space for the actual content. You can display it again with this on Quick CSS or custom.css:

    @media only screen and (max-width: 767px) {
    .responsive .template-blog .blog-meta, .responsive .post_author_timeline, .responsive #top #main .sidebar {
    display: block;
    }
    
    .template-blog .blog-meta {
    float: left;
    margin-right: 20px;
    }
    }

    Regards,
    Ismael

    #277368

    Hi rhysbowen!

    Thank you for using the theme!

    1.) That is the gallery shortcode inside a 2/3 column layout. The side contents are text block and accordion element. You can see the same thing if you import the dummy data. :)

    2.) The link http://nbpromos.com/new-polos/ takes me to a 404 page. In case you want to know, the demo with the gallery uses images with 988x642px dimension. You can use larger images, the theme automatically crops them and use different thumbnail sizes on different parts of the theme.

    3.) You can change the body color on Enfold > General Styling. Look for the Main Content and Alternate Content tabs. Depends on the element that you want to change, you can use Quick CSS to add css modifications on the theme.

    4.) If you want to remove the title and breadcrumbs, go to Enfold > Header Layout > Header layout. Disable the option on Header Title and Breadcrumbs setting.

    In case you have any questions, please take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.

    If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)

    Regards,
    Ismael

    dennis_ter
    Participant

    Hi guys,
    I’m a rooky and trying to build my first website. So far so good.
    Have been reading through the (impressive) forum trying to find a solution for the following.

    In the portfolio (grid), I would like to show below the thumbnail:
    Title
    Excerpt line 1
    Excerpt line 2

    Example:
    Company xyz
    Jobtitle
    Year to – from

    In the portfolio items, I can fill in the excerpt, and give a hard enter after ‘Jobtitle’ to write the year on the second line.
    On the website, the excerpt text won’t show enters or extra spaces and therefor put the text behind eachother.

    Is there a work arounf for this?

    Thanks a lot
    Dennis

    Also, we just noticed that the thumbnails are not showing up on some mobile devices in the news section:

    http://beta.pci-group.com/news/

    #277174
    frankyfranky
    Participant

    What i want is:
    use plugin: menu image or Nav Menu Images, to add thumbnail on submenu

    in Menus page, those image options had not shown
    but if i switch to wordpress default theme, it shows

    tried:
    disable all plugins, and just one of that two plugins, not working

    webWahine
    Participant

    Hello
    Sorry if this has been dealt with elsewhere but I couldn’t find another post with the same issue. I am using the gallery element on individual portfolio pages, and when I use more than one image the thumbnails are displaying properly on desktops, my iPod touch, my Android Note 3, my IOS simulator (tablet), but not on my Android tablet, and my client said it was not displaying properly on her iPhone and iPad. Here’s what she sent me:

    screenshot - thumbnails missing images

    Please advise; thank you in advance :)

    #277082
    sunworx
    Participant

    http://www.puntademita-realestate.com/

    The thumbnails are from images over 900 pixesl wide at about 9:6 ratio.

    Every new property I post, the thumbnail is too small.

    Any ideas would be very much appreciated. :)

    Saludos!

    #276994

    In reply to: Ajax Portfolio

    Hello Devin,

    I have tried all that multiple times and even with no plugins active at all. I know you can’t test with every single setup but here is what I have on the page:

    Ajax portfolio
    around 12 – 24 items in the grid (3 or 4 column – tried with smaller and larger numbers)
    grid with excerpt and title
    image size of thumnail 300 by 300
    slider on the top of the page

    Personally I think you probably hit the nail on the head with the problem relating to speed, but, my internet connection is not slow, not super fast but average. It seems like the dynamic element of the page is not working that well when you scroll down before the page loads. That’s the only way I can explain it.

    I appreciate that there are no other reported issues but I have tried this from 3 systems now and they all have the same problem which again leads me to believe speed plus dynamic loading of the images in the grid are the issue. The items in the grid resize and grow according to the thumbnail size (you see the text first and then the grid column grows to show the image). Is there any way to make the grid entry just a static size (the row, column, cell or whatever you call it)

    Thanks

    Andrew

    Hi Mudfish488!

    Thank you for using the theme.

    The code on config.php file controls the size of the thumbnail and you’re correct about the image inheriting the size of its container. You can add this on Quick CSS or custom.css if you want to specify the actual width of the image inside the product grid, default width is 100%:

    #top .thumbnail_container img {
    margin: 0 auto;
    width: 240px;
    position: relative;
    }

    Regarding the search results, how did it get there? Add this css snippet to hide it:

    .woocommerce-page div.page-description {
    display: none;
    }

    Cheers!
    Ismael

    #276814

    In reply to: woo Images

    Hi islandjoe1!

    Thank you for using the theme.

    The thumbnail size of the single product page featured image is controlled on config-woocommerce > config.php. Find this code on line 16:

    $avia_config['imgSize']['shop_single'] 		= array('width'=>450, 'height'=>999, 'crop' => false);
    

    Change the width and height attribute then regenerate the thumbnails or upload it again. Note that it is inside the four units container. The featured image will inherit the size of the container.

    Cheers!
    Ismael

    #276633

    Hey!

    WordPress scaling using the thumbnail sizing will shrink an image until the longest edge fits. So if you upload an image that is 1500×1500 it will not shrink it.

    Then the theme will take whatever image is selected for that section and expand it with css to make sure it fits without any empty space. So if the image was much taller than it was wide you can end up with an image that is pixelated since the long edge was shrunk to fit which made the width much smaller than its final usage. Then the image got stretched by the css to fit the much larger width.

    Cheers!
    Devin

Viewing 30 results - 8,101 through 8,130 (of 10,095 total)