pmvuong
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [GeneratePress] Thumbnail not cropped@leohsiang Hi Leo,could you help me how to view column in mobile ?,eg: i choose display in grid option,it show well on pc,but on mobile it doesn,keep show 1 column.Tks.
I want show 2 column like screenshot belowForum: Themes and Templates
In reply to: [GeneratePress] Thumbnail not croppedProblem solved..i bought premium :D.
Forum: Themes and Templates
In reply to: [GeneratePress] How to show number of view under each post ?Problem solved 😀
just use do_shortcode function
tks verymuchForum: Themes and Templates
In reply to: [GeneratePress] How to show number of view under each post ?@tom Tks for reply,i solved this problem :D.
can i ask another question ?
what should i do if i want to place some div under content,but between content and comment ?
Here my code in funtion to display related post under content,but my post title under content too,so this “related post” keep above my post title..
here my screenshot https://i.imgur.com/KH6atF6.jpg
Hope you can help.// add related post by taxonomy add_filter( 'the_content', 'add_related_posts_after_post_content' ); function add_related_posts_after_post_content( $content ) { //check if it's a single post page. if ( is_single() ) { // check if we're inside the main loop if ( in_the_loop() && is_main_query() ) { // add your own attributes here (between the brackets [ ... ]) $shortcode = '[related_posts_by_tax posts_per_page="6" taxonomies="series" format="thumbnails" image_size="medium"]'; // add the shortcode after the content $content = $content . $shortcode; } } return $content; }Forum: Themes and Templates
In reply to: [GeneratePress] Help to make website fit on mobilethank you thank you very much!!..it works fine now..
Forum: Themes and Templates
In reply to: [GeneratePress] Help to make website fit on mobilehello,here my link
https://myeroge.com (nsfw)Forum: Themes and Templates
In reply to: [GeneratePress] Problem when center Post-image ?Problem solved..
just add text-align: center; on post-image
😀Forum: Themes and Templates
In reply to: [GeneratePress] How to increase page navigator ?Thank you very much!!!
It worked!!!Forum: Plugins
In reply to: [Contextual Related Posts] How to show another code before related postsNvm,i solved this
just disable setting and add this code after
<?php if ( function_exists( 'echo_ald_crp' ) ) echo_ald_crp(); ?>
Tks for great plugin 🙂