projectmunton
Forum Replies Created
-
Forum: Plugins
In reply to: [Month Name Permalink] 404Cool thanks again ??
That would be a great addition for the next update … would enable even better date archive pages ??
Forum: Plugins
In reply to: [Month Name Permalink] 404Hi ??
I have just tried it again … replacing the variables and it seems to work now … not sure if it was restarting MAMP that did it for my local host … but the article is appearing with the updated permalink..
I just tried to view articles from November …. so mydomain.com/2014/november/
and I a getting a 404 for this
the permalink structure is /%year%/%monthname%/%day%/%postname%/would you expect a 404 for this? or a post list of all articles for November?
Thanks again
Forum: Plugins
In reply to: [Month Name Permalink] 404Hi ??
I just have it local at the moment … so no url to give.
I cannot put it in a live environment incase it has the same effect and all my posts go to a 404.Is there anything I can check to provide you with more information?
Many thanks again
Forum: Plugins
In reply to: [Date Range Filter] Blank Post ListV strange … if there is anything else I can do, let me know ??
If there is any configuration you want me to try etc ….does it have any other plugin dependencies?
Forum: Plugins
In reply to: [Date Range Filter] Blank Post ListHi ??
No worries, here are the details below … there are no error messages or warnings in web inspect.
All the content from line 267 in the source code disappears … from and including
<table class=”wp-list-table widefat fixed posts”>I am running and have testing on all of these browsers:
FF
Version 33.1Safari
Version 7.1 (9537.85.10.17.1)Chrome Version
Version 38.0.2125.122and the localhost php version is:
PHP
PHP Version 5.5.3If there is anything else let me know
Forum: Plugins
In reply to: [Date Range Filter] Blank Post ListHi ?? … sorry about the late reply, i didn’t seem to get a notification about you response a couple of weeks ago.
I am running 4.0 … and have updated the the newest version of the plugin … but still getting the same result
I am running it on a localhost for testing … could that be something to do with it?
Forum: Plugins
In reply to: [Beautiful taxonomy filters] PostsExcellent … thats great ??
Many thanks for the quick reply … looking forward to the update
Forum: Plugins
In reply to: [Infinite Post Transporter] Container QHi ?? just another quick question … I am doing some testing on 2 local sites.
On one site when I scroll the URL changes to the full url of each article as I go past … which is what I would like
But on the other site the URLs show as subpages of the initial post url as I scroll e.g.
/hello-world
/hello-world/page/2/
/hello-world/page/3/I cannot see any difference in the output of the code … but would you have an idea why this could be?
Many thanks again
Forum: Plugins
In reply to: [Pre-Publish Post Checklist] underscore-min.mapCool … thanks again … 5 Star rating added by me ?? nice work
Forum: Plugins
In reply to: [WP FullPage] ExcerptCool … thanks Julien ?? Will make sure I document both for future reference
5 Stars coming your way ??
Forum: Plugins
In reply to: [Pre-Publish Post Checklist] underscore-min.mapHi ?? sorry about the late replay … I was online this weekend ??
Perfect just updated and tested it out … works a treat !!
Thanks again … looking forward to using it
Forum: Plugins
In reply to: [WP FullPage] ExcerptHey … thats great ?? tried it out, works a treat
I did notice that I just needed to replace <?php WPFP_Query()->get_content(); ?> by
<?php print WPFP_Query()->slide->post_excerpt; ?>I did not need to create the wp-fullpage folder ?? so a very simple update
I don’t use “more” markup because of the way my post content is built … but with the excerpt I don’t need to
The site I am working on is not live at the moment … only local … it will be a couple of months before its ready … But when I have a page with your plugin active / displayed … I will send you the link ??
Thanks again … I will be experimenting over coming months … and congrats on a great plugin !!
Forum: Plugins
In reply to: [JS & CSS Script Optimizer] Google Drive / DropdoxNo worries ?? appreciate the replay
Would be a great future addition ??
Many thanksForum: Plugins
In reply to: [Infinite Post Transporter] Container QExcellent, thats great ?? … looking forward to testing them out … will really add a great experience for my users … and for users of lots of other sites too ??
Many thanks again for the quick replies
Forum: Plugins
In reply to: [Infinite Post Transporter] Container QHey ?? No worries … and thanks for the quick reply … again great plugin !
I have been playing around with it today and have just got it to work how i was hoping ?? it was a bit of playing around but essentially created a new loop template … added the elements I wanted and used “render” to point to it … so add the below code to the functions.php
add_theme_support( 'infinite-transporter', array( 'type' => 'scroll', 'requested_type' => 'click', // store the original type for use when logic overrides it 'container' => 'content', 'render' => 'infinite_scroll', 'footer' => false, // boolean to enable or disable the infinite footer | string to provide an html id to derive footer width ) ); // Custom Infinity Scroll Loop function infinite_scroll() { while( have_posts() ) { the_post(); get_template_part( 'infinate', get_post_format() ); } };
Not sure if this is the post efficient way … If you have a more efficient way I would love to try it out ??
Just a couple of questions around the article presented in the loop:
– Is there a way to specify a category … so only articles from that category show below the initial article?. Even better if there was a way automatically associate the category from the initial article.
– I see the articles in the loop always starts at the newest article published. Is it possible to start the loop on the article published just before the article being viewed?
Many thanks again in advance