Search Results for 'block'

Results from the Forum
Calin
tagDiv Staff

Hi,

Please make sure that you set the sort filter after latest and the will be showing all the time the last post -> https://www.screencast.com/t/2qGmkiQn
Block settings tutorial -> https://forum.tagdiv.com/block-settings-tutorial/

Thank you!

bellamum
tagDiv Member

Hi, I am using pretty much everything suggested in the guide, via the Siteground (hosting service) “SG optimizer” plugin,including dynamic cache, image optimization and the following: Minify the HTML Output, Minify JavaScript Files, Load Render-blocking JavaScript Files Asynchronously, Combine CSS Files, Disable Emojis.
Note: I tried to use minify CSS also, and that screwed up the headers in the TDC mobile menus.

The Page speed analysis shows an very poor result of 17-18, and the following info: Most of the problem seems to be in the CSS. I don’t know how to do this for the complex CSS used in the Newspaper theme and headers.

OPPORTUNITY – Estimated Savings

Eliminate render-blocking resources
4.68 s
Defer unused CSS
3.75 s
Reduce server response times (TTFB)
1.3 s
Serve images in next-gen formats
0.6 s
Minify CSS
0.45 s
Defer offscreen images
0.15 s

DIAGNOSTICS
More information about the performance of your application.
1 Ensure text remains visible during webfont load
2 Minimize main-thread work 10.2 s
3 Avoid an excessive DOM size 2,442 nodes
4 Serve static assets with an efficient cache policy 81 resources found
5 Reduce JavaScript execution time 3.8 s
6 Avoid enormous network payloads Total size was 3,433 KB
7 Minimize Critical Requests Depth 47 chains found

Simion C.
tagDiv Staff

Hi,

Seems the thumbnails are not created, try and regenerate them with this plugin
https://forum.tagdiv.com/thumbnails-fix-strange-looking-images-on-blocks/
The problem should be solved after doing this.

Regarding the post template, what exactly is happening when you change the post template? They are now using post template 2 but you should able to select any predefined or cloud template (if you use them). Let me know.

Thanks

Simion C.
tagDiv Staff

Hi,

The demos have two install options. One is with content, meaning that the homepage and all the other pages of the demo will be imported, a demo menu, demo posts and categories, demo logo, additional stylesheet where needed (design), theme panel settings.

The other one will not import any dummy content, no homepage, no demo posts, menus, categories, only the additional stylesheet (where needed) and theme panel settings will be imported.

To better get used to the theme in some cases it is better to install a demo with content, it will look just like in the live pages, the images used may be different
https://demo.tagdiv.com/select_demo/select_demo_newspaper
Then begin to gradually customize the website, set your own logos, menus, configure the blocks and grids to show your own posts etc
https://forum.tagdiv.com/tagdiv-composer-tutorial/
https://forum.tagdiv.com/block-settings-guide/
https://forum.tagdiv.com/newspaper-theme-documentation/

Uninstalling a demo will remove any demo elements that have been imported. The website will be as it was before installing it. Installing a different demo after one demo has been installed, will replace demo elements from the previous demo with the new ones.

It is recommended to make a full backup before uninstalling a demo, just to be safe.

Please let me know if you have more questions.
Thanks

ashfrupt27
Participant
#0

hi i followed the solution in the forum of adding this code directly to my module 10 file
<?php $td_subtitle_module = get_post_meta($this->post->ID, ‘td_post_theme_settings’, true); ?> <p class=”td-sub-title”><?php if(!empty($td_subtitle_module[‘td_subtitle’])){echo $td_subtitle_module[‘td_subtitle’];} ?></p>

but it is still unable to work as i cannot see the subtitle like this:
https://www.screencast.com/t/7zXYRUfgIkE
pls advise me …is this method still working? and i edited the code in with notepad++.

GiacomoLaw
tagDiv Member

I don’t see this:


<?php

/**
* Style template.
*
*/

if (!defined("TD_THEME_NAME")) {
return; // do not run on other themes...
}

if ( TD_DEPLOY_MODE == 'dev' ) {
// compile the css
require_once 'external/td_node_less/td_less_compiler.php';
$response = td_less_compiler::compile_less_file(AMP__DIR__ . '/templates/less/amp_main.less', AMP__DIR__ . '/templates/css/amp_main.css' );
}

$plugin_url = plugins_url('', __FILE__);

