MoBlaise
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Custom Fields: Extended] Disabling simultaneous editingThank you so much for pointing me in the right directon!
Forum: Plugins
In reply to: [Advanced Custom Fields: Extended] Repeater field problemNevermind, fixed it… the culprit was a custom function I had.
Forum: Plugins
In reply to: [Advanced Custom Fields: Extended] Bidirectional field not updatedYou’re a life saver!
It works perfectly!Forum: Plugins
In reply to: [Pageviews] Weekly Top 10Is there a way to manualy call this function and not use it like a widget? A shortcode or function I can add to my theme?
Forum: Fixing WordPress
In reply to: disabling some plugin on mobile sitenope. I get: Call to undefined function detect_mobile()
??
Forum: Plugins
In reply to: [Posts 2 Posts] [Plugin: Posts 2 Posts] posts 2 usersI’m not sure I understand… so this won’t work at the moment? If it will, could you let me know how the rest of the code should look like, how to finish the loop, I’m a bit lost here…
Forum: Plugins
In reply to: [Posts 2 Posts] [Plugin: Posts 2 Posts] posts 2 usersI have 2 different post types, say posts A and posts B.
They are connected.
But posts B are also connected to users.
Now, for each post A I want to list all connected posts B, and users connected to each of those B posts.
Forum: Plugins
In reply to: [Posts 2 Posts] [Plugin: Posts 2 Posts] bug in 1.1.3?I’ll try turning other plugins off later on when ther’s less traffic on the site, but everything was working super-fine untill the last update?
Forum: Plugins
In reply to: [Posts 2 Posts] [Plugin: Posts 2 Posts] bug in 1.1.3?I see the boxes as well, it’s just that they are empty even for the posts that have been conncted and that display connections on the front end
Forum: Plugins
In reply to: [Posts 2 Posts] [Plugin: Posts 2 Posts] bug in 1.1.3?I see the boxes as well, it’s just that they are empty even for the posts that have been conncted and that display connections on the front end
Forum: Plugins
In reply to: [Posts 2 Posts] [Plugin: Posts 2 Posts] bug in 1.1.3?bool(true) bool(true)
Forum: Plugins
In reply to: [Posts 2 Posts] [Plugin: Posts 2 Posts] bug in 1.1.3?<?php
function my_connection_types() {
// Make sure the Posts 2 Posts plugin is active.
if ( !function_exists( ‘p2p_register_connection_type’ ) )
return;// Keep a reference to the connection type; we’ll need it later
global $my_connection_type;$my_connection_type = p2p_register_connection_type( array(
‘from’ => ‘post’,
‘to’ => ‘osobe’,
‘fields’ => array(
‘uloga’ => ‘uloga:’,
‘lik’ => ‘lik:’
),
‘reciprocal’ => true,
‘prevent_duplicates’ => false,));
$my_connection_type = p2p_register_connection_type( array(
‘from’ => ‘osobe’,
‘to’ => ‘filmovi’,
‘fields’ => array(
‘uloga’ => ‘uloga:’,
‘lik’ => ‘lik:’
),
‘reciprocal’ => true,
‘prevent_duplicates’ => false,
));}
add_action( ‘init’, ‘my_connection_types’, 100 );?>Forum: Plugins
In reply to: [Posts 2 Posts] [Plugin: Posts 2 Posts] bug in 1.1.3?I did intall the Debug Bar, but with no results i.e no info on p2p appears…
Forum: Plugins
In reply to: [Posts 2 Posts] [Plugin: Posts 2 Posts] bug in 1.1.3?I’ve updated from 1.1.2
Where will I see the notices?