- This topic has 22 replies, 2 voices, and was last updated 5 years, 3 months ago by Skandha.
-
AuthorPosts
-
February 26, 2019 at 2:34 pm #166767RayoParticipant
Hi guys.
I am creating my portfolio site using catch fullscreen theme. I prepared 10 posts. I setup in read (settings) maximum visible posts to 4.
My question is how to make some READ MORE button which send me to the ARCHIVE site where I can see all off them with pagination ?PS: Main page shows the posts.
Thank you
February 26, 2019 at 10:57 pm #166798SkandhaParticipant@rayo: Hello there,
Please post in your site URL so that I can look into the issue.Kind Regards,
SkandhaMay 5, 2019 at 2:49 pm #171952RayoParticipantI setup-read to “new post on main site” and after ~ 10 I would like to have some button or link “read more” and see the rest of next 10 already existed ?
temporary is: http://rayo17.ct8.pl/
May 6, 2019 at 1:29 am #171965SkandhaParticipant@rayo: Hello there,
The post navigation option will be added in the next theme update. I will let you know when the update is released.Kind Regards,
SkandhaMay 6, 2019 at 2:50 am #171967RayoParticipant@Skandha thank you very much for your replay. I think it will be very usefull feature. I am looking forward. Thank you.
May 6, 2019 at 2:54 am #171968RayoParticipantBTW: This is the greatest WP theme I ever seen. Before I chose I did huge research and this is number one. I tried to use it with Elementor plugin but this plugin has a lot of issue bout streaching correct image to right resolution.
Anyway thank you for this theme, just perfect.
May 6, 2019 at 4:02 am #171970SkandhaParticipant@rayo: Hello there,
Since you love this theme could you leave an honest review? Your feedback is deeply valued as it will help potential clients read about your experience and also help me improve.
https://wordpress.org/support/theme/catch-fullscreen/reviews/#new-post
Let me know if you have anymore issues. Have a good day! ๐Kind Regards,
SkandhaMay 6, 2019 at 8:32 am #171991RayoParticipantI am looking for some solution anyway. I have a question. If (for example) I have 20 posts and I setup theme to see only 10 first, how to get in to the archive and see all of them or rest of them which are not visible at the begining ?I cant find archive sub-site ?
Thx.
May 7, 2019 at 3:39 am #172034SkandhaParticipant@rayo: Hello there,
Navigation option has been added to Homepage posts. The update will be out very soon. I will let you know when the update is released.Kind Regards,
SkandhaMay 8, 2019 at 12:42 am #172109SkandhaParticipant@rayo: Hello there,
The option has been to Theme Options => Pagination Option. Please update the theme and let me know if the issue is resolved.Kind Regards,
SkandhaMay 8, 2019 at 1:53 am #172111RayoParticipantHi
I dont know what is wrong – but doesnt work.
Look at my page I setup:
Pagination: Numeric next Default…
and checked as you said.
May 8, 2019 at 2:21 am #172112RayoParticipantHi again.
It works like a charm. I forgot that I setup to see default 20 number of post so it was nothing to paginate :)I changed to 3 while I have like 8 posts and works great. Thank you very much !!! but ๐
How to force the theme to get position from like 1 real post on the next pages ? Let me explain.
If you enter to my site, first what you see is “intro” page with tram picture and big title “WITAM (Hello)” on it and main menu at the bottom……. If you scroll down (and after third post) you will see pagination area. If you hit 2 page button site will be reload and in my opinion should set to the 4th post not “intro” page with train again. I hope I explained it correctly.
May 8, 2019 at 2:31 am #172114SkandhaParticipant@rayo: Hello there,
I am afraid for that you will need to customize your site as it is quite complex. If you really need it I suggest you to hire a customizer to get it done.Kind Regards,
SkandhaMay 8, 2019 at 3:07 am #172120RayoParticipantThank you for this improvement.
May 8, 2019 at 3:17 am #172121SkandhaParticipant@rayo: Hello there, I hope I was able to resolve your issue. If itโs not too much trouble, I have a quick request: could you please leave an honest review?
https://wordpress.org/support/theme/catch-fullscreen/reviews/#new-post
Your review will help others know what to expect when theyโre looking for the support I offer. Even a sentence or two would be hugely appreciated. Thanks, and if thereโs anything else at all that I can do to help, donโt hesitate to let me know. Have a good day! ๐Kind Regards,
SkandhaMay 8, 2019 at 7:53 am #172148RayoParticipantOk, no problem I will do this – honest review after finish my site for sure. May I ask which file and where I can find to change something about paggination ? (like title of button) I am searching for 2h all theme files (maybe should i look at some tweenty theme files ?) cant find source ๐
Have a good day
Kind Regards,
RobertMay 9, 2019 at 12:03 am #172186SkandhaParticipant@rayo: Hello Robert,
Let me know which pagination button text you want change into what text and I shall provide you the Code.Kind Regards,
SkandhaMay 9, 2019 at 2:23 am #172194RayoParticipant@skandha thank you for your replay but I think i figured it out…..I had to go deeper ๐ Labels on the pagination buttons are in EN but somehow translated to PL. I found plugin who helps me to translate and even change text on the button(works for all text in the database). I must confesed that all am I doing with WP is just “check and try, make mistake, find solutins” method ๐ I am better on graphic than coding ๐
If you can help me I need help with this texts:
May 13, 2019 at 6:58 am #172406SkandhaParticipant@rayo: Hello there to change the pagination texts you will need to first create a child theme. If you don’t know how to create a child theme you can use our Generate Child Theme Plugin. Install and Activate the plugin
Go to => Dashboard => Generate Child Theme => Select Parent Theme as Catch Fullscreen and fill the remaining field and Click Generate. This will create and activate the child theme.Now,
Go to => Child theme folder => functions.php and add the following Code.function catch_fullscreen_content_nav() { global $wp_query; // Don't print empty markup in archives if there's only one page. if ( $wp_query->max_num_pages < 2 && ( is_home() || is_archive() || is_search() ) ) { return; } $pagination_type = get_theme_mod( 'catch_fullscreen_pagination_type', 'default' ); /** * Check if navigation type is Jetpack Infinite Scroll and if it is enabled, else goto default pagination * if it's active then disable pagination */ if ( ( 'infinite-scroll' === $pagination_type ) && class_exists( 'Jetpack' ) && Jetpack::is_module_active( 'infinite-scroll' ) ) { return false; } if ( 'numeric' === $pagination_type && function_exists( 'the_posts_pagination' ) ) { the_posts_pagination( array( 'prev_text' => esc_html__( 'Previous page', 'catch-fullscreen' ), 'next_text' => esc_html__( 'Next page', 'catch-fullscreen' ), 'before_page_number' => '<span class="meta-nav screen-reader-text">' . esc_html__( 'Page', 'catch-fullscreen' ) . ' </span>', ) ); } else { the_posts_navigation( array( 'prev_text' => esc_html__('new', 'catch-fullscreen'), 'next_text' => esc_html__('old', 'catch-fullscreen') )); } }
Replace
Old
andNew
with the text of your choice.
Let me know if this works out!
Kind Regards,
SkandhaAugust 2, 2019 at 5:42 am #178632RayoParticipantHi guys I finally finished my www ~80% and I am really glad and happy to use CATCH THEMES – the best for my purposes. Big hugs for all desingers and coders for this amazing theme.
Now I proudly present:
Thank you once again for it.
-
AuthorPosts
- The topic ‘Read more…. after last post on the main page’ is closed to new replies.