Site logo

Archived topic

Gallery, Blog Question

11 replies · Started by Maxime on September 5, 2014

Viewing posts 1–12 of 12

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,

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;
}

Hi,

Where should I add the CSS code ?

Thank you

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 :)

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

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

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

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

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

To bring them back, do this:

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

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 :)

This archived topic is closed to new replies.