modulbuero
Forum Replies Created
-
Forum: Plugins
In reply to: [Tabs Widget for Page Builder] HTML-Code in Tab-title?? And so was your merge. Cheers, man.
Same to you!Forum: Plugins
In reply to: [Tabs Widget for Page Builder] HTML-Code in Tab-titleDone! Thanks a lot for the kindness.
Forum: Plugins
In reply to: [Tabs Widget for Page Builder] HTML-Code in Tab-titleHey,
yeah, i did and it did work. Thanks for the invitation to do a pull request, i just went over to github and dit exactly that.
Keep up the good work!
ChristianForum: Plugins
In reply to: [Relevanssi - A Better Search] Relevanssi ignores posts2posts query_varsHey,
thanks for the quick reply. I went with relevanssi_hits_filter and it works like a charm. I’ll leave the code here in case anybody wants to use it:
function antwortzeit_relevanssi_hits_filter($hits, $zwei, $drei, $vier) { if(get_query_var('connected_items') && get_query_var('connected_type')) { foreach($hits[0] as $key => $hit) { if(p2p_type(get_query_var('connected_type'))->get_p2p_id( $hit->ID, get_query_var('connected_items') ) ) {} else { unset($hits[0][$key]); } } } $hits[0] = array_slice(array_filter($hits[0]), 0); return $hits; } add_filter('relevanssi_hits_filter', 'antwortzeit_relevanssi_hits_filter', 20);
Best,
Christian
Done.
Just checked this and it results in the exact same output without links.
Here’s a pastebin of the output: https://pastebin.com/wwbNpA0H
Yes, i have. The album is inserted via Shortcode:
[album id=1 template=extend]
@photocrati: Thanks for answering. No, neither album nor galleries use this option.
Forum: Plugins
In reply to: [FeedWordPress] PHP: WarningAs a hotfix we (i’m working with @deborre) implemented this:
#1005
if (is_null($sub)) :changed to
if (is_null($sub) && !is_null($which)) :
Still we’d love this error to be fixed in an update.
Best,
Christian
Forum: Plugins
In reply to: [WordPress MU Domain Mapping] Proposal: Two more filtersAnd just to add another one:
add_filter( ‘wp_nav_menu_items’, ‘domain_mapping_post_content’);
This one came in really handy for us.
Best,
Christian
Forum: Plugins
In reply to: [Attachments] Multiple instances, only one worksHey,
if you’re still running into the same problem or if somebody else bothers: You figured the problem out quite right. As soon as you have two filters registered, every metabox after the first will stop saving.
The problem is also quite simple: In function meta_box_init a nonce is set after the first metabox and not cleared for the next ones. So just add a new line 677 before:
// facilitate more fine-grained meta box positioning than post type $applicable = apply_filters( "attachments_location_{$instance}", true, $instance );
and write:
$nonce_sent = false;
It did work for me. Maybe the author will consider this as a bugfix.
Best,
Christian
Forum: Plugins
In reply to: [WordPress MU Domain Mapping] wp_head not firing on mapped domainNever mind, doesn’t come from your plugin – seems like a general problem of my code.
Forum: Plugins
In reply to: [WordPress MU Domain Mapping] wp_head not firing on mapped domainApparently, it does work while i’m logged in – only logged out users don’t get the styles…
Any chance we can move forward on this topic? Do you need any further information from me? Thanks, appreciate your help!
All the fields do save and i’m running WordPress 3.4.1. Thanks for your reply.
Christian