copy link button, editing megamenu, editing advertising container

Posted in: Newspaper
Post count: 10

Hi all i have some questions:
1) how can i add a copy link button next to share buttons on the top/bottom of each article?
2) i created a main menu as megamenu. Every item is a category (like the newspaper demo default), how can i remove from only one of these categories the “all” section? example: referring newspaper demo default how can i remove from fashion the “all” section without delete the same section under lifestyle?
3) for each category page I’d like to show the pull down filter: i red lots of codes like this [.category .td-pulldown-filter-list li:nth-child(5) {display: none;}] but i didnt understood how it works. Id like to remove random,7 days popular and by score sections.
4) is it possible to change the 300×250 ad section on the right sidebar with a youtube video? like the video on the bottom of this site http://www.angolotesti.it/ ?? thanks for help guys

Post count: 20688

Hi,

1. Maybe with a plugin that would be possible. With a plugin that can provide a shortcode which you can enter in the cloud post template for example, in a text element next to the post sharing
https://www.screencast.com/t/9tImhs8CMT

2. For a specific menu item it could be done with some CSS, like in this topic
https://forum.tagdiv.com/topic/coding-question-editing-the-mega-menu-all-feature-editing-block-pagination/
By using the unique ID of the menu item the code will work only in that case. Example
https://www.screencast.com/t/QucES7VC2I
Code used in example

.menu-item-XXXX .block-mega-child-cats a:first-child {
display: none;
}

3. So you want to remove the last three options from the pull down filter, something like this will do that
https://www.screencast.com/t/EpK67GiZyax
Simply enter it in the Theme panel->Custom CSS section, it will affect all category pages.

.category .td-pulldown-filter-list li:nth-last-child(-n+3) {
display: none;
}

4. You can display a video in a theme ad spot if that is what you want. This topic is similar
https://forum.tagdiv.com/topic/youtube-video-or-self-hosted-video-as-an-ad/

Thanks

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