Patrick

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 78 total)
  • Author
    Posts
  • in reply to: Coupons in Pricing Manager V2? #396543

    Patrick
    Lifetime Member
    Post count: 86

    I see its all been moved to Invoicing in the main WP menu. Not intuitive to me that they’d be applied there. Seems if another plugin were to pass information to Invoicing, it would also pass discount information.

    in reply to: GD Payment Manager V2 #396523

    Patrick
    Lifetime Member
    Post count: 86

    Pricing Manager new version is 2.x
    Update is shown when WP Easy Updates is installed and License key is entered.

    in reply to: Reconciling duplicates and merging reviews #385571

    Patrick
    Lifetime Member
    Post count: 86

    Thanks. I had done the first step. Worked perfectly.

    in reply to: Listing Detail Page Mixed Up #379753

    Patrick
    Lifetime Member
    Post count: 86

    I’ll ask them to fix. Thanks for debugging. Where is the tip jar?

    I liked how it showed the previous/next post title, but for GeoDirectory I didn’t like Next Post | Previous Post, wasn’t useful. I couldn’t figure out fixing the issue so I commented out the contents of the function. Read below.

    Note: If anyone has this problem the badgeos/content-filters.php contains the culprit code. The function is ‘badgeos_generate_post_link_by_post_id’.

    Really the function that calls this one messes up as it seems to run another function first that looks like it would check if the post is a badgeos achievement or not.

    I’m not sure how to fix the code so I commented it out.

    
    
    /**
     * Generate the post link based on custom post object
     *
     * @param $link
     * @return string
     */
    function badgeos_generate_post_link_by_post_id( $post_id , $rel) {
    
    	global $post;
    
    	if(!empty($post_id))
    		$post = get_post($post_id);
    
        //Title of the post
    	$title = get_the_title( $post->ID );
    
    	if ( empty( $post->post_title ) && $rel == 'next')
    		$title = __( 'Next Post' );
    
    	if ( empty( $post->post_title ) && $rel == 'prev')
    		$title = __( 'Previous Post' );
    
    	$rel =  ($rel == 'prev') ? 'prev' : 'next';
    
    	$nav_prev = ($rel == 'prev') ? '<span class="meta-nav">←</span> ' : '';
    	$nav_next = ($rel == 'next') ? ' <span class="meta-nav">→</span>' : '';
    
    	//Build link
    	$link = '<a href="' . get_permalink( $post ) . '" rel="'.$rel.'">' . $nav_prev . $title . $nav_next. '</a>';
    
    	return $link;
    
    }
    in reply to: Listing Detail Page Mixed Up #379620

    Patrick
    Lifetime Member
    Post count: 86

    They have different information in the database, on the backend, and on the frontend on any other page. Only the detail page sidebar has this issue. It is especially noticeable when you are logged in and hover over the link to edit, you’ll see they all reference the same ID.

    in reply to: Listing Detail Page Mixed Up #379341

    Patrick
    Lifetime Member
    Post count: 86
    This reply has been marked as private.
    in reply to: Listing Detail Page Mixed Up #379060

    Patrick
    Lifetime Member
    Post count: 86

    Each listing has its own detail information in the database. Confirmed.
    The detail information is showing correctly in List View in any widget on any page.
    The detail information is mixed up on the detail page sidebar… sometimes.

    Not sure how this is happening.

    The rest of the information is correct, ie. event descriptions, category, registration, etc.
    It is limited to the detail page sidebar.

    Any idea?

    in reply to: Listing Detail Page Mixed Up #379059

    Patrick
    Lifetime Member
    Post count: 86
    This reply has been marked as private.
    in reply to: Listing Detail Page Mixed Up #378896

    Patrick
    Lifetime Member
    Post count: 86

    Yeah, I have no idea. I tried a few things but most recently just tried deleting all the events and creating them again. Same results.
    These two events have the same detail sidebar information which points to/comes from the event mentioned below:
    https://liberty.menu/events/united-states/new-hampshire/lancaster/festival/porcfest-2017/
    https://liberty.menu/events/united-states/new-hampshire/lancaster/product-launch/liberty-menu-somaliafest/

    This is the third event that the other two points to:
    https://liberty.menu/events/united-states/new-hampshire/lancaster/festival/somaliafest-2017/

    Whereas this event, created by the same account in the same way at the same location, has its own correct detail sidebar.
    https://liberty.menu/events/united-states/new-hampshire/lancaster/product-launch/liberty-menu-porcfest/

    in reply to: Listing Detail Page Mixed Up #378683

    Patrick
    Lifetime Member
    Post count: 86

    I’m doing some testing on this.

    in reply to: Listing Detail Page Mixed Up #378456

    Patrick
    Lifetime Member
    Post count: 86
    This reply has been marked as private.
    in reply to: BadgeOS integration #355961

    Patrick
    Lifetime Member
    Post count: 86

    Two here, anyone else? Any takers?

    Eternity, have you looked outside this forum? I’ve contacted two developers and waiting to hear back – I’ve also thought about Freelancer – would you want to go in on this together?

    in reply to: Two settings not saving #355393

    Patrick
    Lifetime Member
    Post count: 86

    Thanks, I noted other setting weren’t saving and had to repair the options table.

    in reply to: I see "Custom Google Maps" released – but what it it? #26862

    Patrick
    Lifetime Member
    Post count: 86

    I’d like to see custom maps have an option to take just the js code in a quick code box. its far more efficient to use other tools to create your map and simply input the code (like the ‘old’ way but with a frontend section to input code.

    in reply to: Custom Google Maps #15625

    Patrick
    Lifetime Member
    Post count: 86

    This doesn’t work for me. I add the code as in example and I get an error:

    Parse error: syntax error, unexpected ‘}’ in /wp-content/themes/GDF_child/functions.php on line 4

    Line 4 has nothing to do with the error as that is a comment line and no code was added there. It didn’t like the } when the PHP opened back up.

    I ended up putting the script in another file and including it.

Viewing 15 posts - 1 through 15 (of 78 total)