Vince_M
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] dropdown formAs I said I am a newbie regarding this. Not sure how I would do this with ACF.
Forum: Localhost Installs
In reply to: WordPress won't installNot sure if I figured it out or not.
I think it had to do with memory. I increased the memory limit in the php.ini and deleted some sites that were no longer needed.
Now it works.
Forum: Localhost Installs
In reply to: WordPress won't installThanks. Just took a look and this is what is says:
client denied by server configuration: /Applications/MAMP/htdocs/.DS_Store
Not sure what it means.
Found it. Thank you. Works perfectly.
We are seeing it on the single event pages.
Forum: Plugins
In reply to: [Alphabetic Pagination] Invoicegot it. Thanks.
Forum: Plugins
In reply to: [Waiting: One-click countdowns] Week, Day and time etc.. in FrenchPerfect, thanks. It works perfectly.
Forum: Plugins
In reply to: [Waiting: One-click countdowns] Week, Day and time etc.. in FrenchI have the translations from our translator but need to know how to use them.
Forum: Plugins
In reply to: [Waiting: One-click countdowns] Week, Day and time etc.. in FrenchHi there, the site is not a multilingual site but two wP sites. Not sure where the Quick translation form is in the Waiting page.
Forum: Fixing WordPress
In reply to: French front-end Englishi Back-endWe ended up just switching the language over to French for the whole front end and back end.
Forum: Fixing WordPress
In reply to: pagination with dynamically pulled in postsI don’t get any results at all. I don’t get older posts. I did Inspect Element and the row is there but the row is empty.
I tried the code above but it threw and error on the line two lines below it.
I have even tried a plugin but nothing will show up. Not sure what is wrong here.
Forum: Fixing WordPress
In reply to: display custom post based on titleHere is the code. I placed the pagination code in-between the endwhile and the endif and placed the var_dump( $paged ); but it did not work. The var_dump showed nothing. The next and previous don’t show-up
<section class="col-sm-12"> <?php $athlete = single_post_title('', false); $paged = ( get_query_var('paged') ) ? get_query_var('paged') : 1; var_dump( $paged ); $args = array( 'post_type' => 'result', 'orderby' => 'date', 'order' => 'DESC', 'posts_per_page' => 5, 'paged' => $paged, 'meta_query' => array( array( 'key' => 'result-athlete', // athlete results name 'value' => $athlete, // athlete name 'compare' => '=' ), ), ); $the_query = new WP_Query( $args ); ?> <div class="col-md-12 index-results-Section"> <h3>Results </h3> <?php if ( $the_query->have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); ?> <div class="index-resultsSingle"> <div class="col-md-2 index-resultsAthlete"> <?php the_field( 'result-athlete' ); ?> </div><!-- .index-resultsAthlete --> <div class="col-md-7 index-resultsSport"> <?php the_field( 'result-sport' ); ?> <?php the_field( 'result-date' ); ?> </div> <!-- .index-resultsSport --> <div class="col-md-3 index-resultsResult"> <?php the_field( 'result-result' ); ?> </div> <!-- .index-resultsResult --> <div class="clearfix"></div> </div> <?php endwhile; ?> <div class="row"> <!-- Next and Previous --> <?php if ($the_query->max_num_pages > 1) { // check if the max number of pages is greater than 1 ?> <nav class="prev-next-posts"> <div class="col-md-4 prev-posts-link"> <?php echo next_posts_link( '< Older Press Releases', $the_query->max_num_pages ); // display older posts link ?> </div> <div class="col-md-4 col-md-offset-4 next-posts-link"> <?php echo previous_posts_link( 'Newer Press Releases >' ); // display newer posts link ?> </div> </nav> <?php } ?> </div> <?php endif; ?> <div class="clearfix visible-sm"></div> </div> </section><!-- .col-sm-12 -->Not sure what is wrong with this. This pagination code works on the results page.
Forum: Fixing WordPress
In reply to: display custom post based on titleikaring,
I am having a big problem with the pagination of this. I have put in the pagination that I have been using throughout the site but it won’t show up. I have also tried the plug-in you suggested but it won’t show up as well. Here is the code for the pagination I have been using:
<div class="row"> <!-- Next and Previous --> <?php if ($the_query->max_num_pages > 1) { // check if the max number of pages is greater than 1 ?> <nav class="prev-next-posts"> <div class="col-md-4 prev-posts-link"> <?php echo next_posts_link( '< Older Press Releases', $the_query->max_num_pages ); // display older posts link ?> </div> <div class="col-md-4 col-md-offset-4 next-posts-link"> <?php echo previous_posts_link( 'Newer Press Releases >' ); // display newer posts link ?> </div> </nav> <?php } ?> </div>If you could give me a quick hand I would greatly appreciate it.
Forum: Plugins
In reply to: [Alphabetic Pagination] InvoiceHi Fahad,
I took a look and am unable to find the email. Are you able to resend?
Thanks,
VinceForum: Plugins
In reply to: [Breadcrumb NavXT] Remove Parent Categorythis works perfectly now. Thank you so much.