echo '
@font-face {
font-family: \'newspaper\';
src: url(\'' . $plugin_url . '/images/icons/newspaper.eot?8\');
src: url(\'' . $plugin_url . '/images/icons/newspaper.eot?8#iefix\') format(\'embedded-opentype\'),
url(\'' . $plugin_url . '/images/icons/newspaper.woff?8\') format(\'woff\'),
url(\'' . $plugin_url . '/images/icons/newspaper.ttf?8\') format(\'truetype\'),
url(\'' . $plugin_url . '/images/icons/newspaper.svg?7#newspaper\') format(\'svg\');
font-weight: normal;
font-style: normal;
}
';

echo '
/*
COMPILED amp_main.less
*/
';

$compiled_less = file_get_contents(AMP__DIR__ . '/templates/css/amp_main.css' );
echo $compiled_less;

echo '
/*
AMP custom CSS
*/
';

$td_amp_custom_css = "
<style>

/* @theme_color_amp */
a,
.td-post-author-name a,
.footer-email-wrap a,
.td-search-query,
.td-page-content blockquote p,
.td-post-content blockquote p {
color: @theme_color_amp;
}

.td-rating-bar-wrap div,
.td-page-content .dropcap,
.td-post-content .dropcap,
.comment-content .dropcap,
.td_wrapper_video_playlist .td_video_controls_playlist_wrapper,
.td_default_btn,
.td_round_btn {
background-color: @theme_color_amp;
}

.td_quote_box,
.td_wrapper_video_playlist .td_video_currently_playing:after {
border-color: @theme_color_amp;
}

/* @menu_background_amp */
.td-header-wrap {
background-color: @menu_background_amp;
}

/* @menu_icon_color_amp */
.td-search-icon .td-icon-search {
color: @menu_icon_color_amp;
}

/* @footer_background_amp */
.td-footer-wrap {
background-color: @footer_background_amp;
}
/* @footer_text_color_amp */
.td-footer-wrap,
.td-footer-wrap a,
.td-footer-wrap .block-title span {
color: @footer_text_color_amp;
}

/* @sub_footer_background_amp */
.td-sub-footer-wrap {
background-color: @sub_footer_background_amp;
}

/* @sub_footer_text_color_amp */
.td-sub-footer-wrap,
.td-sub-footer-wrap a {
color: @sub_footer_text_color_amp;
}

</style>
";

$td_css_compiler = new td_css_compiler($td_amp_custom_css);

// theme color
$td_css_compiler->load_setting('theme_color_amp');

// menu color
$td_css_compiler->load_setting('menu_background_amp');
$td_css_compiler->load_setting('menu_icon_color_amp');

// footer color
$td_css_compiler->load_setting('footer_background_amp');
$td_css_compiler->load_setting('footer_text_color_amp');

// sub-footer color
$td_css_compiler->load_setting('sub_footer_background_amp');
$td_css_compiler->load_setting('sub_footer_text_color_amp');

echo $td_css_compiler->compile_css();

?>

Saint Epondyle
Participant
#0

Hi there,

I’ve got a problem using TagDiv Composer on my preproduction website (only sample content, no plugin) : http://nexus.saint-epondyle.net/

I suddenly be unable to modify my homepage : got the following messages.

The current content hasn't been created by TagDiv Composer!
&
Error at rows: 7(models) : 2(dom). The model does not match the content

Maybe it’s due to my html integration of a “Tipeee” iframe ? What’s the code to delete on my page without being obliged to re-make it entirely please ?

Here is the complete TD COmposer export from wordpress editor :

[tdc_zone tdc_css="eyJhbGwiOnsiZGlzcGxheSI6IiJ9fQ=="][vc_row][vc_column][vc_empty_space][td_block_trending_now header_text_color="#ffffff" header_color="#cc0000" f_title_font_family="629" f_title_font_weight="700" f_title_font_size="23" f_title_font_line_height="1" f_article_font_family="159" f_article_font_size="15" f_article_font_line_height="1.66" articles_color="#000000" next_prev_border_color="#ffffff" next_prev_color="#b7b7b7"][/vc_column][/vc_row][vc_row row_divider_bottom=""][vc_column][vc_row_inner][vc_column_inner width="2/3"][td_block_9 limit="1" block_template_id="" custom_title="Derniers articles" big_title_text="fff" button_text="Tous les articles par ordre chronologique" custom_url="dddddd"][/vc_column_inner][vc_column_inner width="1/3"][vc_raw_html]JTNDaWZyYW1lJTIwc3JjJTNEJTIyJTJGJTJGZnIudGlwZWVlLmNvbSUyRmNvc21vLW9yYnVzJTJGZW1iZWQlMkZib3glMjIlMjB3aWR0aCUzRCUyMjEwMCUyNSUyMiUyMGhlaWdodCUzRCUyMjI1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUzRSUzQyUyRmlmcmFtZSUzRSUzQyUyRmRpdiUzRSUzQyUyRmRpdiUzRSUzQyUyRmRpdiUzRSUzQyUyRmFzaWRlJTNF[/vc_raw_html][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width="stretch_row" tdc_css="eyJhbGwiOnsiYmFja2dyb3VuZC1pbWFnZSI6InVybChcImh0dHA6Ly9uZXh1cy5zYWludC1lcG9uZHlsZS5uZXQvd3AtY29udGVudC91cGxvYWRzLzIwMTkvMDMvZm9uZC1jb3Ntby5qcGdcIikiLCJvcGFjaXR5IjoiMSIsImRpc3BsYXkiOiIifX0=" row_divider_top="tdc-divider5" row_fixed="yes" svg_background_color_top="#ffffff"][vc_column tdc_css="eyJhbGwiOnsiYmFja2dyb3VuZC1jb2xvciI6IiNmZmZmZmYiLCJkaXNwbGF5IjoiIn19"][vc_empty_space][td_block_title title_tag="h4" block_template_id="td_block_template_13" content_align_horizontal="content-horiz-center" big_title_text="Science-Fiction" custom_title="サイエンスフィクション" big_text_color="rgba(0,0,0,0.21)" header_text_color="#cc0000" button_text="Toute la SF" tdc_css="eyJhbGwiOnsiZGlzcGxheSI6IiJ9fQ==" custom_url="http://nexus.saint-epondyle.net/category/science-fiction-sf" button_color="#cc0000" accent_text_color="#000000"][tdm_block_inline_text description="SWwlMjBlc3QlMjBsJUUyJTgwJTk5b3JiZSUyMGNvc21pcXVlJTJDJTIwY2UlMjBxdWklMjBmdXQlMkMlMjBjZSUyMHF1aSUyMGZ1aXQlMkMlMjBjZSUyMHF1aSUyMG5hJUMzJUFFdCUyMHNhbnMlMjAlQzMlQUF0cmUlMkMlMjBjZSUyMHF1aSUyMGVzdCUyMHNhbnMlMjBuYSVDMyVBRXRyZS4lMjBDZSUyMHF1aSUyMG4lRTIlODAlOTlleGlzdGUlMjBxdWUlMjBwYXIlMjBsZSUyMG1hbnF1ZSUyMHF1JUUyJTgwJTk5aWwlMjBsYWlzc2UlMkMlMjBxdWUlMjBwYXIlMjBsZSUyMHRyb3UlMjBiJUMzJUE5YW50JTIwcXUlRTIlODAlOTlpbCUyMGNyZXVzZSUyMCUzQiUyMHF1ZSUyMHBhciUyMGwlRTIlODAlOTllbnRyZSUyMGV0JTIwbGUlMjBwZW5kYW50JTJDJTIwcXVlJTIwZGFucyUyMGwlRTIlODAlOTlpY2klMjBldCUyMGxlJTIwbWFpbnRlbmFudC4lMjBBaW5zaSUyMHMlRTIlODAlOTlvdXZyZS10LWlsJTIwJUMzJUEwJTIwbGElMjB2aWUlMjBlbiUyMGh1cmxhbnQlMkMlMjBldCUyMHJ1aXNzZWxhbnQlMjBkYW5zJTIwbGVzJTIwZm9uZHVlcyUyMGMlQzMlQTJibCVDMyVBOWVzJTIwZGVzJTIwc3VwZXJzdHJ1Y3R1cmVzJTIwZCVFMiU4MCU5OWF2YW50JTIwbGElMjBjaHV0ZSUyMGV0JTIwYXV4JTIwdHJhdmVycyUyMGRlcyUyMGdyaWxsZXMlMjBjJUMzJUE5ciVDMyVBOWJyYWxlcy4=" content_align_horizontal="content-horiz-left" display_inline="yes" f_descr_font_family=""][vc_row_inner][vc_column_inner tdc_css="eyJhbGwiOnsiZGlzcGxheSI6IiJ9fQ=="][td_block_big_grid_flex_7 meta_info_vert="content-vert-bottom" image_zoom="yes" show_author2="none" show_date2="eyJwaG9uZSI6Im5vbmUifQ==" modules_category="above" overlay_general="eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiJyZ2JhKDAsMCwwLDApIiwiY29sb3IyIjoicmdiYSgwLDAsMCwwLjcpIiwibWl4ZWRDb2xvcnMiOlt7ImNvbG9yIjoicmdiYSgwLDAsMCwwKSIsInBlcmNlbnRhZ2UiOjYwfV0sImNzcyI6ImJhY2tncm91bmQ6IC13ZWJraXQtbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjcpLHJnYmEoMCwwLDAsMCkgNjAlLHJnYmEoMCwwLDAsMCkpO2JhY2tncm91bmQ6IGxpbmVhci1ncmFkaWVudCgwZGVnLHJnYmEoMCwwLDAsMC43KSxyZ2JhKDAsMCwwLDApIDYwJSxyZ2JhKDAsMCwwLDApKTsiLCJjc3NQYXJhbXMiOiIwZGVnLHJnYmEoMCwwLDAsMC43KSxyZ2JhKDAsMCwwLDApIDYwJSxyZ2JhKDAsMCwwLDApIn0=" image_height2="eyJwaG9uZSI6IjIwMHB4IiwibGFuZHNjYXBlIjoiMzUwcHgiLCJwb3J0cmFpdCI6IjI3MHB4In0=" image_height1="eyJwaG9uZSI6IjIwMHB4IiwibGFuZHNjYXBlIjoiMzUwcHgiLCJwb3J0cmFpdCI6IjI3MHB4In0=" meta_padding2="eyJwaG9uZSI6IjE1cHggMTVweCAxMHB4IiwicG9ydHJhaXQiOiIyMHB4IDEwcHggMTZweCJ9" meta_padding1="eyJwaG9uZSI6IjE1cHggMTVweCAxMHB4IiwicG9ydHJhaXQiOiIyMnB4IDEwcHgifQ==" cat_bg_hover="#4db2ec" review_stars="#fff" modules_category_margin2="eyJwb3J0cmFpdCI6IjBweCAwcHggNHB4IDBweCJ9" modules_category_margin1="eyJwb3J0cmFpdCI6IjBweCAwcHggN3B4IDBweCIsInBob25lIjoiMHB4IDBweCA3cHggMHB4In0=" art_title1="eyJwb3J0cmFpdCI6IjBweCAwcHggNnB4IDBweCIsInBob25lIjoiMHB4IDBweCAwcHggMHB4In0=" image_width1="eyJwaG9uZSI6IjEwMCJ9" image_width2="eyJwaG9uZSI6IjEwMCJ9" show_author1="eyJwaG9uZSI6Im5vbmUifQ==" show_date1="eyJwaG9uZSI6Im5vbmUifQ==" image_size="" image_size2=""][/vc_column_inner][/vc_row_inner][vc_separator style="solid" tdc_css="eyJhbGwiOnsiYm9yZGVyLWNvbG9yIjoiI2NjMDAwMCIsImRpc3BsYXkiOiIifX0=" border_width="2" color="#cc0000"][vc_row_inner][vc_column_inner width="2/3"][td_block_title title_tag="h4" block_template_id="td_block_template_13" content_align_horizontal="content-horiz-center" big_title_text="#Lol" big_text_color="rgba(0,0,0,0.21)" header_text_color="#cc0000" button_text="Toute la catégorie" tdc_css="eyJhbGwiOnsiZGlzcGxheSI6IiJ9fQ==" custom_title="Société & Technocritique" custom_url="http://nexus.saint-epondyle.net/category/science-fiction-sf" button_color="#cc0000"][tdm_block_inline_text description="SWwlMjBlc3QlMjBsJUUyJTgwJTk5b3JiZSUyMGNvc21pcXVlJTJDJTIwY2UlMjBxdWklMjBmdXQlMkMlMjBjZSUyMHF1aSUyMGZ1aXQlMkMlMjBjZSUyMHF1aSUyMG5hJUMzJUFFdCUyMHNhbnMlMjAlQzMlQUF0cmUlMkMlMjBjZSUyMHF1aSUyMGVzdCUyMHNhbnMlMjBuYSVDMyVBRXRyZS4lMjBDZSUyMHF1aSUyMG4lRTIlODAlOTlleGlzdGUlMjBxdWUlMjBwYXIlMjBsZSUyMG1hbnF1ZSUyMHF1JUUyJTgwJTk5aWwlMjBsYWlzc2UlMkMlMjBxdWUlMjBwYXIlMjBsZSUyMHRyb3UlMjBiJUMzJUE5YW50JTIwcXUlRTIlODAlOTlpbCUyMGNyZXVzZSUyMCUzQiUyMHF1ZSUyMHBhciUyMGwlRTIlODAlOTllbnRyZSUyMGV0JTIwbGUlMjBwZW5kYW50JTJDJTIwcXVlJTIwZGFucyUyMGwlRTIlODAlOTlpY2klMjBldCUyMGxlJTIwbWFpbnRlbmFudC4lMjBBaW5zaSUyMHMlRTIlODAlOTlvdXZyZS10LWlsJTIwJUMzJUEwJTIwbGElMjB2aWUlMjBlbiUyMGh1cmxhbnQlMkMlMjBldCUyMHJ1aXNzZWxhbnQlMjBkYW5zJTIwbGVzJTIwZm9uZHVlcyUyMGMlQzMlQTJibCVDMyVBOWVzJTIwZGVzJTIwc3VwZXJzdHJ1Y3R1cmVzJTIwZCVFMiU4MCU5OWF2YW50JTIwbGElMjBjaHV0ZSUyMGV0JTIwYXV4JTIwdHJhdmVycyUyMGRlcyUyMGdyaWxsZXMlMjBjJUMzJUE5ciVDMyVBOWJyYWxlcy4=" content_align_horizontal="content-horiz-left" display_inline="yes" f_descr_font_family=""][td_block_11 m10f_title_font_style="" tdc_css="eyJhbGwiOnsiZGlzcGxheSI6IiJ9fQ==" block_template_id="td_block_template_2" category_id="3" td_ajax_filter_type="td_popularity_filter_fa" td_filter_default_txt="Tous les articles" limit="4" custom_title="Articles "][td_block_7 custom_title="Dossier transhumanisme" custom_url="http://saint-epondyle.net/blog/" button_text="Tout le dossier" button_color="#cc0000" limit="4"][/vc_column_inner][vc_column_inner width="1/3"][vc_single_image media_size_image_height="300" media_size_image_width="192" image="103" size="contain" style=""][vc_column_text custom_title="Cyberpunk Reality" block_template_id="" header_text_color="#000000" button_text="En savoir +" post_color="#000000" h_color="#cc0000" accent_text_color="#cc0000" f_h4_font_family="629" f_h4_font_transform="" f_h4_font_weight="400"]

Mon premier livre, ça parle de cyberpunk et du monde réel.

[/vc_column_text][vc_column_text custom_title="Le Mouton Numérique" block_template_id="" header_text_color="#000000" button_text="En savoir +" post_color="#000000" h_color="#cc0000" accent_text_color="#cc0000" f_h4_font_family="629" f_h4_font_weight="400"]

Je suis membre du Mouton Numérique.
Bêêêh !

[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width="stretch_row" tdc_css="eyJhbGwiOnsicGFkZGluZy10b3AiOiIzMCIsImJhY2tncm91bmQtY29sb3IiOiIjMDAwMDI2IiwiYmFja2dyb3VuZC1pbWFnZSI6InVybChcImh0dHA6Ly9uZXh1cy5zYWludC1lcG9uZHlsZS5uZXQvd3AtY29udGVudC91cGxvYWRzLzIwMTkvMDMvMTQ5MTAwLWdsaXRjaC1iYWNrZ3JvdW5kLTE5MjB4MTA4MC1ub3RlYm9vay5qcGdcIikiLCJiYWNrZ3JvdW5kLXBvc2l0aW9uIjoiY2VudGVyIGNlbnRlciIsIm9wYWNpdHkiOiIxIiwiY29sb3ItMS1vdmVybGF5IjoicmdiYSgwLDAsMCwwLjcpIiwiY29sb3ItMi1vdmVybGF5IjoicmdiYSg1MSw1MSw1MSwwLjMpIiwiZGlzcGxheSI6IiJ9fQ=="][vc_column width="1/1"][td_block_title title_tag="h3" block_template_id="td_block_template_13" custom_title="Podcasts" big_title_text="Vidéodrome" big_text_color="rgba(255,255,255,0.12)" header_text_color="#f3f3f3" tdc_css="eyJhbGwiOnsiZGlzcGxheSI6IiJ9fQ==" content_align_horizontal="content-horiz-center"][td_block_video_youtube playlist_yt="k2uk43FMTF8, LBbmw0ZjsgU, COix_Nd-MLc" tdc_css="eyJhbGwiOnsiZGlzcGxheSI6IiJ9fQ=="][/vc_column][/vc_row][vc_row tdc_css="eyJhbGwiOnsiYm9yZGVyLXRvcC13aWR0aCI6IjIiLCJib3JkZXItYm90dG9tLXdpZHRoIjoiMiIsImJvcmRlci1zdHlsZSI6ImRvdWJsZSIsImJvcmRlci1jb2xvciI6IiNjYzAwMDAiLCJkaXNwbGF5IjoiIn19" full_width="stretch_row"][vc_column][vc_empty_space][vc_row_inner][vc_column_inner][td_block_title title_tag="h2" block_template_id="td_block_template_13" content_align_horizontal="content-horiz-center" big_title_text="^{;,;}^" custom_title="Jeux de rôle" big_text_color="rgba(0,0,0,0.21)" header_text_color="#cc0000" button_text="Tout le JdR" tdc_css="eyJhbGwiOnsiZGlzcGxheSI6IiJ9fQ==" f_header_font_family="" f_header_font_weight="" f_header_font_style="" custom_url="http://saint-epondyle.net/blog/category/jeu-de-role/" button_color="#cc0000"][tdm_block_inline_text description="SWwlMjBlc3QlMjBsJUUyJTgwJTk5b3JiZSUyMGNvc21pcXVlJTJDJTIwY2UlMjBxdWklMjBmdXQlMkMlMjBjZSUyMHF1aSUyMGZ1aXQlMkMlMjBjZSUyMHF1aSUyMG5hJUMzJUFFdCUyMHNhbnMlMjAlQzMlQUF0cmUlMkMlMjBjZSUyMHF1aSUyMGVzdCUyMHNhbnMlMjBuYSVDMyVBRXRyZS4lMjBDZSUyMHF1aSUyMG4lRTIlODAlOTlleGlzdGUlMjBxdWUlMjBwYXIlMjBsZSUyMG1hbnF1ZSUyMHF1JUUyJTgwJTk5aWwlMjBsYWlzc2UlMkMlMjBxdWUlMjBwYXIlMjBsZSUyMHRyb3UlMjBiJUMzJUE5YW50JTIwcXUlRTIlODAlOTlpbCUyMGNyZXVzZSUyMCUzQiUyMHF1ZSUyMHBhciUyMGwlRTIlODAlOTllbnRyZSUyMGV0JTIwbGUlMjBwZW5kYW50JTJDJTIwcXVlJTIwZGFucyUyMGwlRTIlODAlOTlpY2klMjBldCUyMGxlJTIwbWFpbnRlbmFudC4lMjBBaW5zaSUyMHMlRTIlODAlOTlvdXZyZS10LWlsJTIwJUMzJUEwJTIwbGElMjB2aWUlMjBlbiUyMGh1cmxhbnQlMkMlMjBldCUyMHJ1aXNzZWxhbnQlMjBkYW5zJTIwbGVzJTIwZm9uZHVlcyUyMGMlQzMlQTJibCVDMyVBOWVzJTIwZGVzJTIwc3VwZXJzdHJ1Y3R1cmVzJTIwZCVFMiU4MCU5OWF2YW50JTIwbGElMjBjaHV0ZSUyMGV0JTIwYXV4JTIwdHJhdmVycyUyMGRlcyUyMGdyaWxsZXMlMjBjJUMzJUE5ciVDMyVBOWJyYWxlcy4=" content_align_horizontal="content-horiz-left" display_inline="yes" f_descr_font_family=""][td_block_big_grid_3 mx19f_title_font_family="159" mx19f_title_font_size="eyJhbGwiOiIxOSIsInBvcnRyYWl0IjoiMTcifQ==" mx19f_title_font_line_height="1.26" td_grid_style="td-grid-style-1" category_id="3" limit="8" autoplay="1" tdc_css="eyJhbGwiOnsiZGlzcGxheSI6IiJ9fQ=="][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width="1/2"][td_block_11 image_align="center" meta_info_align="bottom" color_overlay="eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiJyZ2JhKDAsMCwwLDApIiwiY29sb3IyIjoicmdiYSgwLDAsMCwwLjcpIiwibWl4ZWRDb2xvcnMiOltdLCJjc3MiOiJiYWNrZ3JvdW5kOiAtd2Via2l0LWxpbmVhci1ncmFkaWVudCgwZGVnLHJnYmEoMCwwLDAsMC43KSxyZ2JhKDAsMCwwLDApKTtiYWNrZ3JvdW5kOiBsaW5lYXItZ3JhZGllbnQoMGRlZyxyZ2JhKDAsMCwwLDAuNykscmdiYSgwLDAsMCwwKSk7IiwiY3NzUGFyYW1zIjoiMGRlZyxyZ2JhKDAsMCwwLDAuNykscmdiYSgwLDAsMCwwKSJ9" custom_title="Interviews JdR" limit="4"][/vc_column_inner][vc_column_inner width="1/2"][td_block_11 image_align="center" meta_info_align="bottom" color_overlay="eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiJyZ2JhKDAsMCwwLDApIiwiY29sb3IyIjoicmdiYSgwLDAsMCwwLjcpIiwibWl4ZWRDb2xvcnMiOltdLCJjc3MiOiJiYWNrZ3JvdW5kOiAtd2Via2l0LWxpbmVhci1ncmFkaWVudCgwZGVnLHJnYmEoMCwwLDAsMC43KSxyZ2JhKDAsMCwwLDApKTtiYWNrZ3JvdW5kOiBsaW5lYXItZ3JhZGllbnQoMGRlZyxyZ2JhKDAsMCwwLDAuNykscmdiYSgwLDAsMCwwKSk7IiwiY3NzUGFyYW1zIjoiMGRlZyxyZ2JhKDAsMCwwLDAuNykscmdiYSgwLDAsMCwwKSJ9" limit="1" custom_title="Dernier scénario paru" button_text="Tous les scénarios" custom_url="http://saint-epondyle.net/blog/tag/scenarios-jeu-de-role/"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width="stretch_row_content td-stretch-content"][vc_column][tdm_block_column_title title_text="Qm91cXVpbnM=" title_tag="h2" title_size="tdm-title-md" tds_title="tds_title1" content_align_horizontal="content-horiz-center"][td_block_big_grid_fl_4][/vc_column][/vc_row][vc_row full_width="stretch_row" tdc_css="eyJhbGwiOnsicGFkZGluZy10b3AiOiI0OCIsImJhY2tncm91bmQtY29sb3IiOiIjMTExMTExIiwiZGlzcGxheSI6IiJ9fQ=="][vc_column width="2/3"][/vc_column][vc_column width="1/3" is_sticky="yes"][/vc_column][/vc_row][/tdc_zone]

Many thanks for incredible work !

Calin
tagDiv Staff

Hi,

In order to change that color you’ll need to add a custom css in newspaper>theme panel>custom code>custom css https://www.screencast.com/t/W8AWZGuBejMo
.td-post-content blockquote p{
color: #111;
}

Thank you!

shudhanshu96
Participant
#0

Want recent post should come first with image and title, web link: https://nvestweekly.com/
right now the recent post is “Blockchain Smart Contracts Could Soon be Legal Thanks to Connecticut Lawmakers” so, the first post should be this one instead of “French President Emmanuel Macron Suggests EU Use Blockchain Technologies”
Please help me out with this.

Calin
tagDiv Staff

Hi,

Those are header litters for that blocks, in order to change that text you need to edit the page with tagDiv Composer click on that title -> https://www.screencast.com/t/6pXrGJ9fJo also it is possible to be set in sidebar widgets -> https://www.screencast.com/t/kR6ltFJIHXyy

If there is still a problem to change those texts, please provide me a link were I can inspect this header title.

Thank you for your understanding!

Juppiter
Participant
#0

Want to go back to version 9.1 because of the impossibility of the insertion of the adsense block at the beginning of the article Where I download the previous version of the newspaper?

kavirus
Participant
#0

Hi,

In the homepage I have Block 1 Element with the Filter By Categories Option, however if you click on any of the categories, the images doesn’t show up. I tried changing the content preloading option to “Preload All” but that didn’t help.

I can see the image in the src attribute of the img tag, but is just not being showed.

The version of theme is: 9.5

StefvE
tagDiv Member

It can’t be a plugin since it has classes of TD composer. This is a copy of the button

<div class="tdm-header-menu-btns">
<div class="tdm_block td_block_wrap tdm_block_button td_uid_1_5c86bfa98ed1c_rand tdm-block-button-inline tdm-content-horiz-left td-pb-border-top tdm-menu-btn1 td_block_template_1 tdc-no-posts" data-td-block-uid="td_uid_1_5c86bfa98ed1c">
<style>
body .td_uid_2_5c86bfa98fc23 {
background: -webkit-linear-gradient(-60deg,#4db2ec,#5188f7);background: linear-gradient(-60deg,#4db2ec,#5188f7);
}
.td_uid_1_5c86bfa98ed1c_rand {
z-index: 1;
}

body .td_uid_2_5c86bfa98fc23:before {
background-color: #000;
}
.td_uid_2_5c86bfa98fc23:hover:before {
transform: translate(-50%,-50%) scale(1.1);
-webkit-transform: translate(-50%,-50%) scale(1.1);
}

.td_uid_2_5c86bfa98fc23 .tdm-btn-text,
.td_uid_2_5c86bfa98fc23 i {
color: #fff;
}

.td_uid_2_5c86bfa98fc23,
.td_uid_2_5c86bfa98fc23:before {
border-radius: 4px;
}

.td_uid_2_5c86bfa98fc23 {
box-shadow: 0px 2px 16px 0px rgba(77,178,236,0.8);
}

.td_uid_2_5c86bfa98fc23:hover {
box-shadow: 0px 4px 26px 0px rgba(0,0,0,0.3);
}

.td_uid_2_5c86bfa98fc23:hover {
transform: scale(1.1);
-webkit-transform: scale(1.1);
}
.td_uid_1_5c86bfa98ed1c_rand:hover {
z-index: 999;
}
</style><div class="tds-button td-fix-index"><span class="tdm-btn-text">123</span></div></div> </div>

  • This reply was modified 7 years by StefvE.
  • This reply was modified 7 years by StefvE.
Emran Bin Nasir
tagDiv Member

Hello,

Thanks for your reply. I change block 9 to flex block 1 and partially solve my problem. Just two things I do not find the options to solve.

1. Where I have to set “>>” to show these bullet before post title?
2. Font size is very large, I tried to set lower size font but it was not work.

Thanks

Catalin
tagDiv Staff

Hi,

If you want to filter your Slide block by Post ID, you need to check here -> https://www.screencast.com/t/suAv0i7mOFuL If is not what you mean, please provide more details so I will be able to provide a more accurate response.

Thanks.

Bogdan B.
tagDiv Staff

Hello,

Both your requests are possible through the tagdiv composer. You only have to replace the block 9 with a flex block. Flex blocks allow you to customize the blocks as you want them.
Here is an example:
https://www.screencast.com/t/mAMak9lOjIjC
All was made in the block settings for flex block 1

Thank you!

BorislavBigi
tagDiv Member

Hi, sry for my english, but i think you dont understand me. Im not interested in look of blocks, im interested in look of posts. So, if you see this picture you will see that space betwen headlines, picture, and text are small, http://prntscr.com/mwbth7

And when you see posts on newspaper you will see that space betwen headlines,pictures and text are wider. http://prntscr.com/mwbuf2

Hope that you understand my problem now

Bogdan B.
tagDiv Staff

hello,
Sorry but the modules and blocks were never designed to show the tags. There is no function in the modules files for it. You are calling a function that was created for posts into the modules.Unfortunately it will not work that way. If you need customization services you can hire a freelancer from sites like studio.envato.com or other trusted freelance websites.

Thank you!

spu
Participant
#0

Hi,
We followed all the steps in the tutorial and we are getting this error everytime we post a new story-

There is content which fails AMP validation. However, your site is configured to automatically accept sanitization of the offending markup. You should review the issues to confirm whether or not sanitization should be accepted or rejected. Review issues

Invalid elements: script (19)

Also,
After the update all the stories are not showing on amp.
We are getting this ins webmaster tools –
Linked AMP version is invalid
It won’t appear in Google Search results. Learn more
An amp component script tag is present, but unused
Digging deep this is what the webmasters google console says.
The extension ‘amp-auto-ads’ was found on this page, but is unused. Please remove this extension.

How do we solve this?

Catalin
tagDiv Staff

Hi,

If you want to exclude some posts from your blocks, notice that you can try using to exclude them by post ID from here -> https://www.screencast.com/t/T4eUJ9ux

Hope this helps!

Thanks for your understanding!

Simion C.
tagDiv Staff

Hi,

Something like that is not possible with the current settings in the theme, the category hierarchy will not be taken into account in the ajax filter. They will all be treated and displayed the same.

Each block can display the ajax filter – http://prntscr.com/mwafsi
http://prntscr.com/mwalyr
Maybe these are helpful to you.

Thanks

Catalin
tagDiv Staff

Hi,

Please check our demo preview here -> https://demo.tagdiv.com/newspaper/block-1/ and there you will find our blocks list which looks like with your examples. Also, please read our documentation from here -> https://forum.tagdiv.com/theme-blocks-modules/ to see what kind of blocks/functionality are suitable for what you want to get.

Hope this helps!

Thanks for oyur understanding!

Calin
tagDiv Staff

Hi,

The modified date is a new option that alloy you to display each date you want to gave on blocks, you can use this option, or use the old one with publish date.

Please check the settings from theme panel -> https://www.screencast.com/t/H7CFzAKVw7 set the option with tagDiv Composer-> https://www.screencast.com/t/OAoAK9oUu make update on post -> https://www.screencast.com/t/vcQoLkQByxc now check the date of that post -> https://www.screencast.com/t/sKbLrp1jz also you can can sort after modified date -> https://www.screencast.com/t/VSePr63B

Also the modified date on post can be set with tagDiv Composer on single post template -> https://www.screencast.com/t/eYkeLqbCqV -> https://www.screencast.com/t/3qCSo9Nxtt

Hope this will help you!
Thanks.

Simion C.
tagDiv Staff

3. That would be true, the mobile theme doesn’t have that many settings. Most elements are predefined, this is why it is lighter. We will add more options in it now that it has also been integrated with the official AMP plugin.
From what I know Google changed the testing method a while back, this is why now the results are quite different when compared to before this algorithm change. I see that render blocking would be the main issue when checking you website with the tool
http://prntscr.com/mw86n1
Maybe try and eliminate or at least optimize in this matter. Try some render blocking plugins for example, there may be other methods.

7. Seems in this case there is also an inline margin left – http://prntscr.com/mw8fd3
Quite unusual. I can give you a code for it, to make it look better
http://prntscr.com/mw8qf6

.td-g-rec-id-content_top .adsbygoogle {
margin-left:auto!important;
}

Looks like the ad does not respect the size it is supposed to appear in for some reason. I see that it is supposed to appear in 300×250 but it does not. What if you try and select that setting in the theme panel for mobile? – http://prntscr.com/mw8s09 let me know.

8. Setting a background color would best be left until the ads display issue is solved. It would appear just on the top and bottom at the moment.

Simion C.
tagDiv Staff

3. That would be true, the mobile theme doesn’t have that many settings. Most elements are predefined, this is why it is lighter. We will add more options in it now that it has also been integrated with the official AMP plugin.
From what I know Google changed the testing method a while back, this is why now the results are quite different when compared to before this algorithm change. I see that render blocking would be the main issue when checking you website with the tool
http://prntscr.com/mw86n1
Maybe try and eliminate or at least optimize in this matter. Try some render blocking plugins for example, there may be other methods.

7. Seems in this case there is also an inline margin left – http://prntscr.com/mw8fd3
Quite unusual. I can give you a code for it, to make it look better
http://prntscr.com/mw8qf6

.td-g-rec-id-content_top .adsbygoogle {
margin-left:auto!important;
}

Looks like the ad does not respect the size it is supposed to appear in for some reason. I see that it is supposed to appear in 300×250 but it does not. What if you try and select that setting in the theme panel for mobile? – http://prntscr.com/mw8s09 let me know.

8. Setting a background color would best be left until the ads display issue is solved. It would appear just on the top and bottom at the moment.

Viewing 25 results - 16,426 through 16,450 (of 39,816 total)