Tagged: 

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #627911

    Good Morning,

    I am having an issue with a portfolio not showing up on the portfolio page… is there a way to fix it?

    right now there is only one showing out of 2.

    ( i am also seeing an issue with the link above in the image that is showing here in this topic….
    Also we ere wondering if there was a way to add a font to the list: American Typewriter

    IS there a way also to have a video instead of a featured image on a portfolio

    We are having an issue uploading an image – we are getting an Http error. any thoughts? Thanks

    • This topic was modified 8 years, 6 months ago by grwebs.
    #629118

    Hey grwebs,

    1. Both portfolio items are showing although only one of them has an featured image set.

    2. Custom fonts can be added via custom CSS, we can help you with this if you hand us the font-file.

    3. The HTTP error is most likely related to your server capability, the theme adds multiple image sizes so each time you upload a new image it gets resized to these, one thing you can do is disable some of the image sizes, you can do that by adding this code to theme / child theme functions.php:

    function ava_image_sizes() {
    remove_image_size(‘masonry’);
    remove_image_size(‘magazine’);
    remove_image_size(‘widget’);
    remove_image_size(‘featured’);
    remove_image_size(‘featured_large’);
    remove_image_size(‘extra_large’);
    remove_image_size(‘portfolio_small’);
    remove_image_size(‘gallery’);
    remove_image_size(‘entry_with_sidebar’);
    remove_image_size(‘entry_without_sidebar’);
    remove_image_size(‘square’);
    }
    add_action( ‘after_setup_theme’, ‘ava_image_sizes’, 11 );

    Also, i’d strongly suggest you using a child theme as most of the fixes/requests would require editing files, you can use the following plugin to make the transition:
    http://wordpress.org/plugins/child-theme-configurator/

    Best regards,
    Josue

    #634760

    Thank you! I would love your help doing the fonts.

    How do I get you the font files? I have them all.

    Also, another problem we are having is:
    For the TEAM page, when I add social profile links to team members layout, the social icons don’t show up.

    #634781

    Hey!

    You need to convert the fonts, to font face – web fonts:
    http://transfonter.org/

    and provide us the zip file.

    When you do, the font can be added to the site.
    Regarding the team, where have you puted it, can we see it please?

    Cheers!
    Basilis

    #634789

    How do I provide the zip file

    #634806

    Hi,

    upload it to dropbox or similar, then post the link here.

    Best regards,
    Josue

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.