Viewing 30 results - 9,511 through 9,540 (of 10,094 total)
  • Author
    Search Results
  • Thanks. With a bit of tweaking I have gotten it how I’d like it, however, the odd scaling of the thumbnails remains a mysteery – any thoughts on why it is doing that?

    flylanddesigns
    Participant

    Hi –

    I’m using Enfold, and have set up this website: http://www.flylanddesigns,com

    Something strange has been happening. When you click on a portfolio page, it first loads the thumbnails at the landscape size, then once they all appear, they go blank and it reloads them at the square 450×450 size (which is the size I want).

    In Safari, once they reload to the square size, they are all blank white. That’s not good. And sometimes this happens in Chrome, though not often.

    Here are the plugins I have installed:

    Akismet
    Google XML sitemaps
    Post Types Order
    Regenerate Thumbnails
    Vibe SEO Pack
    Woo Commerce
    WP-DB Manager
    WP Smush it
    WP Super Cache

    Also, an unrelated question – is anyone on your team interested in doing work on my site and charging hourly? I’d like to have someone who knows what they’re doing go in and optimize the site to make it as fast as possible. I’m not sure if that’s something that you’re allowed to do. Please contact me (contact form on my website) if interested.

    Thanks!

    #163514
    DavyE
    Participant

    Hi, the following is kind of difficult to explain, so let’s hope I succeed in doing so. What I basically need to do is automatically show certain content felds on my portfolio pages. For example:

    I have hundreds of customers which I added in the portfolio section. I’ve added the whole list of customer logo’s on a page. When visitors click on a customer logo to see the customer details page, they get details such as a quote, pictures, downloadable pdf files, and so on. This information is added through the Avia Layout Builder.

    BUT, above the content of the Avia Layout Builder, I want to automatically show the following elements, because most customer detail pages will consist ONLY this info and it’s therefore a big timesaver to make this happen automatically:
    – Show the customer logo (featured image)
    – Show the customer name (page title)
    – Show the customer country (assigned category)
    – Show the customer website link (custom field added with Simple Fields plugin)

    On top of that, I’d like to be able to layout it somewhat so that the logo is placed to the left of the title+country+website. I’ve already tried adding some php in the single-portfolio.php file, but my PHP knowledge is very limited and I keep getting errors.

    To call for the correct fields, I think it’s something like:
    – Featured image: the_post_thumbnail( );
    – Page title: the_title( );
    – Assigned category: get_the_term_list( get_the_ID() )
    – Simple Fields custom field: $customers_website = simple_fields_get_post_value(get_the_id(), array(3, 1), true);

    Below is an example of the code I’ve put together, which still has an error and seems to replace any content inside the Avia Layout Builder, but as I explained it’s supposed to just show above it.

    <?php 
    echo "<div style='float:left; border:1px solid #E1E1E1; margin-right:5%; margin-bottom:20px;'>";
    if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it.
    the_post_thumbnail( );
    } 
    echo "</div>";
    the_title( '<h3>', '</h3><p>' ); 
    			   
    echo strip_tags (
    get_the_term_list( get_the_ID(), 'customers_entries' )
    );
    $customers_website = simple_fields_get_post_value(get_the_id(), array(3, 1), true);
    echo "</p><p><a href='$customers_website' target='_blank'>$customers_website</a></p>";
    ?>

    Any advice is greatly appreciated.
    Thanks in advance!

    #163502

    Because of the previous part:

    echo "<div style='float:left; border:1px solid #E1E1E1; margin-right:5%; margin-bottom:20px;'>";
    if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it.
    the_post_thumbnail( );
    } 

    the_post_thumbnail is put in between a div. Atm the div has inline styling, but that’s just temporary. PHP is definitely not my specialty. That piece of code is only 10 rules or so and there is already some error. I’ve just checked the log and even on the “good link” there is an error. Guess I’ll have to find a better way to achieve this.

    I can look on the internet, BUT my new question depends on the theme, so I’ll ask that here. Maybe better in a new topic?

    • This reply was modified 12 years, 5 months ago by DavyE.
    #163491

    Glad we could help. You just need to close the initial topic, but don’t worry i’ll do it for you :)

    Regards,
    Josue

    #163475

    With the new support site can you state that this subject has been solved? The last site I could always mark it with a green tick.

    #163474

    Perfect, thanks Josue.

    #163448
    asherbarrett
    Participant

    so I have subcategories set to be the landing page for the user when they go to our store here http://tinyurl.com/jvqcdns. I like how the categories have thumbnails that I added in the categories tab. but once a category is selected I don’t like the category image that shows above the products.http://tinyurl.com/mtjal2h

    How would I get ride of that image above the products once a user clicks on a category.

    #163410

    Hello Ismael,

    I tried your solution, but not working. I made sure all thumbnails are in proper size.
    This is screenshot for an image being displayed on Retina in three different methods.
    http://onthe8.com/corporate/test.jpg
    Screenshot

    Main link is
    260 x 185
    http://www.onthe8.com/wp-content/uploads/acres.jpg

    Retina link is
    http: (Email address hidden if logged out)
    520 x 370

    Whole website is working properly but portfolio Grid.
    Its not the thumbnail Size issue, its how its being displayed (May Be CSS), Please let developer know, Its a bug.

    Thanks
    Jas

    Hi!

    You can use this:

    .avia-post-nav:hover .entry-info-wrap {
    width: 140px;
    }
    
    .avia-post-nav .entry-info {
    width: 100px;
    }
    
    .avia-post-nav.avia-post-prev .entry-image {
    position: relative;
    left: 20px;
    }
    
    .avia-post-nav.avia-post-prev .entry-image {
    position: relative;
    right: 20px;
    }

    Cheers!
    Ismael

    #163389

    Hello!

    You’re using 3 columns for your portfolio? You can edit this line of code:

    $avia_config['imgSize']['portfolio'] = array(‘width’=>465, ‘height’=>346); // images for portfolio entries (2,3,4 column)

    Replace it with:

    $avia_config['imgSize']['portfolio'] = array(‘width’=>346, ‘height’=>346); // images for portfolio entries (2,3,4 column)

    Regenerate the thumbnails: http://wordpress.org/plugins/regenerate-thumbnails/

    Regards,
    Ismael

    • This reply was modified 12 years, 5 months ago by Ismael.
    #163380

    Hi!

    Edit functions.php, find this code:

    $avia_config['imgSize']['portfolio_small'] = array('width'=>260, 'height'=>185 ); // images for portfolio 4 columns

    Replace it with:

    $avia_config['imgSize']['portfolio_small'] = array('width'=>520 'height'=>370 ); // images for portfolio 4 columns

    The image thumbnails you’re uploading as portfolio thumbnails are so small. Please upload a larger image, twice the size if possible.

    Best regards,
    Ismael

    #163266

    Hi artistic24459!

    I think that’s an unexpected behavior, however here’s a quick fix, apply this CSS to the custom.css file or in the Quick CSS section:

    #top .avia-gallery .avia-gallery-thumb a{ width: 10% !important; }

    Regards,
    Josue

    Thanks!

    I put the thumbnails back in here –

    goo.gl/6zdyuS

    You’ll see how some jump out of the circle; each portfolio entry that looks odd seems to have an enlarged image in the thumbnail on the portfolio list page. I has having a lot of trouble uploading images while populating the entires.

    #163182
    Anonymous

    Hi Devin, am I allowed to join in? I have a the same thing in mind, I would like square preview images in the 3 column Ajax portfolio view.
    In my former attempts with the plug-in above the grey image just got squeezed into a square shape, and the coloured one behind did not change at all :(
    Here is a copy of the functions.php. section you mentioned, but there is no ‘gallery’. How do I change the grey preview image & the coloured image without distortion?

    //register additional image thumbnail sizes that should be generated when user uploads an image:
    global $avia_config;

    $avia_config[‘imgSize’][‘widget’] = array(‘width’=>36, ‘height’=>36 ); // small preview pics eg sidebar news
    $avia_config[‘imgSize’][‘post-format-image’] = array(‘width’=>630, ‘height’=>999, ‘crop’=>false); // big images for post format image and gallery posts
    $avia_config[‘imgSize’][‘fullsize’] = array(‘width’=>930, ‘height’=>930, ‘crop’=>false); // big images for lightbox and portfolio single entries
    $avia_config[‘imgSize’][‘featured’] = array(‘width’=>930, ‘height’=>340); // images for fullsize pages and fullsize slider
    $avia_config[‘imgSize’][‘portfolio’] = array(‘width’=>465, ‘height’=>346); // images for portfolio entries (2,3,4 column)
    $avia_config[‘imgSize’][‘logo’] = array(‘width’=>465, ‘height’=>220); // images for dynamic logo/partner element

    //dynamic columns
    $avia_config[‘imgSize’][‘dynamic_1’] = array(‘width’=>446, ‘height’=>151); // images for 2/4 (aka 1/2) dynamic portfolio columns when using 3 columns
    $avia_config[‘imgSize’][‘dynamic_2’] = array(‘width’=>609, ‘height’=>210); // images for 2/3 dynamic portfolio columns
    $avia_config[‘imgSize’][‘dynamic_3’] = array(‘width’=>688, ‘height’=>151); // images for 3/4 dynamic portfolio columns

    Thx in advance!

    Hi webWahine!

    We’ll need to see the site live and inspect what you have now in an example. You can use http://goo.gl to hide your URL if you need to.

    Regards,

    Devin

    #163140

    Hi Matt,

    You can use this plugin to change the default Gallery size to use a square image ratio (710×710):
    http://wordpress.org/extend/plugins/simple-image-sizes/
    Or change this line in your functions.php file to do the same:
    $avia_config['imgSize']['gallery'] = array('width'=>710, 'height'=>575 ); // images for portfolio entries (2,3 column)

    After changing the size you will need to regenerate your thumbnails with the same plugin above.

    Regards,

    Devin

    #163082

    Hi mariorho,

    The category thumb is a pre-set image thumbnail size. So when you upload it, the image gets processed by WordPress which then builds thumbnails based on the theme and WooCommerce.

    So for that image and area its using an image setting which is cropping it at 430×360. I would suggest using this plugin to look at your image sizes and try to find where that is coming from: http://wordpress.org/extend/plugins/simple-image-sizes/

    I don’t see it as any of the default sizes from the theme so I’m not sure what has been changed.

    Regards,

    Devin

    #163050

    I’ve basically added this to that single-portfolio.php file:

    <?php 
    				// DYNAMIC CONTENT
                  echo "<div style='float:left; border:1px solid #E1E1E1; margin-right:5%; margin-bottom:20px;'>";
    			  	if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it.
                  the_post_thumbnail( );
                  } 
    			  
    				the_title( '</div><h3>', '</h3><p>' ); 
    			   
    				echo strip_tags (
    				get_the_term_list( get_the_ID(), 'customers_entries' )
    				);
    				$customers_website = simple_fields_get_post_value(get_the_id(), array(3, 1), true);
    				echo "</p><p><a href='$customers_website' target='_blank'>$customers_website</a></p>";
    				?>

    This is supposed to make sure that the logo (featured image), the title and a custom field of that specific page are automatically shown on the page in a specific way. If I delete that piece of code, the page is back to normal (empty content though).

    What I’m trying to achieve is to have a few elements of the portfolio page to be shown, then see all of the page content (which doesn’t seem to load now) and then the footer etc.

    The strange thing is, the “Good link” has the exact same piece of code and there’s no error there.

    • This reply was modified 12 years, 6 months ago by DavyE.
    #163012
    artistic24459
    Participant

    After updating to version 2.1 my thumbnails in the Ajax portfolio are not showing incorrectly.

    http://chriswardphotography.net/business/portfolio/

    I have the ‘Gallery Thumbnail Columns’ set to 10 but its showing 5.

    I have taken all my css out and no change. Also turned of my plugin’s no change. Any ideas?

    By the way nice new forum site :-)

    #162875

    In reply to: No menu

    Hello

    I have checjked and you are not correct. The theme version is already the latest. I would attach a thumbnail but this forum does not facilitate this,

    There is no responsive menu on an ipad.

    #162864

    Tbh there’s no easy way to remove the spaces. The Enfold gallery does not support a masonry layout at the moment (eg like demonstrated here: http://www.nextgen-gallery.com/nextgen-pro/#promasonry ) and if the images have different aspect ratios you’ll see white spaces because the grid is not flexible. We’ll consider to add this gallery layout to Enfold in the future but (for now) I’d suggest to crop the thumbnails (then all thumbnails have the same size & aspect ratio) or to use the nextgen Gallery plugin with the pro extension: http://www.nextgen-gallery.com/nextgen-pro/ which supports the masonry layout too.

    hi, again

    that didn’t change the width of the rollover area itself – i’d prefer to actually keep the thumbnails, but for some reason when i was importing the images, some worked OK and others are seen as much larger in the post thumbnail list when editing – perhaps a flaw in the host…

    regardless, the rollover to the left is now wrapping the text and to the right it still looks like about 240 pixels on hover, but i think that if the name isl onger than 100 pixels it’s going to wrap, and i just want the overall hover area to be tighter

    thanks again :)

    Hey,

    You can add this:

    .avia-post-nav .entry-info {
    width: 100px;
    }

    Regards,
    Ismael

    Sure – if you visit my site: http://www.flylanddesigns.com and click on any of the images in the portfolio section, I’d like the image list that comes up in the ajax portfolio after you click on a thumbnail to have a little more space between each image.

    #162562

    Hi,

    Animation is triggered when thumbnails displayed and since you have 2 big thumbnails, they appear when both of them displayed

    Regards,
    Yigit

    Hey Unfortunately, since the width and height of the image will change when on different devices setting a fixed height wont really work. My best recommendation would be to create and upload a custom “dummy” image that you use if you dont want to display a feature image

    Thank Ismael, that did it. Probably a good chunk of css to add in a future update.

    webWahine
    Participant

    hi there

    i have added this to my css, which removes the thumbnail:

    .avia-post-nav .entry-image {
    display: none!important;
    }

    i am also trying to reduce the width of the area on rollover, and tried:

    .avia-post-nav:hover .entry-info-wrap {
    width:140px;}

    but the text is not displaying properly now; please advise, thanks :)

    Hey,

    You can add this on your custom.css or Quick CSS:

    .avia-content-slider.avia-content-grid-active .slide-image {
    min-height: 111px;
    }

    This will force the placeholder to show even without the featured image.

    Regards,
    Ismael

    • This reply was modified 12 years, 6 months ago by Ismael.
Viewing 30 results - 9,511 through 9,540 (of 10,094 total)