[Resolved] Gallery, Blog Question

Home Forums Support [Resolved] Gallery, Blog Question

Home Forums Support Gallery, Blog Question

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #24754
    Maxime

    Hi,

    1) Is there a way to affect two different blog page ? I would like to display only some article on one page (first category) and another article’s category on another page.

    2) I want to use Gallery function but I could not find one on your theme…
    So I decided to use wordpress default gallery. I need to link my images to Attachment page but I want this page to display only two things: my image and its description. Is there a way to hide other items and comment field on attachment page ?

    Thank you,

    #24810
    Tom
    Lead Developer
    Lead Developer

    Hi there,

    1) For sure – you can simply link people to the category. In “Appearance > Menus”, you’ll see you can add Categories to the menu just like pages. The category page will only show posts in that category.

    2) To disable comments, use this plugin: http://wordpress.org/plugins/disable-comments/

    To remove other elements, you can use this CSS:

    .attachment .entry-meta {
          display: none;
    }
    #26181
    Maxime

    Hi,

    Where should I add the CSS code ?

    Thank you

    #26182
    Tom
    Lead Developer
    Lead Developer

    I would use a plugin like this: https://wordpress.org/plugins/simple-css/

    #26461
    Maxime

    Thank you, it’s working and nice like that ! I would like to display next previous arrows if its possible ?

    Also I have an issue, image is displayed twice. One is above the post now as you can see: http://www.conference-bordeaux.fr/promotions/avocats-2012/#main

    #26585
    Tom
    Lead Developer
    Lead Developer

    This is because you have a featured image set, and you’re displaying it in the content as well.

    If you have the Disable Elements addon installed, you can choose to hide the page header/featured image by checking that checkbox.

    Let me know ๐Ÿ™‚

    #26628
    Maxime

    This is a wordpress Gallery so I didn’t specify a featured image… Also can I enable only previous/next arrows ?

    I tried to use your plugin Disable Element but it doesn’t work ! Could you see for yourself on my website ? I’ve already e-mailed you an user account.

    Thank you

    #26788
    Tom
    Lead Developer
    Lead Developer

    You can use this CSS to disable the page header on attachment pages:

    .attachment .generate-page-header {
          display: none;
    }
    #27468
    Maxime

    Thank you ! How can I enable previous/next arrows ?

    #27803
    Tom
    Lead Developer
    Lead Developer

    We removed the next/prev links with the code above.

    To bring them back, do this:

    .attachment footer.entry-meta {
          display: block;
    }
    #56259
    Maxime

    Hi,

    Your CSS code

    .attachment .generate-page-header {
    display: none;
    }

    is not working anymore since I updated Generate Press.

    Can you give me the new one ? My problem is when I click on a gallery element I have the gallery image twice like on this page: http://www.conference-bordeaux.fr/promotions/sipa-919991-jpg_672419/#main

    Thank you,

    #56261
    Tom
    Lead Developer
    Lead Developer

    Did you add that CSS to the core CSS of the theme? If so, it makes sense it was removed as updating removes all of the core files and adds the new ones.

    I suggest using the plugin in my signature below to add that same CSS.

    Let me know ๐Ÿ™‚

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