Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #253337

    Hi, how can I edit to remove things, such as “posted by” and the “date” posted of a single post page?

    Where is this page code located?

    #253484

    Hi samforan!

    Thank you for using the theme!

    You can find the post code on includes > loop-index.php. You can remove those element using CSS. Add this on Enfold > Styling > Quick CSS:

    time.date-container.minor-meta.updated, .text-sep-date, .blog-author.minor-meta, .text-sep-cat {
    display: none;
    }

    I hope that helps.

    Best regards,
    Ismael

    #253485

    Thanks for that!

    Can I make the featured image not compacted, but fully expanded constantly?

    http://pollinationproject.org/shop/events/restoration-agriculture-with-mark-shepard/

    Trying to work with EventEspresso here to clean it up a bit.

    #253839

    Hey!

    Thank you for the update.

    You can edit functions.php, find the thumbnail size code on line 102:

    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 );						// images for fullsize pages and fullsize slider
    

    You can increase the width and height of the thumbnail then set the crop parameter to false. Replace the code above with something like this:

    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1200, 'height'=>500, 'crop'=>false );						// images for fullsize pages and fullsize slider
    

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

    I hope that helps.

    Cheers!
    Ismael

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