Forum Replies Created

Viewing 15 replies - 1 through 15 (of 41 total)
  • Thread Starter aronjeney

    (@aronjeney)

    Hey Takayuki,

    Feeling pretty silly here as it turns out that its not the Really Simple CAPTCHA plugin that was calling the captcha, but rather the default captcha from the Contact Form 7 “Integration” tab. My client simply entered his keys and the shortcode within the form.

    The captcha is in the form under “Questions About Booking Your Colorado Fishing Trip?” on the page.

    Any ideas why its doing this? Again, thanks in advance!

    Thread Starter aronjeney

    (@aronjeney)

    Hey @luiscolome, we have gone with a different solution, but I appreciate your reply!

    Thread Starter aronjeney

    (@aronjeney)

    Thanks again Lorenzo. I’m now getting an error when trying to “Generate Package” within the order – Create shipment failed. Validation failed: Predefined package Invalid predefined package type.

    I have my Flat Rate box set to “USPS Medium Box – 2”. It shows the shipping pricing on the checkout as $11.60 for that setting, however I get that error when trying to create the label.

    Why would I be getting that error?

    Thread Starter aronjeney

    (@aronjeney)

    Thanks Lorenzo. I went ahead and purchased the premium version of the plugin and all seems to be working accordingly, however just to clarify, the free version should still pass the order information to our EasyPost account so we can print the lables within our EasyPost account, correct? The paid version basically just allows some bells and whistles like the ability to print labels from within our website, etc. Correct?

    Thanks again in advance!

    Thread Starter aronjeney

    (@aronjeney)

    Hey Lorenzo,

    I understand that the free version does not offer label printing but shouldnt it at least be communicating with my EasyPost account with the free version? I should see the purchases in my EasyPost account so that I can print my labels there, correct? Or do I need to buy the premium version of the plugin in order to have it even communicate with my EasyPost account?

    Please let me know as soon as possible, thanks!

    Thread Starter aronjeney

    (@aronjeney)

    Hey Nishad,

    Thanks for the reply, somehow I missed this before! Knowing what you said above, I’ve gone ahead and added shipping to our product and we’re getting the correct shipping price (the lower price from EasyPost), however nothing goes through to our EasyPost account or I dont see anywhere that I can print the shipping label at that price.

    I have the API Key inputed and set to Live. Is there something that I am missing?

    All and any help is appreciated as we’re really trying to get this working as soon as possible. Thanks in advance!

    Thread Starter aronjeney

    (@aronjeney)

    Do I have to create an action with “pre_get_posts”? How do I go about that in order to filter my custom archive template page?

    Again, any and all help is appreciated as always!

    @wpsmort, how would we export only the All in One SEO Pack data from the database? I need to transfer my clients old site’s SEO to the new site. Thanks in advance!

    Thread Starter aronjeney

    (@aronjeney)

    Bummer! Well I appreciate your follow up again. Would you by chance know where I can find the “Legacy” section?

    I am sure many others would love the approval system to work with the latest versions of the gallery if there is any chance you and/or your team would be willing to remedy this issue. Thanks again and please keep me updated! ??

    Thread Starter aronjeney

    (@aronjeney)

    Shoot, that is really unfortunate. Thanks for your response. Do any of the older versions of the plugin possibly work with the latest WP version? BTW, it worked one time for me. Is it possibly just a slight adjustment to the code? :/

    Thanks again for your response. I would be more than grateful for this to work!

    Thread Starter aronjeney

    (@aronjeney)

    Does anyone have any insight to my post? I am still pulling my hair out over this. I am probably just over thinking it.

    I have also tried adding property-builder to my args:

    $args = array(
    		'post_type' => 'property',
    		'property-builder' => $term->slug,
    		'tax_query' => array(
    				array(
    					    'taxonomy' => 'property-type',
    	    			            'term' => array('quick-move-in'),
    					    'field' => 'slug',
    					    'operator' => 'NOT IN',
    				),
    			),
    		);
    $query = new WP_Query( $args );

    Again, would really appreciate all and any help. Please and thank you!

    Thread Starter aronjeney

    (@aronjeney)

    Here is the link to the page on my dev server that I am calling this for reference (blue bar under hero image). Note how Movies Markets & More does not convert the ampersand when selected – https://staplefun.location3.com/whats-happening/

    Thread Starter aronjeney

    (@aronjeney)

    Hmm, unfortunately that did not work either. I tried moving reset_query below pagination as you listed above and even moving pagination above within the current query to no success. This still calls all posts on first page if I try to use anything other than your suggested ‘category__in’.

    Thread Starter aronjeney

    (@aronjeney)

    Sorry, guess I should have included pagination.

    Here is the code with the pagination calling function:

    $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
    				$args= array(
    					'post-type' => 'post',
    					'paged' => $paged
    				);
    				query_posts($args);
    
    				if(have_posts()) : while(have_posts()) : the_post(); ?>
    
    					<?php get_template_part( 'includes/post-templates/entry', get_post_format() ); ?>
    
    				<?php endwhile; endif; 
    
    					//Reset Query
    wp_reset_query();
    				?>
    
    				</div><!--/posts container-->
    
    			</div><!--/span_9-->
    
    		</div><!--/row-->
    
    		        <div class="pagination-wrapper">
    		       		<?php theme_pagination(); ?>
    				</div>

    And here is the actual pagination function code:

    function theme_pagination($pages = '')
    	{
    		global $paged;
    
    		if(is_page_template('/page-templates/page-directory.php'))
    		{
    			$paged = intval(get_query_var( 'page' ));
    		}
    
    		if(empty($paged))$paged = 1;
    
    		$prev = $paged - 1;
    		$next = $paged + 1;
    		$range = 2; // only change it to show more links
    		$showitems = ($range * 2)+1;
    
    		if($pages == '')
    		{
    				global $wp_query;
    				$pages = $wp_query->max_num_pages;
    				if(!$pages)
    				{
    						$pages = 1;
    				}
    		}
    
    		if(1 != $pages)
    		{
    			echo "<div id='pagination'>";
    			echo ($paged > 2 && $paged > $range+1 && $showitems < $pages)? "<a href='".get_pagenum_link(1)."' class='btn'><<</a> ":"";
    			echo ($paged > 1 && $showitems < $pages)? "<a href='".get_pagenum_link($prev)."' class='btn'><</a> ":"";
    
    			for ($i=1; $i <= $pages; $i++)
    			{
    				if (1 != $pages &&( !($i >= $paged+$range+1 || $i <= $paged-$range-1) || $pages <= $showitems ))
    				{
    					echo ($paged == $i)? "<a href='".get_pagenum_link($i)."' class='btn current'>".$i."</a> ":"<a href='".get_pagenum_link($i)."' class='btn'>".$i."</a> ";
    				}
    			}		
    
    			echo ($paged < $pages && $showitems < $pages) ? "<a href='".get_pagenum_link($next)."' class='btn'>></a> " :"";
    			echo ($paged < $pages-1 &&  $paged+$range-1 < $pages && $showitems < $pages) ? "<a href='".get_pagenum_link($pages)."' class='btn'>>></a> ":"";
    			echo "</div>";
    		}
    	}

    Thanks again for your help so far!

    Thread Starter aronjeney

    (@aronjeney)

    Unfortunately single quotes as you listed above does not work either. I am attempting this in the main index page, calling a post format template part. See the full code below.

    $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
    				$args= array(
    					'post-type' => 'post',
    					'cat'          => '-12',
    					'paged' => $paged
    				);
    				query_posts($args);				
    
    				if(have_posts()) : while(have_posts()) : the_post(); ?>
    
    					<?php get_template_part( 'includes/post-templates/entry', get_post_format() ); ?>
    
    				<?php endwhile; endif; 
    
    					//Reset Query
    					wp_reset_query();
    				?>
Viewing 15 replies - 1 through 15 (of 41 total)