Viewing 20 posts - 1 through 20 (of 23 total)
  • Author
    Posts
  • #166767
    Rayo
    Participant

    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

    #166798
    Skandha
    Participant

    @rayo: Hello there,
    Please post in your site URL so that I can look into the issue.

    Kind Regards,
    Skandha

    #171952
    Rayo
    Participant

    I 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/

    #171965
    Skandha
    Participant

    @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,
    Skandha

    #171967
    Rayo
    Participant

    @Skandha thank you very much for your replay. I think it will be very usefull feature. I am looking forward. Thank you.

    #171968
    Rayo
    Participant

    BTW: 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.

    #171970
    Skandha
    Participant

    @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,
    Skandha

    #171991
    Rayo
    Participant

    I 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.

    #172034
    Skandha
    Participant

    @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,
    Skandha

    #172109
    Skandha
    Participant

    @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,
    Skandha

    #172111
    Rayo
    Participant

    Hi

    I dont know what is wrong – but doesnt work.

    Look at my page I setup:

    Pagination: Numeric next Default…

    and checked as you said.

    #172112
    Rayo
    Participant

    Hi 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.

    #172114
    Skandha
    Participant

    @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,
    Skandha

    #172120
    Rayo
    Participant

    Thank you for this improvement.

    #172121
    Skandha
    Participant

    @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,
    Skandha

    #172148
    Rayo
    Participant

    Ok, 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,
    Robert

    #172186
    Skandha
    Participant

    @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,
    Skandha

    #172194
    Rayo
    Participant

    @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:

    https://ibb.co/1d3sW1q

    #172406
    Skandha
    Participant

    @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 and New with the text of your choice.
    Let me know if this works out!
    Kind Regards,
    Skandha

    #178632
    Rayo
    Participant

    Hi 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:

    http://robertporajewski.pl/

    Thank you once again for it.

Viewing 20 posts - 1 through 20 (of 23 total)
  • The topic ‘Read more…. after last post on the main page’ is closed to new replies.