Jubawa
Forum Replies Created
-
Currently I am using
post-namefor my permalinks.Currently Jetpack is the only plugin activated, every other plugin is deactivated (I also removed them to test but had the same result).
I am not sure what else to try; I’d gladly screen share with you via Skype or something; but not sure if you’re that interested in this dilemma, haha (which is completely understandable). Also, I would not waste your time.
You’ll need to go through 8 pages before to reach the end. If you experience the issue, could you let me know what browser you’re using?
I did not experience the issue on your website, which makes me think this is something to do with my WP install or perhaps the fact I am in a local MAMP environment. Could this be the issue?
I haven’t deployed the site yet, I am not even close to that point and I will be using a custom theme. I am thinking this will not be able to be ‘resolved’ until I have a link to give you; I’m not sure what else we can do:/
However, 2015’s Infinite Scroll support doesn’t use the click type. It uses scroll …
That’s interesting; by default it is showing the
clicktype. I deleted Jetpack (and it’s contents), re-downloaded it and did the same for the 2015 theme and the default behavior is stillclick.I want the
clickbehavior so this isn’t an issue for me, but I am curious now why this is the case.Under the settings, I did not click
scroll infinitely– I left that unchecked. I am showing 1 post at a time. Perhaps this makesclickthetypeby default?As far as other plugins go, there are no other plugins activated.
Thanks for the reply, Jeremy.
Do you see that button when you switch to one of the default themes, like Twenty Fifteen?
I tried with both 2012 and 2015 and it has the same behavior. You can see a gif of the behavior here. Please also note, I did not
add_theme_supportfor infinite scroll for these themes, they seemed to work fine ‘out of the box’ with the module. With my theme I had to add support for infinite scroll, which I did like this:function add_infinite_scroll() { add_theme_support( 'infinite-scroll', array( 'type' => 'click', 'footer_widgets' => false, 'container' => 'post-container', 'wrapper' => false, 'render' => 'infinite_scroll_loop', //'posts_per_page' => false, ) ); } add_action( 'after_setup_theme', 'add_infinite_scroll' );If there is anything else I can supply you with in order to help, please let me know.
It’s worth noting that we reply to every thread from the oldest to the newest. Every time you bump a thread, it goes back to the bottom of the queue, so I’d recommend against it.
Thank you for pointing that out; I was not aware of your response rates and I probably should have been more patient. I apologize for that.
Just a friendly bump to address these specific questions:
– Should infinite scroll show the ‘load more posts’ button, when it has reached the end? (I am guessing it shouldn’t based on this GitHub issue)
– If so, how can one go about showing a message such as “no more posts to load” after the user clicks the ‘load more posts’ button?
Further, I am curious if there should be the load more button, even though there are no more posts to load; perhaps that is the bigger issue at hand?
Forum: Fixing WordPress
In reply to: Two nav menus area at the same theme location?Ok thanks. But thinking about it right now, it wouldn’t be the most difficult thing to maintain two different nav areas and use the same links, but just for ease of use I thought having two with the same theme location would be easier.
Thanks again for the assurance.
Forum: Fixing WordPress
In reply to: Two nav menus area at the same theme location?To distinguish between navigation areas.
<?php wp_nav_menu( array( 'theme_location' => 'main-menu') ); ?>Right there in the codex.
Forum: Fixing WordPress
In reply to: Two nav menus area at the same theme location?And use the same theme location I assume?
Thanks so much for the assurance.
Forum: Plugins
In reply to: [Game Schedules] Shortcode not displaying tableHey Mark,
I was using it in a specific location on my custom theme, it was just showing up as text since I forgot to use the proper syntax:
<?php echo do_shortcode(); ?>I was just pasting the short code right into the html like so:
<div class='schedule_box'> [shortcode here] </div>Forum: Plugins
In reply to: [Game Schedules] Shortcode not displaying table<?php echo do_shortcode('[mstw_gs_table show_media=0 show_location=0 sched="1"]'); ?>worked!