Forum Replies Created

Viewing 10 replies - 1 through 10 (of 10 total)
  • Hi,
    There is a conflict between the most recent versions of both plugins:
    Auction 3.6 and Yoast SEO 2.0.1

    WP 4.1.1

    The error is as follows:
    If you have a page that does not have a custom Title that you type in it gives you an error message and also doesn’t put in a standard title.
    Looks to be a Javascript Conflict. When I have both active I get this error:

    [Error] Error: no such method 'instance' for menu widget instance
    	error (load-scripts.php, line 2)
    	(anonymous function) (jquery-ui.min.js, line 5)
    	each (load-scripts.php, line 2)
    	each (load-scripts.php, line 2)
    	(anonymous function) (jquery-ui.min.js, line 5)
    	_create (load-scripts.php, line 871)
    	(anonymous function) (jquery-ui.min.js, line 5)
    	_createWidget (jquery-ui.min.js, line 5)
    	(anonymous function) (jquery-ui.min.js, line 5)
    	(anonymous function) (jquery-ui.min.js, line 5)
    	each (load-scripts.php, line 2)
    	each (load-scripts.php, line 2)
    	(anonymous function) (jquery-ui.min.js, line 5)
    	(anonymous function) (wp-seo-metabox.min.js, line 1)
    	j (load-scripts.php, line 2)
    	fireWith (load-scripts.php, line 2)
    	ready (load-scripts.php, line 2)
    	J (load-scripts.php, line 2)

    Disable one or the other and it disappears.

    Thanks.

    Thread Starter nhankla

    (@nhankla)

    Ok,
    I have a bit more information:

    I did a host DNS spoof on my machine so the url would be a normal one and it works fine that way.

    Looks to be an issue with having the site running on the account level.

    Thread Starter nhankla

    (@nhankla)

    Hi Alexis,
    Sure, here is the think to the testing site:

    https://host.ver0.com/~tomstewartstudio/

    I talked with the host and here is the GD Support:
    GD Support => enabled
    GD Version => bundled (2.1.0 compatible)

    Nothing in the logs files that indicate a problem.
    It could be that I am using a ~account for now.

    Thread Starter nhankla

    (@nhankla)

    Hi,
    I just double checked it and yes the transient is changing every 30 minutes now. Thanks lot for your help!

    Thread Starter nhankla

    (@nhankla)

    Ok,

    Just making sure, the account was logged in but was getting that error on the front end of the site.

    We then had them verify in Eventbrite and it works perfectly.

    I was thinking of subscriber level users. If they would run into this issue. But it sounds like only administrators will have to verify with eventbrite to avoid this error. Thanks for your help!

    Thread Starter nhankla

    (@nhankla)

    Ok,
    So if you are logged in then you have to set up the Keyring.

    Would this effect people who have to sign in to make comments or is just for Admin level users?

    Thread Starter nhankla

    (@nhankla)

    When I go to Keyring it passes without issue.

    Another odd thing is this happened to another user when they were logged in. They then went to keyring which was already setup and working. To them it was not setup, it still had the manage button. They ran through it all with their account again and the error went away.

    Is Keyring user specific?

    We are also having this issue.

    On all the articles it shows it as green when looking on the category page, but red (bad) when editing the individual article.

    Oh FYI:
    Wordpress: 3.9.2
    SEO: 1.5.5.1

    Thread Starter nhankla

    (@nhankla)

    Thanks Scribu,

    <?php if (  $wp_query->max_num_pages > 1 ) : 
    
     $current_page = get_query_var( 'paged' ) ? get_query_var( 'paged' ) : 1;
    	$total_pages = $wp_query->max_num_pages;
    
      ?>
    
      <div id="nav-above">
    <div class="nav-next bx-next"><?php next_posts_link('Next &rarr;', $total_pages ); ?></div>
    
            <div class="number"><?php echo $current_page.' / '.$total_pages ; ?></div>
    		<div class="nav-previous bx-prev"><?php previous_posts_link( '&larr; Previous', $total_pages  ); ?></div>
            </div>

    This is cleaned up and works great.

    Thread Starter nhankla

    (@nhankla)

    HI Scribu,
    Thanks for the reply.
    I actually fixed it by changing the wp_query

    $paged = ( get_query_var( 'paged' ) ) ? get_query_var('paged') : 1;
     $wp_query = new WP_Query( array(
      'connected_type' => 'art_to_artists',
      'connected_items' => get_queried_object_id(),
       'paged' => $paged
    
    ) );
    
    <?php while ( $wp_query->have_posts() ) : $wp_query->the_post(); ?>

    And adding in the max num pages fix for the links

    $total_pages = $wp_query->max_num_pages;
    <div class="nav-next bx-next"><?php next_posts_link( __( 'Next →', $total_pages ) ); ?></div>
    <div class="nav-previous bx-prev"><?php previous_posts_link( __( '← Previous', $total_pages ) ); ?></div>

    Thanks Again!

Viewing 10 replies - 1 through 10 (of 10 total)