Viewing 30 results - 8,011 through 8,040 (of 10,095 total)
  • Author
    Search Results
  • #289689

    The only place I have found that allows me to enter a custom url is in the ajax portfolio option.

    By video thumbnails are you referring to using a video thumbnail plugin that ads a thumbnail to the media library and then using that thumbnail in a gallery?

    Can I force the video into the themes lightbox?

    #289647

    1/ No… I do not link to the thumbnail version of the image… I choose the full size version:

    It’s Enfold that do that code:

    <a class="avia_image lightbox-added" href="http://www.wp-master.org/wp-content/uploads/2014/07/visuels_flous_3-1030x643.jpg"
    

    2/ Well i’ll wait for an update that should comme soon, isn’t it ?
    Devin, just said:
    I’ll go ahead and close this one since any fix will be pushed out on ThemeForest.

    #289604

    Hi!

    You can add the video thumbnails like a regular gallery and then make each have a custom link to the video url.

    Regards,
    Devin

    #289594

    Hi pako69!

    1) Because you link to the thumbnail version of the image. The image link points to http://www.wp-master.org/wp-content/uploads/2014/07/visuels_flous_4-1030×643.jpg and not http://www.wp-master.org/wp-content/uploads/2014/07/visuels_flous_4.jpg
    Make sure the link points to the original image.

    2) Yes, I think this is a bug. To fix it open up enfold/js/avia.js and replace:

    
    				image: {
    				    titleSrc: function(item){
    						// return item.el.find('img').attr('title');
    						return item.el.attr('title');
    					}
    				},
    

    with

    
    				image: {
    				    titleSrc: function(item){
    				    	var title = item.el.attr('title');
    				    	if(! title) title = item.el.find('img').attr('title');
    						return title;
    					}
    				},
    

    I’ll ask Kriesi to fix this with the next update.

    Best regards,
    Peter

    #289420

    In reply to: Team Member Layout

    Hallo sascha-Juliot

    Ja, kann man ändern:

    In functions.php am Ende folgenden Code einfügen und xxx mit einer definierten image size ersetzen (80*80 ist thumbnail):

    
    add_filter ('avf_testimonials_avatar_size', 'my_avatar_size', 10, 3);
    
    function my_avatar_size($size,  $src, $class)
    {
    $size = 'xxxx';
    return $size;
    }
    
    

    Regards,
    Günter

    #289411

    In reply to: Team Member Layout

    Hallo Günter,

    besten Dank für die schnelle Antwort. Dann nehmen wir doch das Testimonial-Layout (Das enfold-theme benutze ich ich ja gerade um nicht alles komplett überarbeiten zu müssen/lassen).

    Die abgerundeten Ecken habe ich per CSS schon testweise ändern können, stellt sich jetzt nur die Frage ob man die dazugehörigen Fotos auch größer bekommt (statt 80x80px -was glaub ich thumbnail-größe ist – auf 180x180px)?

    beste grüße nach Wien

    sascha-Juliot

    #289341

    Hey dcashion!

    Thank you for visiting the support forum!

    If you want a square thumbnail for blog posts, edit functions.php. Find this code on line 103:

    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>270);		                 // big images for blog and page entries
    

    Replace the height to 710:

    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>710);		                 // big images for blog and page entries
    

    Upload the images again or regenerate them using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/

    Regards,
    Ismael

    #289337

    In reply to: Image size rendering

    Hey!

    Thank you for the update.

    You can set the thumbnail size on Slideshow Image and Video Size option. Select the “No Scaling” option if you want to use the actual image size.

    Cheers!
    Ismael

    #289301

    In reply to: Enfold Bugs/Issues

    Hey!

    Thank you for the update. It’ been weeks, not sure where we’re at right now.

    1.) Can you please remove all css modifications that we added for the masonry section? I would like to see without those css code. Right now, it looks fine on my end.

    2.) You haven’t added the code that I gave you. The purpose of the filter is to force the testimonial element to use the square thumbnail size which is 180x180px in size. It will not resize the actual image container though. It will remain 80x80px in size and in retina display it will look sharper because we’re using a large image in a smaller container.

    Best regards,
    Ismael

    #289300

    In reply to: Magazine Thumbnails

    Hey!

    Thank you for the update.

    If you want to change the small magazine article thumbnails, please use this:

    .av-magazine-sideshow .av-magazine-thumbnail img, .av-magazine-sideshow .av-magazine-thumbnail {
    width: 80px !important;
    }

    Regards,
    Ismael

    #289231

    In reply to: Enfold Bugs/Issues

    This reply has been marked as private.
    #289217

    In reply to: Magazine Thumbnails

    .av-magazine-thumbnail img, .av-magazine-thumbnail {
    width: 100px !important;
    }

    .av-magazine-hero .av-magazine-thumbnail {
    width: 100% !important;
    }

    #289143

    In reply to: Magazin Thumbs

    Hi!

    Please use following code instead

    .av-magazine-sideshow .av-magazine-thumbnail img {
    height: 49px!important;
    }

    Cheers!
    Yigit

    #289022
    dcashion
    Participant

    Hi there, I’m wondering if you have a recommended blog post image size that will work for the square thumbnail in the blog and also the larger pic on, full width with sidebar for the post itself. Not matter how much I play around with the image sizes it’s still cropping them in the wrong place.

    See URL that I have posted below for an example of this. I used dimensions of 849×565 in this instance.

    Thanks for your help.
    /Deirdre

    #288943
    envapk2
    Participant

    Hi
    With the Portfolio Grid it there are Excerpt options – Title and Excerpt, Only Title, etc. But with the Plugin Additions Product Grid there are no options, thumbnails just display the title. Is there a way to have the portfolio grid options in the Product Grid?

    many thanks

    #288915

    Hey Snerp!

    Thank you for using the theme.

    Please add this on the child theme’s functions.php:

    function avia_change_image_size_array() {
    global $avia_config;
    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>420);		                 // big images for blog and page entries
    avia_backend_add_thumbnail_size($avia_config);
    }
    add_action( 'init', 'avia_change_image_size_array', 1);

    Upload the image again or regenerate the thumbnails using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/

    Cheers!
    Ismael

    #288875

    In reply to: Magazine Thumbnails

    Hey!

    You can add this snippet after that one:

    
    .av-magazine-hero .av-magazine-thumbnail {
    width: 100% !important;
    }
    

    Best regards,
    Devin

    #288785

    Hi!

    Thank you for using the theme!

    First, using the plugin create a custom field called portfolio-test for example. Edit admin > register-portfolio.php, find this code on line 38:

    'supports' => array('title','thumbnail','excerpt','editor','comments')
    

    Replace it with:

    'supports' => array('title','thumbnail','excerpt','editor','comments','custom-fields')
    

    This will enable the custom fields or portfolio items. Next edit the portfolio item then add the portfolio-test custom field. Edit config-templatebuilder > avia-shortcodes > portfolio.php find this code on line 471:

    $output .= !empty($excerpt) ? "<div class='grid-entry-excerpt entry-content' ".avia_markup_helper(array('context'=>'entry_content','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup)).">".$excerpt."</div>" : '';
    

    Replace it with this:

    $custom_field1 = get_post_meta( $the_id, 'portfolio-test', true );
    					 
                        $output .= !empty($excerpt) ? "<div class='grid-entry-excerpt entry-content' ".avia_markup_helper(array('context'=>'entry_content','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup)).">".$excerpt."</div>" : '';
    					$output .= $custom_field1;

    We create a variable called $custom_field1 and applied the portfolio-test key. We then output the $custom_field1 below the excerpt.

    Best regards,
    Ismael

    #288657

    In reply to: Magazin Thumbs

    Hey!

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

    .av-magazine-thumbnail img { height: 49px; }

    Best regards,
    Yigit

    #288497
    mattock
    Participant

    Hi I’ve recently just noticed a new problem with my site http://www.davidmattock.co.uk
    on the homepage I have my portfolio, it is set to show maximum 16 thumbnails per page and it has two pages and under the thumbnails shows two buttons “1” and “2” to go to page 1 of 2 or 2 of 2. but they have stopped working.

    When I click on page 2 of 2 button under the thumbnails it just reloads the whole home page and stays on portfolio page 1 ?
    I have the latest version of Enfold, many thanks

    #288461

    In reply to: Magazin Thumbs

    Hey, rgenerating thumbnails solved not the problem.

    regards

    #288446

    Hi djshortkut!

    Thank you for using our theme.

    If you want to change the sizes you have to modify a core file.

    Open functions.php in the root folder in a plain text editor and goto line 101 and line 108 (for extra large layouts).

    Replace the values of width and height:

    
    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>270);
    

    For already uploaded images you either need to re-upload the image or use the thumbnail regeneration plugin: http://wordpress.org/extend/plugins/regenerate-thumbnails/

    Keep in mind, that you have to do these changes after every update because this file is overwritten.

    Regards,
    Günter

    • This reply was modified 11 years, 8 months ago by Günter.
    #288179

    In reply to: Magazin Thumbs

    Hey!

    Try regenerating the thumbnails: http://wordpress.org/plugins/regenerate-thumbnails/

    Regards,
    Josue

    #288150

    In reply to: Magazine Thumbnails

    Ismael,

    Thank you for your response, I have another question concerning the Main Pic thumbnail (large one) –

    .av-magazine-thumbnail img, .av-magazine-thumbnail {
    width: 80px !important;
    }

    this changed all the thumbnails including the large one – how can i just change the smalls one and not touch the large one?, thanks.

    #288148

    Topic: Magazin Thumbs

    in forum Enfold
    suchfin
    Participant

    Hi, i have problem with the magazin thumbnails. They are not in the correct size.

    The images are rezising to 49 x 24 px but it should be to 49 x 49 px

    How can i fix that

    regards

    artemrepin
    Participant

    Greetings,
    I have resized the images in WooCommerce>Settings>Products:
    Catalog Images 225 × 400 px
    Single Product Image 450 × 800 px
    Product Thumbnails 113 × 200 px

    to fit the sizes that I use for my products but the arrows for the previous and next products display images that are too large.
    I would like the images and description to fit into the box that slides out with the arrow. I feel that in WooCommerce>Settings>Producs: there should be another Product Image option or options that could be added, in my case for the image arrow thumbs.
    Help Please ASAP, as I need to publish the site !

    #287366

    Hi Yigit,

    sorry but I do not understand what i have to do. If I follow their demo, they give you this code:


    <div id=”inline-1″ class=”hide”>
    <p>This is inline content opened in prettyPhoto.</p>
    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p></div>
    </div>

    How does that relate to the following url that displays the .ics calendar:

    https://www.airbnb.it/calendar/ical/472691.ics?s=97e154431892044a1aaee220b3c356e4 ?

    In other words, in a page of my site what do I have to do to display this calendar?
    I use a Code Block element (?), then inside it I paste the inline code above and I insert the url somewhere inside that code?

    Maybe you understand what I mean if you see the page I am trying to build:

    http://www.bangkokplanet.com/calendar-rates/

    and compare it to another one I did (http://casitasitges.com/calendar-rates/), where the calendar was inserted via a widget which I cannot unfortunately get in the first case, because the issuing website only provides the .ics url.

    Thanks for your help.

    Antonio

    #287198

    In reply to: Comments not working

    Ok. Thanx

    Another question: When I post a blog there is a thumbnail pic of a pen beside the post. Can I change that thumbnail to one of my own pics, and if not, can I remove it?

    #287005

    and finally …
    no possibility that although many photographs are included look just a row of thumbnails?
    Thank you very much for your help …
    I look forward to the answer, it’s the only thing I have left to finish my new website … thanks for everything
    regards

    #286881

    Thank you for your response, however the replaced code has some bugs. The second post still has a thumbnail image, and isn’t floating next to the other big image, but is below instead. Also see that the small ones have all bunched together in the right row…
    See screenshot: http://snag.gy/zjQB9.jpg

Viewing 30 results - 8,011 through 8,040 (of 10,095 total)