operapreneur
Forum Replies Created
-
Forum: Plugins
In reply to: [Log Viewer] Too Early User CheckingHi,
I’m seeing this issue as well and would appreciate an update.
Thanks for your work!
Forum: Plugins
In reply to: [Redirection] DeprecationAgreed. I’m seeing some of these deprecated calls in my logs.
@johngodley Thank you for your plugin and contributions.
Forum: Fixing WordPress
In reply to: Publish/save draft/update button grayed out@esmi: I understand the guidelines now but I have to agree with @_alexsmith1, it seems like a related topic. I could learn or help in finding a solution.
@_alexsmith1: it’s a client’s site and they are using a paid theme called GeoTheme. It seems that the problem started when we upgraded to WP 3.9. However, it only happens now and then.
@esmi: To abide by the guidelines I will start another thread if I need further assistance. Thanks.
Forum: Fixing WordPress
In reply to: Publish/save draft/update button grayed outI’ve been having a similar problem but the URL is still visible. Keeping the window open for any length of time does not resolve the issue.
Using WordPress 3.9
Forum: Plugins
In reply to: [BulkPress] Importing Hierarchical TaxonomyOnce you’ve installed the plugin navigate to BulkPress > Terms. There you can chose your taxonomy and add subcategory terms. The plugin author has created very detailed instructions on how to add the terms.
If you are looking to add a custom taxonomy called “Accounting” you’ll need to use one of the many plugins that will create a custom taxonomy. You can also read more about Custom Taxonomies here.
This is probably the code you are looking for with a repeater field. It’s tested and works on my site:
<?php // Loop through a Repeater field if( get_field('role_network_gallery_repeater') ): ?> <h2>Photos</h2> <?php while( has_sub_field('role_network_gallery_repeater') ): ?> <?php foreach ( get_sub_field ( 'role_network_gallery' ) as $nextgen_gallery_id ) : if ( $nextgen_gallery_id['ngg_form'] == 'album' ) { echo nggShowAlbum( $nextgen_gallery_id['ngg_id'] ); //NextGEN Gallery album } elseif ( $nextgen_gallery_id['ngg_form'] == 'gallery' ) { echo nggShowGallery( $nextgen_gallery_id['ngg_id'] ); //NextGEN Gallery gallery } endforeach; ?> <?php endwhile; ?> <?php endif; wp_reset_postdata() //Reset ?>Cheers
Forum: Plugins
In reply to: [BuddyPress Follow] Add Follow Button on a postYou rock, @r-a-y!
Works perfectly. I got it to work outside the loop as well with the following:
$temp_post = get_post($post_id); $user_id = $temp_post->post_author; $author_bp = get_the_author_meta('ID' , $user_id );Then I replaced both get_the_author_meta( ‘ID’ ) in your code with $author_bp.
Thanks a million! Great plugin!
Forum: Plugins
In reply to: [Redirection] Warning: Missing argument 2 for wpdb::prepare()+1
Forum: Fixing WordPress
In reply to: Return one Custom Taxonomy for WP_QueryWorks brilliantly! Thanks!
The only part that was missing was a ‘$’ in the tax_query array.
Forum: Fixing WordPress
In reply to: Return one Custom Taxonomy for WP_QueryUnfortunately, that doesn’t work either vtxyzzy. It’s still not returning the tax slug. I have no idea what we are missing.
Any other ideas?
Thanks for your tips! I’ve had to change my plans to integrate NGG because of these quirks. Seems that NGG is not as friendly as I first thought it was.