Features / Look for futur updates

Posted in: Newspaper
Post count: 260

Hello

I have some ideas, so I open a thread on these ideas.

First one, under the title, there are informations on author, date and categories.

It would be very nice if there will be icon like these for example:

Other ideas will come some (I made a list).

Regards

  • This topic was modified 10 years by Thomas.
  • This topic was modified 10 years by Thomas.
  • This topic was modified 10 years by Thomas.
Post count: 7909

Hi,

We are open to suggestions, I will add your topic on our suggestions list. The developers will look to your suggestions and they will decide what can be implement to our themes.

Thanks!

Post count: 260

Hello

Another suggestion for the pagination features.

Example here with a very big post subdivided in 6 pages with the page break feature:

http://www.virtualmagie.org/articles/comptes-rendus/concours-et-congres/23eme-fism-2006-stockholm/

As you see it appears like this:

But it is not very clear for readers that there are other pages after the first (it is just numbers) ! 🙁

1/ I think i will be interesting to put the line on the right.

2/ Put a block title saying for example: Go to the next pages: (and with the possible to change the sentence in admin).

3/ Like you recently did with Smart list, create a new simple but effective feature.

My ideas:

There will be a fourth part after Reviews named Page.

When you go on this part, you could activate this and choose the Title tags, for example H2.

And now the system could do simple things like looking for H2 after each Break page code and used for title.

This title could be use to do a summary at the begining of each begining page.

I create sort of a example using your blockquote code:

blockquote class="td_quote_box td_box_right"

Of course at the end of the article under the 1 / 2 / 3… itcould have a select with the names of each elements of the summary. “Go to…”

Hope you could propose us those things quickly! 🙂

  • This reply was modified 10 years by Thomas.
  • This reply was modified 10 years by Thomas.
Post count: 260

Another one:

In the posts, on the photo, it would be cool that the text caption appears ON the photo but not under.

Example here:
http://www.lefigaro.fr/actualite-france/2015/08/22/01016-20150822ARTFIG00038-comment-trois-amis-d-enfance-sont-devenus-les-heros-du-thalys.php

EDIT: I mean the legend appear ONLY when we put our mouse on it.

  • This reply was modified 10 years by Thomas. Reason: EDIT: I mean the legend appear ONLY when we put our mouse on it
Post count: 7909

Hi,

You thread is added on our suggestions list, like I said above. Thanks for post pagination suggestion, unfortunately for the moment I’m not sure if it will be some changes for post pagination, maybe there is a plugin that can help you achieve this.
Regarding you second suggestion, please check this solution – https://forum.tagdiv.com/topic/image-caption-2/

Thanks!

Post count: 260

Thanks for the CSS.

It is not exactly what I need (because even if the caption is hidden, it take space so it is why it will be better to have it ON the image exactly like my example: http://www.lefigaro.fr/actualite-france/2015/08/22/01016-20150822ARTFIG00038-comment-trois-amis-d-enfance-sont-devenus-les-heros-du-thalys.php ).

If with a CSS code hack it is possible please fill free to give me the right code! 🙂
Of course, put this update in the correct thread.

Another idea:

On the posts at the end, there a block for the name of next/previous articles.

On some theme and plugin, those information a outside of the boxed.
Near left and right border of the browser, you have big arrows.
When you go on it, name and photo of next or previous article appears.

Very cool feature beacause you could see more due to the photo and in the same time save space under the article.

  • This reply was modified 10 years by Thomas.
Post count: 7909

Hi,

Please try this custom css for image caption(also css for hover effect is added) – http://screencast.com/t/cVvmWmVer4LZ

figure {
position: relative;
}
.wp-caption-text {
position: absolute;
bottom: 0;
color: #fff;
background-color: #222;
margin: 0 !important;
padding: 3px;
opacity: 0;
}
.wp-caption:hover .wp-caption-text {
opacity: 1 !important;
}
.td-post-featured-image:hover .wp-caption-text {
opacity: 1 !important;
}

Hope this helps!

Post count: 260

Many Thanks Alin

A way to define the black background with a 80% transparency (like in the example)?

Here another suggestion:

> Stars system

For my point of view the feature is very nice… but only for Google search.
Stars make our links in Google more visible.

But in our site there is no interest.
In the article, the block at the end of the article take a lot of space for nothing.

It would be cool if in admin, there a way to use the stars systme but hidden on the site for visitors but not for Google.

If you have any CSS code to hide this block, it will be cool.

Post count: 7909

Hi,

You can use a gradient background, also I have added width 100% and changed a little padding values – http://screencast.com/t/4PNrVJAUnG

figure {
position: relative;
}
.wp-caption-text {
position: absolute;
bottom: 0;
color: #fff;
background: rgba(0, 0, 0, 0) linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.9) 100%) repeat scroll 0 0;
width: 100%;
margin: 0 !important;
padding: 10px 5px 5px 5px;
opacity: 0;
}
.wp-caption:hover .wp-caption-text {
opacity: 1 !important;
}
.td-post-featured-image:hover .wp-caption-text {
opacity: 1 !important;
}

Do you want to hide the entire section of reviews? – http://screencast.com/t/LGJt5ana

.td-review {
display: none;
}

Thanks!

Post count: 260

Hello Alin

Many thanks for the caption.
It look great!
Hope you add this on next updates! 🙂

Great too for the reviews.

Just abother nice things will be that on categorie pages the name and publication date also show with the stars.
First the name, date (both with icon in front of like in my previous suggestion 😉 ) and stars after.

Example on this article http://www.virtualmagie.org/articles/critiques/matos/

Regards

Post count: 260

For the caption CSS solution, I just saw that there the text under the image is now stick.

Here a image.

Could it be possible to have the same space from top to bottom.

Regards

http://www.virtualmagie.org/articles/critiques/lectures/nothing-as-it-seems-de-ricky-smith/

  • This reply was modified 10 years by Thomas.
Post count: 260

Just a precision about the space under the image.

It seems to only affect the image WITHOUT left/right align.

Example with a left align image and it is OK:
http://www.virtualmagie.org/articles/comptes-rendus/conferences-rencontres/lee-earle-liege/

Post count: 7909

Hi,

1. If you don’t want to show reviews on modules you can edit td_module.php and make this change – http://screencast.com/t/wuKr7U40jxJc
2. There no margin bottom for content images, but you can add it using custom css(you can add the exact value that the paragraph has) – http://screencast.com/t/tjSBijr182j

figure.alignnone {
margin-bottom: 26px;
}

Thanks!

Post count: 260

1. I could do that but like every hack all is lost after each updates you will do so it is not a good solution.
Maybe you could add this on a next update in the admin?

2. Many thanks !
It works fine: http://www.virtualmagie.org/articles/critiques/lectures/nothing-as-it-seems-de-ricky-smith/

Post count: 7909

Hi,

Unfortunately this is how it works when you have reviews on post, it will be displayed also on modules, I will add this on our list and if we have more requests we will consider this.

Thanks!

Viewing 15 posts - 1 through 15 (of 15 total)
The forum ‘Newspaper’ is closed to new topics and replies.